diff options
author | Samuli Suominen <drac@gentoo.org> | 2007-08-19 19:00:38 +0000 |
---|---|---|
committer | Samuli Suominen <drac@gentoo.org> | 2007-08-19 19:00:38 +0000 |
commit | 1a89f75dfadbe3b99282bd76dc46fff49985b86e (patch) | |
tree | 57a1837eb384359dcacdb027867be6985163f58a /media-sound/linuxsampler | |
parent | amd64 stable, bug #187681. (diff) | |
download | gentoo-2-1a89f75dfadbe3b99282bd76dc46fff49985b86e.tar.gz gentoo-2-1a89f75dfadbe3b99282bd76dc46fff49985b86e.tar.bz2 gentoo-2-1a89f75dfadbe3b99282bd76dc46fff49985b86e.zip |
Version bump.
(Portage version: 2.1.3.6)
Diffstat (limited to 'media-sound/linuxsampler')
-rw-r--r-- | media-sound/linuxsampler/ChangeLog | 9 | ||||
-rw-r--r-- | media-sound/linuxsampler/files/digest-linuxsampler-0.4.0 | 3 | ||||
-rw-r--r-- | media-sound/linuxsampler/linuxsampler-0.4.0.ebuild | 39 |
3 files changed, 49 insertions, 2 deletions
diff --git a/media-sound/linuxsampler/ChangeLog b/media-sound/linuxsampler/ChangeLog index 4989527a407a..d26577be2002 100644 --- a/media-sound/linuxsampler/ChangeLog +++ b/media-sound/linuxsampler/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-sound/linuxsampler -# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/linuxsampler/ChangeLog,v 1.7 2006/11/26 17:40:59 flameeyes Exp $ +# 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 $ + +*linuxsampler-0.4.0 (19 Aug 2007) + + 19 Aug 2007; Samuli Suominen <drac@gentoo.org> +linuxsampler-0.4.0.ebuild: + Version bump. 26 Nov 2006; Diego Pettenò <flameeyes@gentoo.org> +files/linuxsampler-0.3.3-gcc4.patch, -linuxsampler-0.3.1.ebuild, diff --git a/media-sound/linuxsampler/files/digest-linuxsampler-0.4.0 b/media-sound/linuxsampler/files/digest-linuxsampler-0.4.0 new file mode 100644 index 000000000000..621c1d46a983 --- /dev/null +++ b/media-sound/linuxsampler/files/digest-linuxsampler-0.4.0 @@ -0,0 +1,3 @@ +MD5 9a6d3634e50d1004bdbe81f38cf6c0e5 linuxsampler-0.4.0.tar.bz2 490525 +RMD160 cb453d2b14362081dbddbc030bd610d5b966d362 linuxsampler-0.4.0.tar.bz2 490525 +SHA256 f0c958936f6771d36345e3316b6c918bc059689b2bc8e32ff31917c27f5d4c69 linuxsampler-0.4.0.tar.bz2 490525 diff --git a/media-sound/linuxsampler/linuxsampler-0.4.0.ebuild b/media-sound/linuxsampler/linuxsampler-0.4.0.ebuild new file mode 100644 index 000000000000..fa3b7768dd5b --- /dev/null +++ b/media-sound/linuxsampler/linuxsampler-0.4.0.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/linuxsampler/linuxsampler-0.4.0.ebuild,v 1.1 2007/08/19 19:00:38 drac Exp $ + +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" + +RDEPEND=">=dev-db/sqlite-3 + >=media-libs/liblscp-0.3 + >=media-libs/libgig-3.1 + media-libs/alsa-lib + jack? ( media-sound/jack-audio-connection-kit )" +DEPEND="${RDEPEND} + dev-util/pkgconfig + doc? ( app-doc/doxygen )" + +src_compile() { + econf + 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 + mv "${S}"/doc/html "${D}"/usr/share/doc/${PF}/ + fi +} |