summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@gentoo.org>2005-12-15 23:26:05 +0000
committerDiego Elio Pettenò <flameeyes@gentoo.org>2005-12-15 23:26:05 +0000
commitb980b64bb99bce4a170b2bea349128a4d6978aed (patch)
treed16863e0d16b6f7a5faa1ee4486b6069525409f2 /media-sound/ecasound
parentVersion bump. (diff)
downloadgentoo-2-b980b64bb99bce4a170b2bea349128a4d6978aed.tar.gz
gentoo-2-b980b64bb99bce4a170b2bea349128a4d6978aed.tar.bz2
gentoo-2-b980b64bb99bce4a170b2bea349128a4d6978aed.zip
Removed old version and fixed pic handling in latest version.
(Portage version: 2.0.53)
Diffstat (limited to 'media-sound/ecasound')
-rw-r--r--media-sound/ecasound/ChangeLog7
-rw-r--r--media-sound/ecasound/ecasound-2.3.2.ebuild88
-rw-r--r--media-sound/ecasound/ecasound-2.4.0.ebuild90
-rw-r--r--media-sound/ecasound/ecasound-2.4.1.ebuild94
-rw-r--r--media-sound/ecasound/ecasound-2.4.2.ebuild110
-rw-r--r--media-sound/ecasound/ecasound-2.4.3.ebuild7
-rw-r--r--media-sound/ecasound/files/digest-ecasound-2.3.21
-rw-r--r--media-sound/ecasound/files/digest-ecasound-2.4.01
-rw-r--r--media-sound/ecasound/files/digest-ecasound-2.4.11
-rw-r--r--media-sound/ecasound/files/digest-ecasound-2.4.21
10 files changed, 8 insertions, 392 deletions
diff --git a/media-sound/ecasound/ChangeLog b/media-sound/ecasound/ChangeLog
index c21aab81a293..0bf73ae5afbb 100644
--- a/media-sound/ecasound/ChangeLog
+++ b/media-sound/ecasound/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for media-sound/ecasound
# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/ecasound/ChangeLog,v 1.31 2005/12/09 22:28:13 chainsaw Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/ecasound/ChangeLog,v 1.32 2005/12/15 23:26:05 flameeyes Exp $
+
+ 15 Dec 2005; Diego Pettenò <flameeyes@gentoo.org> -ecasound-2.3.2.ebuild,
+ -ecasound-2.4.0.ebuild, -ecasound-2.4.1.ebuild, -ecasound-2.4.2.ebuild,
+ ecasound-2.4.3.ebuild:
+ Removed old version and fixed pic handling in latest version.
*ecasound-2.4.3 (09 Dec 2005)
diff --git a/media-sound/ecasound/ecasound-2.3.2.ebuild b/media-sound/ecasound/ecasound-2.3.2.ebuild
deleted file mode 100644
index d5d7f768becc..000000000000
--- a/media-sound/ecasound/ecasound-2.3.2.ebuild
+++ /dev/null
@@ -1,88 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/ecasound/ecasound-2.3.2.ebuild,v 1.8 2005/09/04 10:37:58 flameeyes Exp $
-
-IUSE="ncurses arts alsa python oss mikmod oggvorbis jack audiofile"
-
-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/libc
- jack? ( media-sound/jack-audio-connection-kit )
- media-libs/ladspa-sdk
- audiofile? ( media-libs/audiofile )
- alsa? ( media-libs/alsa-lib )
- oggvorbis? ( media-libs/libvorbis )
- arts? ( kde-base/arts )
- 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}
- sed -i 's:map.h:map:g' configure
-}
-
-src_compile () {
- local myconf
-
- use jack || myconf="$myconf --disable-jack"
- 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
-
- einfo "configuring with ${myconf}"
- econf ${myconf} || die "configure failed"
- make || die "build failed"
-}
-
-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 FAQ BUGS NEWS README TODO
- dohtml `find Documentation -name "*.html"`
- dodoc Documentation/edi-list.txt
-}
diff --git a/media-sound/ecasound/ecasound-2.4.0.ebuild b/media-sound/ecasound/ecasound-2.4.0.ebuild
deleted file mode 100644
index e8054b2bbff1..000000000000
--- a/media-sound/ecasound/ecasound-2.4.0.ebuild
+++ /dev/null
@@ -1,90 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/ecasound/ecasound-2.4.0.ebuild,v 1.2 2005/09/04 10:37:58 flameeyes Exp $
-
-IUSE="ncurses arts alsa python oss mikmod oggvorbis jack audiofile"
-
-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 ~sparc ~ppc ~amd64"
-
-DEPEND="jack? ( media-sound/jack-audio-connection-kit )
- media-libs/ladspa-sdk
- audiofile? ( media-libs/audiofile )
- alsa? ( media-libs/alsa-lib )
- oggvorbis? ( media-libs/libvorbis )
- arts? ( kde-base/arts )
- 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}
-
- sed -i 's:map.h:map:g' configure
-}
-
-src_compile () {
- local myconf
-
- use jack || myconf="$myconf --disable-jack"
- 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"
-
- use amd64 && myconf="${myconf} --with-pic"
-
- 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
-
- einfo "configuring with ${myconf}"
- econf ${myconf} || die "configure failed"
- make || die "build failed"
-}
-
-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 FAQ BUGS NEWS README TODO
- dohtml `find Documentation -name "*.html"`
- dodoc Documentation/edi-list.txt
-}
diff --git a/media-sound/ecasound/ecasound-2.4.1.ebuild b/media-sound/ecasound/ecasound-2.4.1.ebuild
deleted file mode 100644
index 06283b945abb..000000000000
--- a/media-sound/ecasound/ecasound-2.4.1.ebuild
+++ /dev/null
@@ -1,94 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/ecasound/ecasound-2.4.1.ebuild,v 1.3 2005/09/04 10:37:58 flameeyes Exp $
-
-IUSE="ncurses arts alsa python oss mikmod oggvorbis jack audiofile"
-
-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 ~sparc ~ppc ~amd64 ~ppc-macos"
-
-DEPEND="jack? ( media-sound/jack-audio-connection-kit )
- media-libs/ladspa-sdk
- audiofile? ( media-libs/audiofile )
- alsa? ( media-libs/alsa-lib )
- oggvorbis? ( media-libs/libvorbis )
- arts? ( kde-base/arts )
- 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}
-
- sed -i 's:map.h:map:g' configure
-}
-
-src_compile () {
- local myconf
-
- use jack || myconf="$myconf --disable-jack"
- 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"
-
- use amd64 && myconf="${myconf} --with-pic"
-
- 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"
-
- myconf="$myconf --with-python-includes=$python_includes"
- myconf="$myconf --with-python-modules=$python_modules"
- else
- myconf="$myconf --disable-pyecasound"
- fi
-
- einfo "configuring with ${myconf}"
- econf ${myconf} || die "configure failed"
- make || die "build failed"
-}
-
-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 FAQ BUGS NEWS README TODO
- dohtml `find Documentation -name "*.html"`
- dodoc Documentation/edi-list.txt
-}
-
-pkg_postinst() {
- if use arts; then
- ewarn "WARNING: You have requested ecasound ARTS support,"
- ewarn "this is no longer supported and may go away in"
- ewarn "future releases."
- fi
-}
diff --git a/media-sound/ecasound/ecasound-2.4.2.ebuild b/media-sound/ecasound/ecasound-2.4.2.ebuild
deleted file mode 100644
index b76bcf95a713..000000000000
--- a/media-sound/ecasound/ecasound-2.4.2.ebuild
+++ /dev/null
@@ -1,110 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/ecasound/ecasound-2.4.2.ebuild,v 1.2 2005/09/04 10:37:58 flameeyes Exp $
-
-IUSE="alsa arts audiofile debug jack libsamplerate mikmod ncurses oggvorbis oss pic python ruby sndfile"
-
-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 ~sparc ~ppc ~amd64 ~ppc-macos"
-
-DEPEND="jack? ( media-sound/jack-audio-connection-kit )
- media-libs/ladspa-sdk
- audiofile? ( media-libs/audiofile )
- alsa? ( media-libs/alsa-lib )
- oggvorbis? ( media-libs/libvorbis )
- arts? ( kde-base/arts )
- libsamplerate? ( media-libs/libsamplerate )
- mikmod? ( media-libs/libmikmod )
- ruby? ( dev-lang/ruby )
- python? ( dev-lang/python )
- ncurses? ( sys-libs/ncurses )
- sndfile? ( media-libs/libsndfile )"
-
-# We don't make RDEPEND for vorbis-tools, mpg123/mpg321, timidity++ or lame -- no
-# use flags for them.
-
-src_unpack() {
- unpack ${A}
- cd ${S}
-
- sed -i 's:map.h:map:g' configure
-}
-
-src_compile () {
- local myconf
-
- myconf="${myconf} --enable-shared --with-largefile"
-
- use amd64 && myconf="${myconf} --with-pic"
-
- 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
- if use userland_Darwin ; then
- myconf="$myconf --enable-pyecasound=python"
- else
- myconf="$myconf --enable-pyecasound=c"
- fi
- 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"
-
- myconf="$myconf --with-python-includes=$python_includes"
- myconf="$myconf --with-python-modules=$python_modules"
- else
- myconf="$myconf --disable-pyecasound"
- fi
-
- econf \
- $(use_enable alsa) \
- $(use_enable arts) \
- $(use_enable audiofile) \
- $(use_enable debug) \
- $(use_enable jack) \
- $(use_enable libsamplerate) \
- $(use_enable ncurses) \
- $(use_enable oss) \
- $(use_enable ruby rubyecasound) \
- $(use_enable sndfile) \
- $(use_with pic) \
- ${myconf} \
- || die "configure failed"
- make || die "build failed"
-}
-
-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 FAQ BUGS NEWS README TODO
- dohtml `find Documentation -name "*.html"`
- dodoc Documentation/edi-list.txt
-}
-
-pkg_postinst() {
- if use arts; then
- ewarn "WARNING: You have requested ecasound ARTS support,"
- ewarn "this is no longer supported and will go away in"
- ewarn "future releases."
- fi
-}
-
diff --git a/media-sound/ecasound/ecasound-2.4.3.ebuild b/media-sound/ecasound/ecasound-2.4.3.ebuild
index 777f7b0bfc37..ccc7eaa7eb96 100644
--- a/media-sound/ecasound/ecasound-2.4.3.ebuild
+++ b/media-sound/ecasound/ecasound-2.4.3.ebuild
@@ -1,8 +1,8 @@
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/ecasound/ecasound-2.4.3.ebuild,v 1.1 2005/12/09 22:28:13 chainsaw Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/ecasound/ecasound-2.4.3.ebuild,v 1.2 2005/12/15 23:26:05 flameeyes Exp $
-IUSE="alsa arts audiofile debug jack libsamplerate mikmod ncurses oggvorbis oss pic python ruby sndfile"
+IUSE="alsa arts audiofile debug jack libsamplerate mikmod ncurses oggvorbis oss python ruby sndfile"
DESCRIPTION="A package for multitrack audio processing"
SRC_URI="http://ecasound.seul.org/download/${P}.tar.gz"
@@ -40,8 +40,6 @@ src_compile () {
myconf="${myconf} --enable-shared --with-largefile"
- use amd64 && myconf="${myconf} --with-pic"
-
if use python; then
#
# ecasound is braindead about finding python includes/libdirs and
@@ -77,7 +75,6 @@ src_compile () {
$(use_enable oss) \
$(use_enable ruby rubyecasound) \
$(use_enable sndfile) \
- $(use_with pic) \
${myconf} \
|| die "configure failed"
make || die "build failed"
diff --git a/media-sound/ecasound/files/digest-ecasound-2.3.2 b/media-sound/ecasound/files/digest-ecasound-2.3.2
deleted file mode 100644
index aeb898210a4b..000000000000
--- a/media-sound/ecasound/files/digest-ecasound-2.3.2
+++ /dev/null
@@ -1 +0,0 @@
-MD5 624ea41e87dc0cca73cf2057c053d4a7 ecasound-2.3.2.tar.gz 950589
diff --git a/media-sound/ecasound/files/digest-ecasound-2.4.0 b/media-sound/ecasound/files/digest-ecasound-2.4.0
deleted file mode 100644
index c3088f8824fc..000000000000
--- a/media-sound/ecasound/files/digest-ecasound-2.4.0
+++ /dev/null
@@ -1 +0,0 @@
-MD5 31693eb47ddb8b6f1ff8616c86265afe ecasound-2.4.0.tar.gz 981887
diff --git a/media-sound/ecasound/files/digest-ecasound-2.4.1 b/media-sound/ecasound/files/digest-ecasound-2.4.1
deleted file mode 100644
index 038cd056ae3c..000000000000
--- a/media-sound/ecasound/files/digest-ecasound-2.4.1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 48b75215252d21dddf5216cae27a5f4b ecasound-2.4.1.tar.gz 1103065
diff --git a/media-sound/ecasound/files/digest-ecasound-2.4.2 b/media-sound/ecasound/files/digest-ecasound-2.4.2
deleted file mode 100644
index 9395bc9b44b7..000000000000
--- a/media-sound/ecasound/files/digest-ecasound-2.4.2
+++ /dev/null
@@ -1 +0,0 @@
-MD5 77c10152f5a15da13f7876f0da30d592 ecasound-2.4.2.tar.gz 1109020