X-Git-Url: https://git.sthu.org/?p=shuber-gentoo-overlay.git;a=blobdiff_plain;f=app-misc%2Fmetar%2Fmetar-20061030.1.ebuild;fp=app-misc%2Fmetar%2Fmetar-20061030.1.ebuild;h=49d5455352b09e77b56599b2e13f0ac69bbb98d5;hp=0000000000000000000000000000000000000000;hb=b349ba197ba2fdd00121a4ccc0aef8a743ac6c63;hpb=ec84b7b1078b74d7ef3515cc1c1e1ec9ef0cc1df diff --git a/app-misc/metar/metar-20061030.1.ebuild b/app-misc/metar/metar-20061030.1.ebuild new file mode 100644 index 0000000..49d5455 --- /dev/null +++ b/app-misc/metar/metar-20061030.1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=4 + +DESCRIPTION="A console program to download and decode METAR weather data" +HOMEPAGE="http://www.leune.org/metar/" +SRC_URI="http://www.leune.org/files/${PN}/${PV}/${P}.tar.gz" + +LICENSE="GPL" +SLOT="0" +KEYWORDS="~x86 ~amd64" +IUSE="" + +DEPEND="" +RDEPEND="${DEPEND}" + +src_configure() { + econf +} + +src_compile() { + emake || die "emake failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + dodoc AUTHORS ChangeLog NEWS README TODO + doman doc/metar.1 +} + +