diff options
author | Alexis Ballier <aballier@gentoo.org> | 2008-01-12 10:39:59 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2008-01-12 10:39:59 +0000 |
commit | 6c033ed2feaf76dc5df28a90bc4f8c2d115a068d (patch) | |
tree | 626e6f050be76915823e669bd5a81b0c47e292a1 | |
parent | version bump (diff) | |
download | gentoo-2-6c033ed2feaf76dc5df28a90bc4f8c2d115a068d.tar.gz gentoo-2-6c033ed2feaf76dc5df28a90bc4f8c2d115a068d.tar.bz2 gentoo-2-6c033ed2feaf76dc5df28a90bc4f8c2d115a068d.zip |
version bump
(Portage version: 2.1.4)
-rw-r--r-- | media-libs/liblscp/ChangeLog | 9 | ||||
-rw-r--r-- | media-libs/liblscp/files/digest-liblscp-0.5.5 | 3 | ||||
-rw-r--r-- | media-libs/liblscp/liblscp-0.5.5.ebuild | 24 |
3 files changed, 34 insertions, 2 deletions
diff --git a/media-libs/liblscp/ChangeLog b/media-libs/liblscp/ChangeLog index 6ff6389c7b8f..2708ca1a0e3c 100644 --- a/media-libs/liblscp/ChangeLog +++ b/media-libs/liblscp/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-libs/liblscp -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/liblscp/ChangeLog,v 1.7 2007/08/19 18:26:08 drac Exp $ +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/liblscp/ChangeLog,v 1.8 2008/01/12 10:39:59 aballier Exp $ + +*liblscp-0.5.5 (12 Jan 2008) + + 12 Jan 2008; Alexis Ballier <aballier@gentoo.org> +liblscp-0.5.5.ebuild: + version bump *liblscp-0.3.3 (19 Aug 2007) diff --git a/media-libs/liblscp/files/digest-liblscp-0.5.5 b/media-libs/liblscp/files/digest-liblscp-0.5.5 new file mode 100644 index 000000000000..77f1ac36d576 --- /dev/null +++ b/media-libs/liblscp/files/digest-liblscp-0.5.5 @@ -0,0 +1,3 @@ +MD5 4fa48346d5f5188c3a705f9d7a4da368 liblscp-0.5.5.tar.gz 402096 +RMD160 db4419ec8f1158228edfb4abff60a70ea42c541d liblscp-0.5.5.tar.gz 402096 +SHA256 bf5c883d219e25234f42a0ae56458b9d9cf06ab74052f440866c90c01c719026 liblscp-0.5.5.tar.gz 402096 diff --git a/media-libs/liblscp/liblscp-0.5.5.ebuild b/media-libs/liblscp/liblscp-0.5.5.ebuild new file mode 100644 index 000000000000..25af4ac6adb3 --- /dev/null +++ b/media-libs/liblscp/liblscp-0.5.5.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/liblscp/liblscp-0.5.5.ebuild,v 1.1 2008/01/12 10:39:59 aballier Exp $ + +DESCRIPTION="a C++ library for the Linux Sampler control protocol." +HOMEPAGE="http://www.linuxsampler.org" +SRC_URI="http://download.linuxsampler.org/packages/${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="doc" + +RDEPEND="" +DEPEND="doc? ( app-doc/doxygen )" + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed." + dodoc AUTHORS ChangeLog TODO NEWS README + + if use doc; then + dohtml -r doc/html/* + fi +} |