diff options
author | Martin Holzer <mholzer@gentoo.org> | 2003-07-07 18:08:14 +0000 |
---|---|---|
committer | Martin Holzer <mholzer@gentoo.org> | 2003-07-07 18:08:14 +0000 |
commit | e6bf5a57cf6dfcd432ebcbaed49e44cb1179d7c8 (patch) | |
tree | dce292e4f0a6b7b0dd9b0700f2a897a9e0d70800 /media-libs/ladspa-cmt | |
parent | Version bumped. Closes #20656. (diff) | |
download | gentoo-2-e6bf5a57cf6dfcd432ebcbaed49e44cb1179d7c8.tar.gz gentoo-2-e6bf5a57cf6dfcd432ebcbaed49e44cb1179d7c8.tar.bz2 gentoo-2-e6bf5a57cf6dfcd432ebcbaed49e44cb1179d7c8.zip |
Version bumped. Closes #20656.
Diffstat (limited to 'media-libs/ladspa-cmt')
-rw-r--r-- | media-libs/ladspa-cmt/ChangeLog | 7 | ||||
-rw-r--r-- | media-libs/ladspa-cmt/Manifest | 6 | ||||
-rw-r--r-- | media-libs/ladspa-cmt/files/digest-ladspa-cmt-1.15 | 1 | ||||
-rw-r--r-- | media-libs/ladspa-cmt/ladspa-cmt-1.15.ebuild | 42 |
4 files changed, 52 insertions, 4 deletions
diff --git a/media-libs/ladspa-cmt/ChangeLog b/media-libs/ladspa-cmt/ChangeLog index ebea59123042..6de2476d5b9b 100644 --- a/media-libs/ladspa-cmt/ChangeLog +++ b/media-libs/ladspa-cmt/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-libs/ladspa-cmt # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/ladspa-cmt/ChangeLog,v 1.3 2003/02/12 07:08:58 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/ladspa-cmt/ChangeLog,v 1.4 2003/07/07 18:07:53 mholzer Exp $ + +*ladspa-cmt-1.15 (07 Jul 2003) + + 07 Jul 2003; Martin Holzer <mholzer@gentoo.org> ladspa-cmt-1.15.ebuild: + Version bumped. Closes #20656. *ladspa-cmt-1.14 (18 Aug 2002) diff --git a/media-libs/ladspa-cmt/Manifest b/media-libs/ladspa-cmt/Manifest index 366946890a65..2ea43818c021 100644 --- a/media-libs/ladspa-cmt/Manifest +++ b/media-libs/ladspa-cmt/Manifest @@ -1,5 +1,5 @@ -MD5 2ace1ca0ae2b9f4b4ef6bceb2e475312 ChangeLog 680 +MD5 deed28296ad8141f09887acc519e24b2 ChangeLog 681 MD5 427e3c72507c51e95488def4596b2f31 ladspa-cmt-1.14.ebuild 873 -MD5 63068baf5ef1c7c87d89a8fe0dd8e0c8 ladspa-cmt-1.15.ebuild 879 +MD5 420a7c8002a8a585be318f097aa8f0b8 ladspa-cmt-1.15.ebuild 880 MD5 0da9dde7734a7551fbed8825e5e3ceea files/digest-ladspa-cmt-1.15 60 -MD5 1aee6b7e6153ea1ba4b62f44163fa81b files/digest-ladspa-cmt-1.14 55 +MD5 6bb9c3395445920cba1b45b6149943b6 files/digest-ladspa-cmt-1.14 55 diff --git a/media-libs/ladspa-cmt/files/digest-ladspa-cmt-1.15 b/media-libs/ladspa-cmt/files/digest-ladspa-cmt-1.15 new file mode 100644 index 000000000000..fd54681e3f5c --- /dev/null +++ b/media-libs/ladspa-cmt/files/digest-ladspa-cmt-1.15 @@ -0,0 +1 @@ +MD5 aa2f0609aca8b698625d86170c426e2c cmt_src_1.15.tgz 61522 diff --git a/media-libs/ladspa-cmt/ladspa-cmt-1.15.ebuild b/media-libs/ladspa-cmt/ladspa-cmt-1.15.ebuild new file mode 100644 index 000000000000..de385dc9502e --- /dev/null +++ b/media-libs/ladspa-cmt/ladspa-cmt-1.15.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/ladspa-cmt/ladspa-cmt-1.15.ebuild,v 1.1 2003/07/07 18:07:53 mholzer Exp $ + +DESCRIPTION="CMT (computer music toolkit) Lasdpa library plugins" +HOMEPAGE="http://www.ladspa.org/" +LICENSE="LGPL-2.1" +DEPEND="media-libs/ladspa-sdk" +SRC_URI="http://www.ladspa.org/download/cmt_src_${PV}.tgz" +KEYWORDS="x86" + +SLOT="0" + +S=${WORKDIR}/cmt/src +P=cmt_src +A=${P}.tgz + +src_unpack() { + unpack "${A}" + cd "${S}" + sed -e "/^CFLAGS/ s/-O3/${CFLAGS}/" \ + -e 's|/usr/local/include||g' \ + -e 's|/usr/local/lib||g' \ + makefile > makefile.new + mv makefile.new makefile + +} +src_compile() { + emake || die +} + +src_install() { + + dodoc ../doc/* + insinto /usr/lib/ladspa + INSOPTIONS="-m755" + doins ../plugins/*.so + + + +} + |