diff options
author | David Seifert <soap@gentoo.org> | 2019-12-10 01:41:44 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2019-12-10 01:41:44 +0100 |
commit | 09ed1fedfe355475070415234d79ab2920cdff20 (patch) | |
tree | b04bc96417a45165d2ad96202445a2128c0e6f66 /media-sound/smixer | |
parent | media-sound/cdstatus: Port to EAPI 7 (diff) | |
download | gentoo-09ed1fedfe355475070415234d79ab2920cdff20.tar.gz gentoo-09ed1fedfe355475070415234d79ab2920cdff20.tar.bz2 gentoo-09ed1fedfe355475070415234d79ab2920cdff20.zip |
media-sound/smixer: Port to EAPI 7
Package-Manager: Portage-2.3.81, Repoman-2.3.20
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'media-sound/smixer')
-rw-r--r-- | media-sound/smixer/smixer-1.0.4.ebuild | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/media-sound/smixer/smixer-1.0.4.ebuild b/media-sound/smixer/smixer-1.0.4.ebuild index 4cff0e5b2d1b..0b5bc7d65560 100644 --- a/media-sound/smixer/smixer-1.0.4.ebuild +++ b/media-sound/smixer/smixer-1.0.4.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=4 +EAPI=7 inherit toolchain-funcs @@ -14,16 +14,17 @@ SLOT="0" KEYWORDS="amd64 hppa ppc x86" IUSE="" -S=${WORKDIR}/${PN} +S="${WORKDIR}/${PN}" src_compile() { emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LFLAGS="${LDFLAGS}" } -src_install () { - insinto /etc - doins smixer.conf +src_install() { dobin smixer + einstalldocs doman man/smixer.1 - dodoc README + + insinto /etc + doins smixer.conf } |