diff options
author | Jeremy Huddleston <eradicator@gentoo.org> | 2004-09-28 20:19:01 +0000 |
---|---|---|
committer | Jeremy Huddleston <eradicator@gentoo.org> | 2004-09-28 20:19:01 +0000 |
commit | 4b11826c3ddda93e7424714e51914d1da474d116 (patch) | |
tree | d2ad767c1dd515c4952006d1379615c3fe689f62 /media-sound/fluidsynth | |
parent | Version bump. Added ~sparc. (diff) | |
download | historical-4b11826c3ddda93e7424714e51914d1da474d116.tar.gz historical-4b11826c3ddda93e7424714e51914d1da474d116.tar.bz2 historical-4b11826c3ddda93e7424714e51914d1da474d116.zip |
static USE flag support. Now using DESTDIR.
Diffstat (limited to 'media-sound/fluidsynth')
-rw-r--r-- | media-sound/fluidsynth/ChangeLog | 4 | ||||
-rw-r--r-- | media-sound/fluidsynth/Manifest | 4 | ||||
-rw-r--r-- | media-sound/fluidsynth/fluidsynth-1.0.5.ebuild | 14 |
3 files changed, 11 insertions, 11 deletions
diff --git a/media-sound/fluidsynth/ChangeLog b/media-sound/fluidsynth/ChangeLog index e99b16f544bf..f8f701fc242a 100644 --- a/media-sound/fluidsynth/ChangeLog +++ b/media-sound/fluidsynth/ChangeLog @@ -1,12 +1,12 @@ # ChangeLog for media-sound/fluidsynth # Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v 1.16 2004/09/28 20:15:08 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v 1.17 2004/09/28 20:19:01 eradicator Exp $ *fluidsynth-1.0.5 (28 Sep 2004) 28 Sep 2004; Jeremy Huddleston <eradicator@gentoo.org> +fluidsynth-1.0.5.ebuild: - Version bump. Added ~sparc. + Version bump. Added ~sparc. static USE flag support. Now using DESTDIR. 03 Sep 2004; Jeremy Huddleston <eradicator@gentoo.org> fluidsynth-1.0.3.ebuild: diff --git a/media-sound/fluidsynth/Manifest b/media-sound/fluidsynth/Manifest index 2dbf6152d926..3f64843385ac 100644 --- a/media-sound/fluidsynth/Manifest +++ b/media-sound/fluidsynth/Manifest @@ -1,7 +1,7 @@ -MD5 5ebfb4c4061ff3acf30d568af4ba04e5 ChangeLog 2309 +MD5 4c233c5c8e6db963d4de1f4eda4c71d7 ChangeLog 2354 MD5 a56aff4f21cf525850ec7607709334ee fluidsynth-1.0.1.ebuild 1386 MD5 a1eaeb2ae801daeb712c90c060e922dc metadata.xml 158 -MD5 639501c12f0284d0b6cb2f8972baf627 fluidsynth-1.0.5.ebuild 1607 +MD5 589ad8a5288c107eaead971bbc4c7cd1 fluidsynth-1.0.5.ebuild 1630 MD5 08f73bf08781a82851c5951630dc0de4 fluidsynth-1.0.3.ebuild 1653 MD5 c1870b0eef4d2331c692f1206a55ac6d files/1.0.3-nonx86.patch 215 MD5 76597f227dd6266c408aab1d4f58da85 files/digest-fluidsynth-1.0.1 68 diff --git a/media-sound/fluidsynth/fluidsynth-1.0.5.ebuild b/media-sound/fluidsynth/fluidsynth-1.0.5.ebuild index 95bb79193861..6f739b2eabe7 100644 --- a/media-sound/fluidsynth/fluidsynth-1.0.5.ebuild +++ b/media-sound/fluidsynth/fluidsynth-1.0.5.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/fluidsynth-1.0.5.ebuild,v 1.1 2004/09/28 20:15:08 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/fluidsynth-1.0.5.ebuild,v 1.2 2004/09/28 20:19:01 eradicator Exp $ -IUSE="alsa jack sse ladcca" +IUSE="alsa jack sse ladcca static" inherit flag-o-matic eutils @@ -30,13 +30,14 @@ asrc_unpack() { src_compile() { local myconf - myconf="--enable-ladspa" + myconf="--enable-ladspa `use_enable jack jack-support` `use_enable static`" + if use alsa; then myconf="${myconf} --enable-alsa `use_enable ladcca`" else myconf="${myconf} --disable-alsa --disable-ladcca" fi - use jack || myconf="--disable-jack-support ${myconf}" + if use sse; then myconf="--enable-SSE ${myconf}" # If your CFLAGS include optimizations for sse, ie: @@ -48,13 +49,12 @@ src_compile() { filter-flags "-mfpmath=sse" fi fi + econf ${myconf} || die "./configure failed" emake || die } src_install() { - einstall || die + make DESTDIR="${D}" install || die dodoc AUTHORS COPYING INSTALL NEWS README THANKS TODO } - - |