diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2009-05-21 14:35:41 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2009-05-21 14:35:41 +0000 |
commit | 14b5665b12c5691e1b219c74318f4d7a7e2575b6 (patch) | |
tree | ca579abb87076a5b74fc63adafc337004bac9eef /media-sound | |
parent | Remove arts support wrt #270575. (diff) | |
download | gentoo-2-14b5665b12c5691e1b219c74318f4d7a7e2575b6.tar.gz gentoo-2-14b5665b12c5691e1b219c74318f4d7a7e2575b6.tar.bz2 gentoo-2-14b5665b12c5691e1b219c74318f4d7a7e2575b6.zip |
Remove arts support which was deprecated by ecasound upstream in next release too.
(Portage version: 2.1.6.13/cvs/Linux x86_64)
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/ecasound/ChangeLog | 7 | ||||
-rw-r--r-- | media-sound/ecasound/ecasound-2.5.2-r1.ebuild | 86 | ||||
-rw-r--r-- | media-sound/ecasound/ecasound-2.6.0.ebuild | 15 |
3 files changed, 11 insertions, 97 deletions
diff --git a/media-sound/ecasound/ChangeLog b/media-sound/ecasound/ChangeLog index 4c1beb7535bb..0f96fa022d63 100644 --- a/media-sound/ecasound/ChangeLog +++ b/media-sound/ecasound/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-sound/ecasound # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/ecasound/ChangeLog,v 1.53 2009/04/30 22:19:09 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/ecasound/ChangeLog,v 1.54 2009/05/21 14:35:41 ssuominen Exp $ + + 21 May 2009; Samuli Suominen <ssuominen@gentoo.org> + -ecasound-2.5.2-r1.ebuild, ecasound-2.6.0.ebuild: + Remove arts support which was deprecated by ecasound upstream in next + release too. 30 Apr 2009; Patrick Lauer <patrick@gentoo.org> -ecasound-2.4.3.ebuild, -ecasound-2.4.4.ebuild, -ecasound-2.4.5.ebuild, -ecasound-2.4.6.1.ebuild, diff --git a/media-sound/ecasound/ecasound-2.5.2-r1.ebuild b/media-sound/ecasound/ecasound-2.5.2-r1.ebuild deleted file mode 100644 index 7d2ddb4c7d29..000000000000 --- a/media-sound/ecasound/ecasound-2.5.2-r1.ebuild +++ /dev/null @@ -1,86 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/ecasound/ecasound-2.5.2-r1.ebuild,v 1.2 2008/09/29 09:05:39 flameeyes Exp $ - -EAPI=2 - -inherit eutils multilib python - -DESCRIPTION="a package for multitrack audio processing" -HOMEPAGE="http://ecasound.seul.org/ecasound" -SRC_URI="http://${PN}.seul.org/download/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="1" -KEYWORDS="~amd64 ~ppc ~sparc ~x86" -IUSE="alsa arts audiofile debug doc jack libsamplerate mikmod ncurses vorbis oss python ruby sndfile" - -DEPEND="python? ( dev-lang/python ) - jack? ( media-sound/jack-audio-connection-kit ) - media-libs/ladspa-sdk - audiofile? ( media-libs/audiofile ) - alsa? ( media-libs/alsa-lib[midi] ) - vorbis? ( 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 ) - sys-libs/readline" - -src_configure() { - local PYConf - - if use python; then - python_version - PYConf="--enable-pyecasound=c - --with-python-includes=/usr/include/python${PYVER} - --with-python-modules=/usr/$(get_libdir)/python${PYVER}" - else - PYConf="$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) \ - --enable-shared \ - --with-largefile \ - --enable-sys-readline \ - ${PYConf} || die "econf failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed." - dodoc BUGS NEWS README TODO Documentation/*.txt - use doc && dohtml Documentation/*.html -} - -pkg_postinst() { - if use python; then - ebegin "Byte-compiling ${CATEGORY}/${PF} python modules" - python_version - local PYMODULE - for PYMODULE in ecacontrol.py pyeca.py eci.py; do - python_mod_compile /usr/$(get_libdir)/python${PYVER}/site-packages/${PYMODULE} - done - eend $? - fi - 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 -} - -pkg_postrm() { - python_mod_cleanup -} diff --git a/media-sound/ecasound/ecasound-2.6.0.ebuild b/media-sound/ecasound/ecasound-2.6.0.ebuild index ad139d18e5ed..c05ca051cf24 100644 --- a/media-sound/ecasound/ecasound-2.6.0.ebuild +++ b/media-sound/ecasound/ecasound-2.6.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/ecasound/ecasound-2.6.0.ebuild,v 1.1 2009/04/30 22:14:12 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/ecasound/ecasound-2.6.0.ebuild,v 1.2 2009/05/21 14:35:41 ssuominen Exp $ EAPI=2 @@ -13,7 +13,7 @@ SRC_URI="http://${PN}.seul.org/download/${P}.tar.gz" LICENSE="GPL-2" SLOT="1" KEYWORDS="~amd64 ~ppc ~sparc ~x86" -IUSE="alsa arts audiofile debug doc jack libsamplerate mikmod ncurses vorbis oss python ruby sndfile" +IUSE="alsa audiofile debug doc jack libsamplerate mikmod ncurses vorbis oss python ruby sndfile" DEPEND="python? ( dev-lang/python ) jack? ( media-sound/jack-audio-connection-kit ) @@ -21,7 +21,6 @@ DEPEND="python? ( dev-lang/python ) audiofile? ( media-libs/audiofile ) alsa? ( media-libs/alsa-lib[midi] ) vorbis? ( media-libs/libvorbis ) - arts? ( kde-base/arts ) libsamplerate? ( media-libs/libsamplerate ) mikmod? ( media-libs/libmikmod ) ruby? ( dev-lang/ruby ) @@ -42,8 +41,9 @@ src_configure() { PYConf="$myconf --disable-pyecasound" fi - econf $(use_enable alsa) \ - $(use_enable arts) \ + econf \ + $(use_enable alsa) \ + --disable-arts \ $(use_enable audiofile) \ $(use_enable debug) \ $(use_enable jack) \ @@ -74,11 +74,6 @@ pkg_postinst() { done eend $? fi - 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 } pkg_postrm() { |