summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2008-08-17 08:06:22 +0000
committerAlexis Ballier <aballier@gentoo.org>2008-08-17 08:06:22 +0000
commitf5636bc86d4d2a3289b282e1f749ffb3cea0b738 (patch)
tree5be1a22eb944082e9f27fd62a54691bf236c2a3d /media-sound/fluidsynth
parentautotools qa fixes (diff)
downloadgentoo-2-f5636bc86d4d2a3289b282e1f749ffb3cea0b738.tar.gz
gentoo-2-f5636bc86d4d2a3289b282e1f749ffb3cea0b738.tar.bz2
gentoo-2-f5636bc86d4d2a3289b282e1f749ffb3cea0b738.zip
remove old
(Portage version: 2.2_rc8/cvs/Linux 2.6.26.2 x86_64)
Diffstat (limited to 'media-sound/fluidsynth')
-rw-r--r--media-sound/fluidsynth/ChangeLog6
-rw-r--r--media-sound/fluidsynth/fluidsynth-1.0.7a.ebuild68
2 files changed, 5 insertions, 69 deletions
diff --git a/media-sound/fluidsynth/ChangeLog b/media-sound/fluidsynth/ChangeLog
index 094a664560af..a210f2334dbe 100644
--- a/media-sound/fluidsynth/ChangeLog
+++ b/media-sound/fluidsynth/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for media-sound/fluidsynth
# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v 1.41 2008/08/16 12:56:39 bluebird Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v 1.42 2008/08/17 08:06:22 aballier Exp $
+
+ 17 Aug 2008; Alexis Ballier <aballier@gentoo.org>
+ -fluidsynth-1.0.7a.ebuild:
+ remove old
16 Aug 2008; Friedrich Oslage <bluebird@gentoo.org>
fluidsynth-1.0.8.ebuild:
diff --git a/media-sound/fluidsynth/fluidsynth-1.0.7a.ebuild b/media-sound/fluidsynth/fluidsynth-1.0.7a.ebuild
deleted file mode 100644
index ffe8f64739cd..000000000000
--- a/media-sound/fluidsynth/fluidsynth-1.0.7a.ebuild
+++ /dev/null
@@ -1,68 +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/fluidsynth/fluidsynth-1.0.7a.ebuild,v 1.7 2008/05/24 17:08:40 josejx Exp $
-
-inherit flag-o-matic eutils libtool
-
-IUSE="alsa debug jack ladspa lash oss"
-
-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 ) )"
-
-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
-
- if use alsa && ! built_with_use --missing true media-libs/alsa-lib midi; then
- eerror ""
- eerror "To be able to build Fluidsynth with ALSA support you need"
- eerror "to have built media-libs/alsa-lib with midi USE flag."
- die "Missing midi USE flag on media-libs/alsa-lib"
- 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) \
- ${myconf} || die "./configure failed"
-
- emake || die
-}
-
-src_install() {
- make DESTDIR="${D}" install || die
- dodoc AUTHORS NEWS README THANKS TODO
-}