diff options
Diffstat (limited to 'media-sound/pwavecat/pwavecat-0.4.5.ebuild')
-rw-r--r-- | media-sound/pwavecat/pwavecat-0.4.5.ebuild | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/media-sound/pwavecat/pwavecat-0.4.5.ebuild b/media-sound/pwavecat/pwavecat-0.4.5.ebuild new file mode 100644 index 000000000000..f44544ac2872 --- /dev/null +++ b/media-sound/pwavecat/pwavecat-0.4.5.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/pwavecat/pwavecat-0.4.5.ebuild,v 1.1 2007/10/06 14:32:50 sbriesen Exp $ + +inherit eutils toolchain-funcs flag-o-matic + +IUSE="" + +DESCRIPTION="concatenates any number of audio files to stdout" +HOMEPAGE="http://panteltje.com/panteltje/dvd/" +SRC_URI="http://panteltje.com/panteltje/dvd/${P}.tgz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}/${P}.diff" +} + +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_install() { + dobin pwavecat + dodoc CHANGES README +} |