diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2009-08-01 06:30:09 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2009-08-01 06:30:09 +0000 |
commit | 9183b210d91a0f61053d39722e1fb3007283a69e (patch) | |
tree | f39d4019e7efa6197455c2238a90431df5e86393 /media-sound/fluidsynth | |
parent | Remove built_with_use check for media-libs/alsa-lib[midi]. (diff) | |
download | historical-9183b210d91a0f61053d39722e1fb3007283a69e.tar.gz historical-9183b210d91a0f61053d39722e1fb3007283a69e.tar.bz2 historical-9183b210d91a0f61053d39722e1fb3007283a69e.zip |
old
Package-Manager: portage-2.2_rc33/cvs/Linux x86_64
Diffstat (limited to 'media-sound/fluidsynth')
-rw-r--r-- | media-sound/fluidsynth/Manifest | 1 | ||||
-rw-r--r-- | media-sound/fluidsynth/fluidsynth-1.0.8-r1.ebuild | 63 |
2 files changed, 0 insertions, 64 deletions
diff --git a/media-sound/fluidsynth/Manifest b/media-sound/fluidsynth/Manifest index 407667dde234..374bfb644c3a 100644 --- a/media-sound/fluidsynth/Manifest +++ b/media-sound/fluidsynth/Manifest @@ -1,7 +1,6 @@ AUX fluidsynth-1.0.9-pkg.patch 326 RMD160 9a50c28f4e7b3703a2df68ed9b858ddd19f25804 SHA1 68894c96d9d6a4be084969eff39c8cf7e4cde289 SHA256 f6dd929e13f6408c3541b34e3479d86caa4c2a236cfaa3dd0a1df3b1c6dade79 DIST fluidsynth-1.0.8.tar.gz 1267922 RMD160 1f647625ed8937f480401836f3b6f7819fa46ab9 SHA1 1f5fd9964a7212f772905724497abd46ab1e2536 SHA256 45e7c9967d0fb0344f4da539ab343fb979384b36a429a8594c94cf466dff4320 DIST fluidsynth-1.0.9.tar.gz 927002 RMD160 077ecb13000ee58ebc0cfcde65323a7a1128f1e2 SHA1 fed8dcd8a816981e1e30ac8818a45949eb4f59c0 SHA256 171b6bb754fb6342cd00f9139f5873bc1b764d4a2cfe70409aae6cb1f01a6e60 -EBUILD fluidsynth-1.0.8-r1.ebuild 1723 RMD160 9686ca7418e51ee14be04be6f59005285b0e0af7 SHA1 0b33efcc52c5248187dc9935dce2c128163a364f SHA256 d196b1cfee30c1b9cd8aeb771fdf5c081e30db442a1753de5974031593f14ed2 EBUILD fluidsynth-1.0.8.ebuild 2012 RMD160 67d3ecd48fa4395972f46658cb651961bc569a7e SHA1 d93bd2a00d8521425ee98b2c1381da8a0cceec2f SHA256 e0fa49f51c9d8d80f89a575dcfb5504bc781a36026afb913b684f63501aa140d EBUILD fluidsynth-1.0.9.ebuild 2045 RMD160 3a3230d8c46201f464cefcadb0a26ffaec61ac17 SHA1 f24a6b3275ebcc3e77525b0bd25c78c1fc96aab8 SHA256 393918d5df6e9991a08b1d7e65f36a713067c849fc5da2ba9c5682e9cf8947c2 MISC ChangeLog 6570 RMD160 0e96156820794a6977d0d901b600c2420e33ac4e SHA1 1225ce22d8296e098052c0ef9f2a9fc638671d3f SHA256 af76e6268c0878ed7dcc0eff76b5e0619fdce622560470fb982ecf743c5ab40e diff --git a/media-sound/fluidsynth/fluidsynth-1.0.8-r1.ebuild b/media-sound/fluidsynth/fluidsynth-1.0.8-r1.ebuild deleted file mode 100644 index b2a0369212ed..000000000000 --- a/media-sound/fluidsynth/fluidsynth-1.0.8-r1.ebuild +++ /dev/null @@ -1,63 +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.8-r1.ebuild,v 1.3 2008/11/09 14:50:09 klausman Exp $ - -EAPI=2 - -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[midi] - 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_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 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 -} |