diff options
author | Alexis Ballier <aballier@gentoo.org> | 2008-01-12 10:36:16 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2008-01-12 10:36:16 +0000 |
commit | b86adc0f474f177b06f0f96621efd37c18d3e4b9 (patch) | |
tree | 502f97c68fd7de7bf5a6e6275c4e678e492b66e3 /media-sound/linuxsampler | |
parent | and mention bug number in changelog (diff) | |
download | gentoo-2-b86adc0f474f177b06f0f96621efd37c18d3e4b9.tar.gz gentoo-2-b86adc0f474f177b06f0f96621efd37c18d3e4b9.tar.bz2 gentoo-2-b86adc0f474f177b06f0f96621efd37c18d3e4b9.zip |
version bump
(Portage version: 2.1.4)
Diffstat (limited to 'media-sound/linuxsampler')
4 files changed, 73 insertions, 2 deletions
diff --git a/media-sound/linuxsampler/ChangeLog b/media-sound/linuxsampler/ChangeLog index d26577be2002..0a0815ed139b 100644 --- a/media-sound/linuxsampler/ChangeLog +++ b/media-sound/linuxsampler/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for media-sound/linuxsampler -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/linuxsampler/ChangeLog,v 1.8 2007/08/19 19:00:38 drac Exp $ +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/linuxsampler/ChangeLog,v 1.9 2008/01/12 10:36:15 aballier Exp $ + +*linuxsampler-0.5.1 (12 Jan 2008) + + 12 Jan 2008; Alexis Ballier <aballier@gentoo.org> + +files/linuxsampler-0.5.1-pkgconfiginit.patch, +linuxsampler-0.5.1.ebuild: + version bump *linuxsampler-0.4.0 (19 Aug 2007) diff --git a/media-sound/linuxsampler/files/digest-linuxsampler-0.5.1 b/media-sound/linuxsampler/files/digest-linuxsampler-0.5.1 new file mode 100644 index 000000000000..664b9485a071 --- /dev/null +++ b/media-sound/linuxsampler/files/digest-linuxsampler-0.5.1 @@ -0,0 +1,3 @@ +MD5 c927c5734ac66f4ba9ff107326d7ffc0 linuxsampler-0.5.1.tar.bz2 614500 +RMD160 ea964c5033b3d44c1b5b72cb2447496cbd736992 linuxsampler-0.5.1.tar.bz2 614500 +SHA256 e0d42f98813abf187b636f52d3fe3d5c1add228a2e783bdda409ebae1c7f901f linuxsampler-0.5.1.tar.bz2 614500 diff --git a/media-sound/linuxsampler/files/linuxsampler-0.5.1-pkgconfiginit.patch b/media-sound/linuxsampler/files/linuxsampler-0.5.1-pkgconfiginit.patch new file mode 100644 index 000000000000..551f1512e12e --- /dev/null +++ b/media-sound/linuxsampler/files/linuxsampler-0.5.1-pkgconfiginit.patch @@ -0,0 +1,12 @@ +Index: linuxsampler-0.5.1/configure.in +=================================================================== +--- linuxsampler-0.5.1.orig/configure.in ++++ linuxsampler-0.5.1/configure.in +@@ -52,6 +52,7 @@ AC_SUBST(target_cpu) + AC_SUBST(target_os) + AC_SUBST(target_vendor) + ++PKG_PROG_PKG_CONFIG + + ########################################################################### + # General Checks diff --git a/media-sound/linuxsampler/linuxsampler-0.5.1.ebuild b/media-sound/linuxsampler/linuxsampler-0.5.1.ebuild new file mode 100644 index 000000000000..c5d918171066 --- /dev/null +++ b/media-sound/linuxsampler/linuxsampler-0.5.1.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/linuxsampler/linuxsampler-0.5.1.ebuild,v 1.1 2008/01/12 10:36:15 aballier Exp $ + +inherit autotools eutils + +DESCRIPTION="LinuxSampler is a software audio sampler engine with professional grade features." +HOMEPAGE="http://www.linuxsampler.org/" +SRC_URI="http://download.linuxsampler.org/packages/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc jack sqlite3" + +RDEPEND="sqlite3? ( >=dev-db/sqlite-3.3 ) + >=media-libs/libgig-3.2.1 + media-libs/alsa-lib + jack? ( media-sound/jack-audio-connection-kit )" +DEPEND="${RDEPEND} + dev-util/pkgconfig + doc? ( app-doc/doxygen )" + +src_unpack() { + unpack ${A} + cd "${S}" + + epatch "${FILESDIR}/${P}-pkgconfiginit.patch" + AT_M4DIR="m4" eautoreconf +} + +src_compile() { + econf --enable-alsa-driver \ + $(use_enable jack jack-driver) \ + $(use_enable sqlite3 instruments-db) + emake -j1 || die "emake failed." + + if use doc; then + emake -j1 docs || die "emake docs failed." + fi +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed." + dodoc AUTHORS ChangeLog NEWS README + + if use doc; then + dohtml -r doc/html/* + fi +} |