diff options
Diffstat (limited to 'media-sound/multimux/multimux-0.2.5.2.ebuild')
-rw-r--r-- | media-sound/multimux/multimux-0.2.5.2.ebuild | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/media-sound/multimux/multimux-0.2.5.2.ebuild b/media-sound/multimux/multimux-0.2.5.2.ebuild new file mode 100644 index 000000000000..db3fabf6fa28 --- /dev/null +++ b/media-sound/multimux/multimux-0.2.5.2.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/multimux/multimux-0.2.5.2.ebuild,v 1.1 2007/10/05 18:40:18 sbriesen Exp $ + +inherit eutils toolchain-funcs flag-o-matic + +IUSE="" + +DESCRIPTION="combines up to 8 audio mono wave ch. into one big multi ch. wave file." +HOMEPAGE="http://panteltje.com/panteltje/dvd/" +SRC_URI="http://panteltje.com/panteltje/dvd/${P}.tgz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}/${PN}-0.2.4-makefiles.patch" +} + +src_compile() { + append-lfs-flags + emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" || die "emake failed" +} + +src_install() { + dobin multimux + dodoc CHANGES LICENSE README +} |