diff options
author | Tim Harder <radhermit@gentoo.org> | 2011-06-07 04:57:43 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2011-06-07 04:57:43 +0000 |
commit | 4967a193585ca6a02709c5f6f2714ef8fe71f560 (patch) | |
tree | 00ca11b5d605c7d7d59fad0e6d128ee68d77c5b5 /media-sound/sfc | |
parent | bump to 0.9.6 and remove old (diff) | |
download | gentoo-2-4967a193585ca6a02709c5f6f2714ef8fe71f560.tar.gz gentoo-2-4967a193585ca6a02709c5f6f2714ef8fe71f560.tar.bz2 gentoo-2-4967a193585ca6a02709c5f6f2714ef8fe71f560.zip |
Version bump (bug #370173). Update to EAPI 4, add RDEPEND, and respect CXXFLAGS.
(Portage version: 2.2.0_alpha37/cvs/Linux x86_64)
Diffstat (limited to 'media-sound/sfc')
-rw-r--r-- | media-sound/sfc/ChangeLog | 8 | ||||
-rw-r--r-- | media-sound/sfc/sfc-0.018.ebuild | 26 |
2 files changed, 33 insertions, 1 deletions
diff --git a/media-sound/sfc/ChangeLog b/media-sound/sfc/ChangeLog index e0a2e9107a44..fd89605a360c 100644 --- a/media-sound/sfc/ChangeLog +++ b/media-sound/sfc/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for media-sound/sfc # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/sfc/ChangeLog,v 1.16 2011/03/20 20:07:34 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/sfc/ChangeLog,v 1.17 2011/06/07 04:57:43 radhermit Exp $ + +*sfc-0.018 (07 Jun 2011) + + 07 Jun 2011; Tim Harder <radhermit@gentoo.org> +sfc-0.018.ebuild: + Version bump (bug #370173). Update to EAPI 4, add RDEPEND, and respect + CXXFLAGS. 20 Mar 2011; Justin Lecher <jlec@gentoo.org> sfc-0.016.ebuild: x11-libs/fltk SLOTMOVE 1.1 -> 1, corrected ebuild accordingly diff --git a/media-sound/sfc/sfc-0.018.ebuild b/media-sound/sfc/sfc-0.018.ebuild new file mode 100644 index 000000000000..0cbdf80da166 --- /dev/null +++ b/media-sound/sfc/sfc-0.018.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/sfc/sfc-0.018.ebuild,v 1.1 2011/06/07 04:57:43 radhermit Exp $ + +EAPI="4" + +inherit autotools + +DESCRIPTION="SoundFontCombi is an opensource software pseudo synthesizer." +HOMEPAGE="http://personal.telefonica.terra.es/web/soudfontcombi/" +SRC_URI="http://personal.telefonica.terra.es/web/soudfontcombi/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +RDEPEND=" + media-libs/alsa-lib + x11-libs/fltk:1" +DEPEND="${RDEPEND}" + +src_prepare() { + sed -i -e "/CXXFLAGS/s:-O3:${CXXFLAGS}:" configure.in + eautoreconf +} |