summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Seifert <soap@gentoo.org>2019-10-17 11:00:10 +0200
committerDavid Seifert <soap@gentoo.org>2019-10-17 11:00:10 +0200
commit8b3faf702851a237f77817e8f1d45c4907b4e7bc (patch)
tree7d0d3954274865bc3adce655455c1fc1e455c2a3 /media-sound/multimux/multimux-0.2.5.2.ebuild
parentpackage.mask: Last rite media-sound/mserv (diff)
downloadgentoo-8b3faf702851a237f77817e8f1d45c4907b4e7bc.tar.gz
gentoo-8b3faf702851a237f77817e8f1d45c4907b4e7bc.tar.bz2
gentoo-8b3faf702851a237f77817e8f1d45c4907b4e7bc.zip
media-sound/multimux: Port to EAPI 7
Bug: https://bugs.gentoo.org/697274 Package-Manager: Portage-2.3.77, Repoman-2.3.17 Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'media-sound/multimux/multimux-0.2.5.2.ebuild')
-rw-r--r--media-sound/multimux/multimux-0.2.5.2.ebuild22
1 files changed, 8 insertions, 14 deletions
diff --git a/media-sound/multimux/multimux-0.2.5.2.ebuild b/media-sound/multimux/multimux-0.2.5.2.ebuild
index 8bc954c85281..da2b0b17ecfb 100644
--- a/media-sound/multimux/multimux-0.2.5.2.ebuild
+++ b/media-sound/multimux/multimux-0.2.5.2.ebuild
@@ -1,11 +1,9 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=0
+EAPI=7
-inherit eutils toolchain-funcs flag-o-matic
-
-IUSE=""
+inherit flag-o-matic toolchain-funcs
DESCRIPTION="combines up to 8 audio mono wave ch. into one big multi ch. wave file"
HOMEPAGE="http://panteltje.com/panteltje/dvd/"
@@ -15,18 +13,14 @@ LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc ~sparc x86"
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}/${PN}-0.2.4-makefiles.patch"
-}
+PATCHES=( "${FILESDIR}"/${PN}-0.2.4-makefiles.patch )
-src_compile() {
- append-flags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE
- emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" || die "emake failed"
+src_configure() {
+ append-lfs-flags
+ tc-export CC
}
src_install() {
dobin multimux
- dodoc CHANGES README
+ einstalldocs
}