summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn J. Ellis <jje@gentoo.org>2003-05-18 09:22:17 +0000
committerJohn J. Ellis <jje@gentoo.org>2003-05-18 09:22:17 +0000
commita378589bd5da351312f8f8cd6db00aacf6625384 (patch)
treebcfd7f25e5d5e262538886154729378609768acc /media-sound/ecasound
parentVersion bump, update and clean up (diff)
downloadhistorical-a378589bd5da351312f8f8cd6db00aacf6625384.tar.gz
historical-a378589bd5da351312f8f8cd6db00aacf6625384.tar.bz2
historical-a378589bd5da351312f8f8cd6db00aacf6625384.zip
Version bump, update and clean up
Diffstat (limited to 'media-sound/ecasound')
-rw-r--r--media-sound/ecasound/Manifest4
-rw-r--r--media-sound/ecasound/ecasound-2.0.4.ebuild95
-rw-r--r--media-sound/ecasound/ecasound-2.2.3.ebuild (renamed from media-sound/ecasound/ecasound-2.2.0.ebuild)6
-rw-r--r--media-sound/ecasound/files/digest-ecasound-2.0.41
-rw-r--r--media-sound/ecasound/files/digest-ecasound-2.2.01
-rw-r--r--media-sound/ecasound/files/digest-ecasound-2.2.31
6 files changed, 6 insertions, 102 deletions
diff --git a/media-sound/ecasound/Manifest b/media-sound/ecasound/Manifest
index 2cc0da0abbf4..8aa03f9f6206 100644
--- a/media-sound/ecasound/Manifest
+++ b/media-sound/ecasound/Manifest
@@ -1,3 +1,3 @@
-MD5 afeca00f9629f53e3274f17aff800ca3 ChangeLog 2164
-MD5 bdfe68a16abf81affbfcca3f31d9b89e ecasound-2.2.3.ebuild 2605
+MD5 0246b5095c8e71b11e27bd5de59b4d71 ChangeLog 2160
+MD5 c59e8e17ffa6d360cd042e6c44956e97 ecasound-2.2.3.ebuild 2707
MD5 3bb7f0619e719cccec8c69b4f84788c3 files/digest-ecasound-2.2.3 66
diff --git a/media-sound/ecasound/ecasound-2.0.4.ebuild b/media-sound/ecasound/ecasound-2.0.4.ebuild
deleted file mode 100644
index f300eda0a583..000000000000
--- a/media-sound/ecasound/ecasound-2.0.4.ebuild
+++ /dev/null
@@ -1,95 +0,0 @@
-# Copyright 1999-2003 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/ecasound/ecasound-2.0.4.ebuild,v 1.6 2003/03/25 22:18:29 seemant Exp $
-
-IUSE="ncurses arts alsa python oss mikmod audiofile oggvorbis"
-
-S=${WORKDIR}/${P}
-DESCRIPTION="A package for multitrack audio processing"
-SRC_URI="http://ecasound.seul.org/download/${P}.tar.gz"
-HOMEPAGE="http://eca.cx/"
-LICENSE="GPL-2"
-
-SLOT="1"
-KEYWORDS="x86"
-
-DEPEND="virtual/glibc
- media-libs/ladspa-sdk
- alsa? ( media-libs/alsa-lib )
- oggvorbis? ( media-libs/libvorbis )
- arts? ( kde-base/arts )
- audiofile? ( media-libs/audiofile )
- mikmod? ( media-libs/libmikmod )
- python? ( dev-lang/python )
- ncurses? ( sys-libs/ncurses )"
-
-# We don't make RDEPEND for vorbis-tools, mpg123/mpg321, timidity++ or lame -- no
-# use flags for them.
-
-src_unpack() {
-
- unpack ${A}
-
- cd ${S}
- cp configure 1
- sed -e 's:map.h:map:g' 1 > configure
-
-}
-
-src_compile () {
- local myconf
-
- use alsa || myconf="$myconf --disable-alsa"
- use arts || myconf="$myconf --disable-arts"
- use ncurses || myconf="$myconf --disable-ncurses"
- use audiofile || myconf="$myconf --disable-audiofile"
- use oss || myconf="$myconf --disable-oss"
-
- if use python; then
- #
- # ecasound is braindead about finding python includes/libdirs and
- # about where to install modules. Luckily, it allows us to specify
- # all this.
- #
- local python_version python_prefix python_includes python_modules
- python_version="`python -c 'import sys; print sys.version[:3]'`"
- python_prefix="`python -c 'import sys; print sys.prefix'`"
-
- python_includes="$python_prefix/include/python$python_version"
- python_modules="$python_prefix/lib/python$python_version"
-
- # ecasound configure assumes `disable' if you pass
- # --(enable|disable)-pyecasound. *sigh*
- #myconf="$myconf --enable-pyecasound"
-
- myconf="$myconf --with-python-includes=$python_includes"
- myconf="$myconf --with-python-modules=$python_modules"
- else
- myconf="$myconf --disable-pyecasound"
- fi
-
- echo "configuring with ${myconf}"
- ./configure --host=${CHOST} \
- --prefix=/usr \
- --mandir=/usr/share/man \
- ${myconf} || die
-
- make || die
-}
-
-src_install () {
- make DESTDIR=${D} install || die
-
- if use python; then
- cd pyecasound || die
- python -c "import compileall; compileall.compile_dir('.')" || die
- python -O -c "import compileall; compileall.compile_dir('.')" || die
- python_sitepkgsdir="`python -c "import sys; print (sys.prefix + '/lib/python' + sys.version[:3] + '/site-packages/')"`"
- install *.pyc *.pyo "${D}/${python_sitepkgsdir}"
- cd ..
- fi
-
- dodoc INSTALL FAQ BUGS COPYING NEWS README TODO
- dodoc `find Documentation -name "*.html"`
- dodoc Documentation/edi-list.txt
-}
diff --git a/media-sound/ecasound/ecasound-2.2.0.ebuild b/media-sound/ecasound/ecasound-2.2.3.ebuild
index 1f64501b8deb..f798526e9186 100644
--- a/media-sound/ecasound/ecasound-2.2.0.ebuild
+++ b/media-sound/ecasound/ecasound-2.2.3.ebuild
@@ -1,8 +1,8 @@
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/ecasound/ecasound-2.2.0.ebuild,v 1.3 2003/03/25 22:18:29 seemant Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/ecasound/ecasound-2.2.3.ebuild,v 1.1 2003/05/18 09:22:02 jje Exp $
-IUSE="ncurses arts alsa python oss mikmod audiofile oggvorbis"
+IUSE="ncurses arts alsa python oss mikmod oggvorbis"
S=${WORKDIR}/${P}
DESCRIPTION="A package for multitrack audio processing"
@@ -16,10 +16,10 @@ KEYWORDS="~x86"
DEPEND="virtual/glibc
virtual/jack
media-libs/ladspa-sdk
+ media-libs/audiofile
alsa? ( media-libs/alsa-lib )
oggvorbis? ( media-libs/libvorbis )
arts? ( kde-base/arts )
- audiofile? ( media-libs/audiofile )
mikmod? ( media-libs/libmikmod )
python? ( dev-lang/python )
ncurses? ( sys-libs/ncurses )"
diff --git a/media-sound/ecasound/files/digest-ecasound-2.0.4 b/media-sound/ecasound/files/digest-ecasound-2.0.4
deleted file mode 100644
index 60202aa8fd74..000000000000
--- a/media-sound/ecasound/files/digest-ecasound-2.0.4
+++ /dev/null
@@ -1 +0,0 @@
-MD5 73dfe024c541cea1a432510151fefbc8 ecasound-2.0.4.tar.gz 704638
diff --git a/media-sound/ecasound/files/digest-ecasound-2.2.0 b/media-sound/ecasound/files/digest-ecasound-2.2.0
deleted file mode 100644
index 0854ba968c7f..000000000000
--- a/media-sound/ecasound/files/digest-ecasound-2.2.0
+++ /dev/null
@@ -1 +0,0 @@
-MD5 93279ca49281b0457dd38f89f0a67089 ecasound-2.2.0.tar.gz 899887
diff --git a/media-sound/ecasound/files/digest-ecasound-2.2.3 b/media-sound/ecasound/files/digest-ecasound-2.2.3
new file mode 100644
index 000000000000..ce7d8e737381
--- /dev/null
+++ b/media-sound/ecasound/files/digest-ecasound-2.2.3
@@ -0,0 +1 @@
+MD5 40a3f0213c30b18e1b4e7879faa6b454 ecasound-2.2.3.tar.gz 920102