commit: 09ed1fedfe355475070415234d79ab2920cdff20
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 10 00:41:44 2019 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Tue Dec 10 00:41:44 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09ed1fed
media-sound/smixer: Port to EAPI 7
Package-Manager: Portage-2.3.81, Repoman-2.3.20
Signed-off-by: David Seifert <soap <AT> gentoo.org>
media-sound/smixer/smixer-1.0.4.ebuild | 15 ++++++++-------
1 file 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 4cff0e5b2d1..0b5bc7d6556 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
}