diff options
author | David Seifert <soap@gentoo.org> | 2017-12-31 13:13:33 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2017-12-31 13:44:13 +0100 |
commit | 03eabf46a8e6804a949baed265d144231e087416 (patch) | |
tree | 835960cec4d3f480f1293db50dbbac53e6a14165 /dev-libs | |
parent | dev-libs/xmlrpc-epi: Port to EAPI 6 (diff) | |
download | gentoo-03eabf46a8e6804a949baed265d144231e087416.tar.gz gentoo-03eabf46a8e6804a949baed265d144231e087416.tar.bz2 gentoo-03eabf46a8e6804a949baed265d144231e087416.zip |
dev-libs/mdsplib: Port to EAPI 6
Package-Manager: Portage-2.3.19, Repoman-2.3.6
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/mdsplib/mdsplib-0.11.ebuild | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/dev-libs/mdsplib/mdsplib-0.11.ebuild b/dev-libs/mdsplib/mdsplib-0.11.ebuild index 6247e54974ef..47af62190af3 100644 --- a/dev-libs/mdsplib/mdsplib-0.11.ebuild +++ b/dev-libs/mdsplib/mdsplib-0.11.ebuild @@ -1,8 +1,9 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=2 -inherit eutils toolchain-funcs +EAPI=6 + +inherit toolchain-funcs DESCRIPTION="METAR Decoder Software Package Library" HOMEPAGE="http://limulus.net/mdsplib/" @@ -13,20 +14,19 @@ SLOT="0" KEYWORDS="~amd64 ~ppc ~sparc ~x86" IUSE="" -src_prepare() { - epatch "${FILESDIR}"/${P}-gentoo.patch +PATCHES=( "${FILESDIR}"/${P}-gentoo.patch ) + +src_configure() { + tc-export AR CC RANLIB } src_compile() { - tc-export AR CC RANLIB - emake all || die "emake all failed" + emake all } src_install() { - insinto /usr/include - insopts -m0644 - doins metar.h || die "doins failed" - dolib.a libmetar.a || die "dolib.a failed" - dodoc README README.MDSP - dobin dmetar || die "dobin failed" + dobin dmetar + doheader metar.h + dolib.a libmetar.a + einstalldocs } |