diff options
author | 2015-08-02 23:19:33 +0000 | |
---|---|---|
committer | 2015-08-02 23:19:33 +0000 | |
commit | 5682f5432e06972c8a421fe2a178b7ee665be2f4 (patch) | |
tree | 4bd249830e55e68d349de8d58332370002bff55e | |
parent | Allow java-pkg_get-javac to be called alone. Fixes bug #172594. Thanks (diff) | |
download | gentoo-2-5682f5432e06972c8a421fe2a178b7ee665be2f4.tar.gz gentoo-2-5682f5432e06972c8a421fe2a178b7ee665be2f4.tar.bz2 gentoo-2-5682f5432e06972c8a421fe2a178b7ee665be2f4.zip |
Remove old.
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key )
-rw-r--r-- | media-sound/ecasound/ChangeLog | 7 | ||||
-rw-r--r-- | media-sound/ecasound/ecasound-2.8.1.ebuild | 99 |
2 files changed, 5 insertions, 101 deletions
diff --git a/media-sound/ecasound/ChangeLog b/media-sound/ecasound/ChangeLog index 45a3f60fde37..5672b7031d5d 100644 --- a/media-sound/ecasound/ChangeLog +++ b/media-sound/ecasound/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-sound/ecasound -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/ecasound/ChangeLog,v 1.68 2014/01/04 05:08:29 radhermit Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/ecasound/ChangeLog,v 1.69 2015/08/02 23:19:33 mrueg Exp $ + + 02 Aug 2015; Manuel Rüger <mrueg@gentoo.org> -ecasound-2.8.1.ebuild: + Remove old. *ecasound-2.9.1 (04 Jan 2014) diff --git a/media-sound/ecasound/ecasound-2.8.1.ebuild b/media-sound/ecasound/ecasound-2.8.1.ebuild deleted file mode 100644 index 33a8977130c0..000000000000 --- a/media-sound/ecasound/ecasound-2.8.1.ebuild +++ /dev/null @@ -1,99 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/ecasound/ecasound-2.8.1.ebuild,v 1.4 2012/06/14 05:55:53 radhermit Exp $ - -EAPI=3 -PYTHON_DEPEND="python? 2" - -inherit eutils python autotools - -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 ~x86" -IUSE="alsa audiofile debug doc jack libsamplerate mikmod ncurses oil osc oss -python ruby sndfile static-libs" - -RDEPEND="sys-libs/readline - alsa? ( media-libs/alsa-lib ) - audiofile? ( media-libs/audiofile ) - jack? ( media-sound/jack-audio-connection-kit ) - libsamplerate? ( media-libs/libsamplerate ) - media-libs/ladspa-sdk - mikmod? ( media-libs/libmikmod:0 ) - ncurses? ( sys-libs/ncurses ) - oil? ( dev-libs/liboil ) - osc? ( media-libs/liblo ) - ruby? ( dev-lang/ruby ) - sndfile? ( media-libs/libsndfile )" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -pkg_setup() { - use python && python_set_active_version 2 -} - -src_prepare() { - epatch "${FILESDIR}"/${P}-ldflags.patch - - if use python ; then - sed -i -e "s:\$(ecasoundc_libs):\0 $(python_get_library -l):" \ - pyecasound/Makefile.am || die "sed failed" - fi - - eautoreconf -} - -src_configure() { - local pyconf - - if use python ; then - pyconf="--enable-pyecasound=c - --with-python-includes=$(python_get_includedir) - --with-python-modules=$(python_get_libdir)" - else - pyconf="--disable-pyecasound" - fi - - econf \ - --disable-arts \ - --enable-shared \ - --enable-sys-readline \ - --with-largefile \ - $(use_enable alsa) \ - $(use_enable audiofile) \ - $(use_enable debug) \ - $(use_enable jack) \ - $(use_enable libsamplerate) \ - $(use_enable ncurses) \ - $(use_enable oil liboil) \ - $(use_enable osc liblo) \ - $(use_enable oss) \ - $(use_enable ruby rubyecasound) \ - $(use_enable sndfile) \ - $(use_enable static-libs static) \ - ${pyconf} -} - -src_install() { - emake DESTDIR="${D}" install || die - dodoc AUTHORS BUGS NEWS README TODO || die - - if use doc ; then - dohtml Documentation/*.html || die - dodoc Documentation/programmers_guide/ecasound_programmers_guide.txt || die - fi - - prune_libtool_files -} - -pkg_postinst() { - use python && python_mod_optimize ecacontrol.py eci.py pyeca.py -} - -pkg_postrm() { - use python && python_mod_cleanup ecacontrol.py eci.py pyeca.py -} |