summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn J. Ellis <jje@gentoo.org>2003-03-02 07:05:28 +0000
committerJohn J. Ellis <jje@gentoo.org>2003-03-02 07:05:28 +0000
commitdaf305e9d0ffdce1fbb54cc393cd93834b4ff960 (patch)
tree61e3d9a2935506a2e4d8027ce68d95dd15154349 /media-sound/vorbisgain
parentlicense for dev-lang/inform (diff)
downloadhistorical-daf305e9d0ffdce1fbb54cc393cd93834b4ff960.tar.gz
historical-daf305e9d0ffdce1fbb54cc393cd93834b4ff960.tar.bz2
historical-daf305e9d0ffdce1fbb54cc393cd93834b4ff960.zip
Created new ebuild (~x86 masked) closes #10329
Diffstat (limited to 'media-sound/vorbisgain')
-rw-r--r--media-sound/vorbisgain/ChangeLog11
-rw-r--r--media-sound/vorbisgain/files/digest-vorbisgain-0.321
-rw-r--r--media-sound/vorbisgain/vorbisgain-0.32.ebuild38
3 files changed, 50 insertions, 0 deletions
diff --git a/media-sound/vorbisgain/ChangeLog b/media-sound/vorbisgain/ChangeLog
new file mode 100644
index 000000000000..1d549b650e46
--- /dev/null
+++ b/media-sound/vorbisgain/ChangeLog
@@ -0,0 +1,11 @@
+# ChangeLog for media-sound/vorbisgain
+# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-sound/vorbisgain/ChangeLog,v 1.1 2003/03/02 07:05:28 jje Exp $
+
+*vorbisgain-0.32 (02 Mar 2003)
+
+ 02 Mar 2003; jje <jje@gentoo.org> vorbisgain-0.32.ebuild:
+ Initial revision.
+
+ Submitted by Sebastian Droege.
+
diff --git a/media-sound/vorbisgain/files/digest-vorbisgain-0.32 b/media-sound/vorbisgain/files/digest-vorbisgain-0.32
new file mode 100644
index 000000000000..aa06d9d0b856
--- /dev/null
+++ b/media-sound/vorbisgain/files/digest-vorbisgain-0.32
@@ -0,0 +1 @@
+MD5 9bd34aff8540961ab2b2ef873caeabb1 vorbisgain-0.32.zip 140475
diff --git a/media-sound/vorbisgain/vorbisgain-0.32.ebuild b/media-sound/vorbisgain/vorbisgain-0.32.ebuild
new file mode 100644
index 000000000000..26d4e2fda4a6
--- /dev/null
+++ b/media-sound/vorbisgain/vorbisgain-0.32.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/media-sound/vorbisgain/vorbisgain-0.32.ebuild,v 1.1 2003/03/02 07:05:28 jje Exp $
+
+DESCRIPTION="vorbisgain calculates a percieved sound level of an Ogg Vorbis file using the ReplayGain algorithm and stores it in the file header"
+HOMEPAGE="http://sjeng.sourceforge.net/ftp/vorbis/"
+SRC_URI="http://sjeng.sourceforge.net/ftp/vorbis/${P}.zip"
+
+LICENSE="GPL-2"
+SLOT="0"
+
+KEYWORDS="~x86"
+
+DEPEND=">=media-libs/libvorbis-1.0_beta4
+ app-arch/unzip"
+
+S="${WORKDIR}/${P}"
+
+src_unpack() {
+ unpack ${P}.zip
+ cd ${S}
+
+ cp Makefile.am Makefile.am~
+ sed -e s\/"mandir = @MANDIR@"\/"mandir = @mandir@"/ Makefile.am~ > Makefile.am
+
+ cp Makefile.in Makefile.in~
+ sed -e s\/"mandir = @MANDIR@"\/"mandir = @mandir@"/ Makefile.in~ > Makefile.in
+}
+
+src_compile() {
+ econf || die
+ emake || die
+}
+
+src_install() {
+ make DESTDIR=${D} install || die
+}
+