diff options
author | Tim Harder <radhermit@gentoo.org> | 2012-08-16 16:56:42 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2012-08-16 16:56:42 +0000 |
commit | aa7e12f2740a442069ee97fd8154440664344c0e (patch) | |
tree | 1feac97323260f6b3a435186a8887157ec7ac25b /media-sound/fluidsynth | |
parent | Stable for amd64, wrt bug #422025 (diff) | |
download | gentoo-2-aa7e12f2740a442069ee97fd8154440664344c0e.tar.gz gentoo-2-aa7e12f2740a442069ee97fd8154440664344c0e.tar.bz2 gentoo-2-aa7e12f2740a442069ee97fd8154440664344c0e.zip |
Remove old.
(Portage version: 2.2.0_alpha120/cvs/Linux x86_64)
Diffstat (limited to 'media-sound/fluidsynth')
-rw-r--r-- | media-sound/fluidsynth/ChangeLog | 7 | ||||
-rw-r--r-- | media-sound/fluidsynth/files/fluidsynth-1.0.9-pkg.patch | 12 | ||||
-rw-r--r-- | media-sound/fluidsynth/fluidsynth-1.0.9.ebuild | 73 | ||||
-rw-r--r-- | media-sound/fluidsynth/fluidsynth-1.1.3.ebuild | 66 | ||||
-rw-r--r-- | media-sound/fluidsynth/fluidsynth-1.1.4.ebuild | 66 |
5 files changed, 6 insertions, 218 deletions
diff --git a/media-sound/fluidsynth/ChangeLog b/media-sound/fluidsynth/ChangeLog index 7d11b6ed6cbf..88800308e2b7 100644 --- a/media-sound/fluidsynth/ChangeLog +++ b/media-sound/fluidsynth/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-sound/fluidsynth # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v 1.70 2012/08/16 16:50:38 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v 1.71 2012/08/16 16:56:42 radhermit Exp $ + + 16 Aug 2012; Tim Harder <radhermit@gentoo.org> -fluidsynth-1.0.9.ebuild, + -files/fluidsynth-1.0.9-pkg.patch, -fluidsynth-1.1.3.ebuild, + -fluidsynth-1.1.4.ebuild: + Remove old. *fluidsynth-1.1.6 (16 Aug 2012) diff --git a/media-sound/fluidsynth/files/fluidsynth-1.0.9-pkg.patch b/media-sound/fluidsynth/files/fluidsynth-1.0.9-pkg.patch deleted file mode 100644 index b937d334574f..000000000000 --- a/media-sound/fluidsynth/files/fluidsynth-1.0.9-pkg.patch +++ /dev/null @@ -1,12 +0,0 @@ -Index: fluidsynth-1.0.9/configure.ac -=================================================================== ---- fluidsynth-1.0.9.orig/configure.ac -+++ fluidsynth-1.0.9/configure.ac -@@ -150,6 +150,7 @@ dnl - dnl Check support for all the drivers - dnl - -+PKG_PROG_PKG_CONFIG - - dnl - Sound file support check - dnl AUFILE_SUPPORT=0 diff --git a/media-sound/fluidsynth/fluidsynth-1.0.9.ebuild b/media-sound/fluidsynth/fluidsynth-1.0.9.ebuild deleted file mode 100644 index 260ad026675d..000000000000 --- a/media-sound/fluidsynth/fluidsynth-1.0.9.ebuild +++ /dev/null @@ -1,73 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/fluidsynth-1.0.9.ebuild,v 1.10 2010/10/13 06:18:29 radhermit Exp $ - -EAPI=2 -inherit flag-o-matic eutils libtool autotools - -IUSE="alsa debug jack ladspa lash oss portaudio pulseaudio 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="LGPL-2" -SLOT="0" -KEYWORDS="alpha amd64 ppc ppc64 sparc x86 ~x86-fbsd" - -RDEPEND="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 ) ) - pulseaudio? ( >=media-sound/pulseaudio-0.9.8 ) - portaudio? ( >=media-libs/portaudio-19_pre ) - readline? ( sys-libs/readline )" -DEPEND="${RDEPEND}" - -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_prepare() { - epatch "${FILESDIR}/${P}-pkg.patch" - rm -f m4/lt*.m4 m4/libtool.m4 - eautoreconf -} - -src_configure() { - 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 pulseaudio pulse-support) \ - $(use_enable portaudio portaudio-support) \ - $(use_enable lash) \ - $(use_enable debug) \ - $(use_with readline) \ - ${myconf} || die "./configure failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "make install failed" - dodoc AUTHORS NEWS README THANKS TODO -} diff --git a/media-sound/fluidsynth/fluidsynth-1.1.3.ebuild b/media-sound/fluidsynth/fluidsynth-1.1.3.ebuild deleted file mode 100644 index 28d452749878..000000000000 --- a/media-sound/fluidsynth/fluidsynth-1.1.3.ebuild +++ /dev/null @@ -1,66 +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/fluidsynth/fluidsynth-1.1.3.ebuild,v 1.2 2012/05/05 08:20:42 mgorny Exp $ - -EAPI=2 -inherit cmake-utils - -DESCRIPTION="Fluidsynth is a software real-time synthesizer based on the Soundfont 2 specifications." -HOMEPAGE="http://www.fluidsynth.org/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - -LICENSE="LGPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" -IUSE="alsa dbus debug examples jack ladspa lash portaudio pulseaudio readline sndfile" - -RDEPEND=">=dev-libs/glib-2.6.5:2 - alsa? ( media-libs/alsa-lib - lash? ( >=media-sound/lash-0.5 ) ) - dbus? ( >=sys-apps/dbus-1.0.0 ) - jack? ( media-sound/jack-audio-connection-kit ) - ladspa? ( >=media-libs/ladspa-sdk-1.12 - >=media-libs/ladspa-cmt-1.15 ) - pulseaudio? ( >=media-sound/pulseaudio-0.9.8 ) - portaudio? ( >=media-libs/portaudio-19_pre ) - readline? ( sys-libs/readline ) - sndfile? ( >=media-libs/libsndfile-1.0.18 )" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -src_configure() { - mycmakeargs=( - $(cmake-utils_use alsa enable-alsa) - $(cmake-utils_use dbus enable-dbus) - $(cmake-utils_use debug enable-debug) - $(cmake-utils_use jack enable-jack) - -Denable-ladcca=OFF - $(cmake-utils_use ladspa enable-ladspa) - $(cmake-utils_use sndfile enable-libsndfile) - $(cmake-utils_use portaudio enable-portaudio) - $(cmake-utils_use pulseaudio enable-pulseaudio) - $(cmake-utils_use readline enable-readline) - ) - - if use alsa; then - mycmakeargs+=( $(cmake-utils_use lash enable-lash) ) - else - mycmakeargs+=( -Denable-lash=OFF ) - fi - - cmake-utils_src_configure -} - -src_install() { - cmake-utils_src_install - - dodoc AUTHORS NEWS README THANKS TODO doc/*.txt - - insinto /usr/share/doc/${PF}/pdf - doins doc/*.pdf - - if use examples; then - insinto /usr/share/doc/${PF}/examples - doins doc/*.c - fi -} diff --git a/media-sound/fluidsynth/fluidsynth-1.1.4.ebuild b/media-sound/fluidsynth/fluidsynth-1.1.4.ebuild deleted file mode 100644 index ddd1b9043c1a..000000000000 --- a/media-sound/fluidsynth/fluidsynth-1.1.4.ebuild +++ /dev/null @@ -1,66 +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/fluidsynth/fluidsynth-1.1.4.ebuild,v 1.2 2012/05/05 08:20:42 mgorny Exp $ - -EAPI=2 -inherit cmake-utils - -DESCRIPTION="Fluidsynth is a software real-time synthesizer based on the Soundfont 2 specifications." -HOMEPAGE="http://www.fluidsynth.org/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - -LICENSE="LGPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" -IUSE="alsa dbus debug examples jack ladspa lash portaudio pulseaudio readline sndfile" - -RDEPEND=">=dev-libs/glib-2.6.5:2 - alsa? ( media-libs/alsa-lib - lash? ( >=media-sound/lash-0.5 ) ) - dbus? ( >=sys-apps/dbus-1.0.0 ) - jack? ( media-sound/jack-audio-connection-kit ) - ladspa? ( >=media-libs/ladspa-sdk-1.12 - >=media-libs/ladspa-cmt-1.15 ) - pulseaudio? ( >=media-sound/pulseaudio-0.9.8 ) - portaudio? ( >=media-libs/portaudio-19_pre ) - readline? ( sys-libs/readline ) - sndfile? ( >=media-libs/libsndfile-1.0.18 )" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -src_configure() { - mycmakeargs=( - $(cmake-utils_use alsa enable-alsa) - $(cmake-utils_use dbus enable-dbus) - $(cmake-utils_use debug enable-debug) - $(cmake-utils_use jack enable-jack) - -Denable-ladcca=OFF - $(cmake-utils_use ladspa enable-ladspa) - $(cmake-utils_use sndfile enable-libsndfile) - $(cmake-utils_use portaudio enable-portaudio) - $(cmake-utils_use pulseaudio enable-pulseaudio) - $(cmake-utils_use readline enable-readline) - ) - - if use alsa; then - mycmakeargs+=( $(cmake-utils_use lash enable-lash) ) - else - mycmakeargs+=( -Denable-lash=OFF ) - fi - - cmake-utils_src_configure -} - -src_install() { - cmake-utils_src_install - - dodoc AUTHORS NEWS README THANKS TODO doc/*.txt - - insinto /usr/share/doc/${PF}/pdf - doins doc/*.pdf - - if use examples; then - insinto /usr/share/doc/${PF}/examples - doins doc/*.c - fi -} |