diff options
author | Alexis Ballier <aballier@gentoo.org> | 2009-09-02 07:19:04 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2009-09-02 07:19:04 +0000 |
commit | 62baab14122430ffaf89c863d147b17799603545 (patch) | |
tree | 7a175889a249ae6e91c09c67e04c3065f3f61cd4 /media-sound/fluidsynth | |
parent | version bump (diff) | |
download | gentoo-2-62baab14122430ffaf89c863d147b17799603545.tar.gz gentoo-2-62baab14122430ffaf89c863d147b17799603545.tar.bz2 gentoo-2-62baab14122430ffaf89c863d147b17799603545.zip |
remove old
(Portage version: 2.2_rc40/cvs/Linux x86_64)
Diffstat (limited to 'media-sound/fluidsynth')
-rw-r--r-- | media-sound/fluidsynth/ChangeLog | 6 | ||||
-rw-r--r-- | media-sound/fluidsynth/fluidsynth-1.0.8.ebuild | 63 |
2 files changed, 5 insertions, 64 deletions
diff --git a/media-sound/fluidsynth/ChangeLog b/media-sound/fluidsynth/ChangeLog index 5aaeb6dcf043..4b77d8991134 100644 --- a/media-sound/fluidsynth/ChangeLog +++ b/media-sound/fluidsynth/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-sound/fluidsynth # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v 1.53 2009/08/09 11:42:15 nixnut Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v 1.54 2009/09/02 07:19:04 aballier Exp $ + + 02 Sep 2009; Alexis Ballier <aballier@gentoo.org> + -fluidsynth-1.0.8.ebuild: + remove old 09 Aug 2009; nixnut <nixnut@gentoo.org> fluidsynth-1.0.9.ebuild: ppc stable #272758 diff --git a/media-sound/fluidsynth/fluidsynth-1.0.8.ebuild b/media-sound/fluidsynth/fluidsynth-1.0.8.ebuild deleted file mode 100644 index a6182baccc56..000000000000 --- a/media-sound/fluidsynth/fluidsynth-1.0.8.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/fluidsynth-1.0.8.ebuild,v 1.6 2009/08/01 06:27:08 ssuominen Exp $ - -inherit flag-o-matic eutils libtool - -IUSE="alsa debug jack ladspa lash oss readline" - -DESCRIPTION="Fluidsynth is a software real-time synthesizer based on the Soundfont 2 specifications." -HOMEPAGE="http://www.fluidsynth.org/" -SRC_URI="http://savannah.nongnu.org/download/fluid/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 ppc ppc64 sparc x86 ~x86-fbsd" - -DEPEND="jack? ( media-sound/jack-audio-connection-kit ) - ladspa? ( >=media-libs/ladspa-sdk-1.12 - >=media-libs/ladspa-cmt-1.15 ) - alsa? ( media-libs/alsa-lib - lash? ( >=media-sound/lash-0.5 ) ) - readline? ( sys-libs/readline )" - -S="${WORKDIR}/${P/7a/7}" - -# Alsa is required for lash support in this package. -pkg_setup() { - if use lash && ! use alsa; then - ewarn "ALSA support is required for lash support to be enabled." - ewarn "Continuing with lash support disabled." - fi -} - -src_compile() { - local myconf - - if use alsa; then - myconf="${myconf} $(use_enable lash)" - else - myconf="--disable-lash" - fi - - elibtoolize - # ladcca support is deprecated in place of lash - econf \ - --disable-ladcca \ - --disable-dependency-tracking \ - $(use_enable ladspa) \ - $(use_enable jack jack-support) \ - $(use_enable oss oss-support) \ - $(use_enable alsa alsa-support) \ - $(use_enable lash) \ - $(use_enable debug) \ - $(use_with readline) \ - ${myconf} || die "./configure failed" - - emake || die "make failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "make install failed" - dodoc AUTHORS NEWS README THANKS TODO -} |