diff options
author | John J. Ellis <jje@gentoo.org> | 2003-08-06 10:58:31 +0000 |
---|---|---|
committer | John J. Ellis <jje@gentoo.org> | 2003-08-06 10:58:31 +0000 |
commit | bae0a121714a2332594bd3522596c8af08ce4807 (patch) | |
tree | ec4a22758d6dfd2088a2a1d1ce13dfb39592598d /media-sound/audiocompress/audiocompress-1.5.ebuild | |
parent | Version bump. Closes #25200. (diff) | |
download | historical-bae0a121714a2332594bd3522596c8af08ce4807.tar.gz historical-bae0a121714a2332594bd3522596c8af08ce4807.tar.bz2 historical-bae0a121714a2332594bd3522596c8af08ce4807.zip |
Version bump. Closes #25200.
Diffstat (limited to 'media-sound/audiocompress/audiocompress-1.5.ebuild')
-rw-r--r-- | media-sound/audiocompress/audiocompress-1.5.ebuild | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/media-sound/audiocompress/audiocompress-1.5.ebuild b/media-sound/audiocompress/audiocompress-1.5.ebuild new file mode 100644 index 000000000000..b93ceb43719f --- /dev/null +++ b/media-sound/audiocompress/audiocompress-1.5.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/audiocompress/audiocompress-1.5.ebuild,v 1.1 2003/08/06 10:58:24 jje Exp $ + +MY_P="AudioCompress-${PV}" + +DESCRIPTION="AudioCompress is (essentially) a very gentle, 1-band dynamic range compressor intended to keep audio output at a consistent volume without introducing any audible artifacts." +SRC_URI="http://trikuare.cx/code/${MY_P}.tar.gz" +HOMEPAGE="http://trikuare.cx/code/AudioCompress.html" +IUSE="xmms" + +S=${WORKDIR}/${MY_P} + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86" + +DEPEND="xmms? ( media-sound/xmms )" + +src_compile() { + if [ -n "`use xmms`" ]; then + emake || die + else + emake AudioCompress + fi +} + +src_install() { + dodir /usr/bin + install -m 755 AudioCompress ${D}/usr/bin/ || die + if [ -n "`use xmms`" ]; then + installdir="${D}$(xmms-config --effect-plugin-dir)" + install -d ${installdir} || die + install -m 755 libcompress.so ${installdir} || die + fi + dodoc COPYING ChangeLog README TODO +} |