diff options
author | 2017-11-06 08:10:40 +0100 | |
---|---|---|
committer | 2017-11-06 08:10:40 +0100 | |
commit | 58bcfd144656b78ed114b1b986b39b05ba24fdce (patch) | |
tree | a2ba4f61427490df4048f55da60630774b4c0cc9 /media-libs/adplug | |
parent | sci-libs/dlib: version bump 19.7 (diff) | |
download | gentoo-58bcfd144656b78ed114b1b986b39b05ba24fdce.tar.gz gentoo-58bcfd144656b78ed114b1b986b39b05ba24fdce.tar.bz2 gentoo-58bcfd144656b78ed114b1b986b39b05ba24fdce.zip |
media-libs/adplug: Update to EAPI 6
Package-Manager: Portage-2.3.13, Repoman-2.3.4
Diffstat (limited to 'media-libs/adplug')
-rw-r--r-- | media-libs/adplug/adplug-2.2.1.ebuild | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/media-libs/adplug/adplug-2.2.1.ebuild b/media-libs/adplug/adplug-2.2.1.ebuild index dc62bad78564..ab8068472a1a 100644 --- a/media-libs/adplug/adplug-2.2.1.ebuild +++ b/media-libs/adplug/adplug-2.2.1.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=4 +EAPI=6 DESCRIPTION="A free, cross-platform, hardware independent AdLib sound player library" HOMEPAGE="http://adplug.sourceforge.net" @@ -16,8 +16,6 @@ RDEPEND=">=dev-cpp/libbinio-1.4" DEPEND="${RDEPEND} virtual/pkgconfig" -DOCS=( AUTHORS BUGS ChangeLog NEWS README TODO ) - src_configure() { econf \ $(use_enable static-libs static) \ @@ -26,5 +24,5 @@ src_configure() { src_install() { default - rm -f "${ED}"usr/lib*/lib${PN}.la + find "${D}" -name '*.la' -delete || die } |