diff options
author | Aaron Bauman <bman@gentoo.org> | 2018-05-27 19:49:05 -0400 |
---|---|---|
committer | Aaron Bauman <bman@gentoo.org> | 2018-05-28 19:01:54 -0400 |
commit | a69bbe4378bec810fd59f2bb271f00a08482ed90 (patch) | |
tree | 895889eecb06fa2cebe3180882f4a29aad4a4dd8 /media-libs/dssi | |
parent | media-gfx/rotoscope: bump EAPI (diff) | |
download | gentoo-a69bbe4378bec810fd59f2bb271f00a08482ed90.tar.gz gentoo-a69bbe4378bec810fd59f2bb271f00a08482ed90.tar.bz2 gentoo-a69bbe4378bec810fd59f2bb271f00a08482ed90.zip |
media-libs/dssi: bump EAPI
Package-Manager: Portage-2.3.40, Repoman-2.3.9
Diffstat (limited to 'media-libs/dssi')
-rw-r--r-- | media-libs/dssi/dssi-1.1.1-r1.ebuild | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/media-libs/dssi/dssi-1.1.1-r1.ebuild b/media-libs/dssi/dssi-1.1.1-r1.ebuild index bdb76d8a6085..f76e48b467fa 100644 --- a/media-libs/dssi/dssi-1.1.1-r1.ebuild +++ b/media-libs/dssi/dssi-1.1.1-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=2 +EAPI=6 inherit autotools DESCRIPTION="Plugin API for software instruments with user interfaces" @@ -24,6 +24,7 @@ DEPEND="${RDEPEND} virtual/pkgconfig" src_prepare() { + eapply_user sed -i \ -e 's:libdir=.*:libdir=@libdir@:' \ dssi.pc.in || die @@ -33,13 +34,8 @@ src_prepare() { eautoreconf } -src_configure() { - econf \ - --disable-dependency-tracking -} - src_install() { - emake DESTDIR="${D}" install || die - dodoc README doc/TODO doc/*.txt + DOCS=( README doc/TODO doc/*.txt ) + default find "${D}" -name '*.la' -delete } |