public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-sound/fluidsynth: ChangeLog fluidsynth-1.0.8.ebuild
@ 2008-01-28 18:51 Alexis Ballier (aballier)
  0 siblings, 0 replies; 2+ messages in thread
From: Alexis Ballier (aballier) @ 2008-01-28 18:51 UTC (permalink / raw
  To: gentoo-commits

aballier    08/01/28 18:51:11

  Modified:             ChangeLog
  Added:                fluidsynth-1.0.8.ebuild
  Log:
  version bump
  (Portage version: 2.1.4)

Revision  Changes    Path
1.36                 media-sound/fluidsynth/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/fluidsynth/ChangeLog?rev=1.36&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/fluidsynth/ChangeLog?rev=1.36&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/fluidsynth/ChangeLog?r1=1.35&r2=1.36

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- ChangeLog	22 Nov 2007 19:00:24 -0000	1.35
+++ ChangeLog	28 Jan 2008 18:51:11 -0000	1.36
@@ -1,6 +1,12 @@
 # ChangeLog for media-sound/fluidsynth
-# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v 1.35 2007/11/22 19:00:24 armin76 Exp $
+# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v 1.36 2008/01/28 18:51:11 aballier Exp $
+
+*fluidsynth-1.0.8 (28 Jan 2008)
+
+  28 Jan 2008; Alexis Ballier <aballier@gentoo.org>
+  +fluidsynth-1.0.8.ebuild:
+  version bump
 
   22 Nov 2007; Raúl Porcel <armin76@gentoo.org> fluidsynth-1.0.7a.ebuild:
   sparc/x86 stable wrt #199999



1.1                  media-sound/fluidsynth/fluidsynth-1.0.8.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/fluidsynth/fluidsynth-1.0.8.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/fluidsynth/fluidsynth-1.0.8.ebuild?rev=1.1&content-type=text/plain

Index: fluidsynth-1.0.8.ebuild
===================================================================
# 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.ebuild,v 1.1 2008/01/28 18:51:11 aballier Exp $

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
			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

	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) \
		$(use_with readline) \
		${myconf} || die "./configure failed"

	emake || die "make failed"
}

src_install() {
	emake DESTDIR="${D}" install || die "make install failed"
	dodoc AUTHORS NEWS README THANKS TODO
}



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 2+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-sound/fluidsynth: ChangeLog fluidsynth-1.0.8.ebuild
@ 2009-09-02  7:19 Alexis Ballier (aballier)
  0 siblings, 0 replies; 2+ messages in thread
From: Alexis Ballier (aballier) @ 2009-09-02  7:19 UTC (permalink / raw
  To: gentoo-commits

aballier    09/09/02 07:19:04

  Modified:             ChangeLog
  Removed:              fluidsynth-1.0.8.ebuild
  Log:
  remove old
  (Portage version: 2.2_rc40/cvs/Linux x86_64)

Revision  Changes    Path
1.54                 media-sound/fluidsynth/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/fluidsynth/ChangeLog?rev=1.54&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/fluidsynth/ChangeLog?rev=1.54&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/fluidsynth/ChangeLog?r1=1.53&r2=1.54

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v
retrieving revision 1.53
retrieving revision 1.54
diff -u -r1.53 -r1.54
--- ChangeLog	9 Aug 2009 11:42:15 -0000	1.53
+++ ChangeLog	2 Sep 2009 07:19:04 -0000	1.54
@@ -1,6 +1,10 @@
 # ChangeLog for media-sound/fluidsynth
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v 1.53 2009/08/09 11:42:15 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v 1.54 2009/09/02 07:19:04 aballier Exp $
+
+  02 Sep 2009; Alexis Ballier <aballier@gentoo.org>
+  -fluidsynth-1.0.8.ebuild:
+  remove old
 
   09 Aug 2009; nixnut <nixnut@gentoo.org> fluidsynth-1.0.9.ebuild:
   ppc stable #272758






^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2009-09-02  2:10 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-01-28 18:51 [gentoo-commits] gentoo-x86 commit in media-sound/fluidsynth: ChangeLog fluidsynth-1.0.8.ebuild Alexis Ballier (aballier)
  -- strict thread matches above, loose matches on Subject: below --
2009-09-02  7:19 Alexis Ballier (aballier)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox