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 | 61a31b4f1cf91c556c2f19fe003bd3d0dc7697bf (patch) | |
tree | a652a9b3292d192615cff0076fc65908b1b4c92a /media-libs | |
parent | Version bumped. Closes #20656. (diff) | |
download | historical-61a31b4f1cf91c556c2f19fe003bd3d0dc7697bf.tar.gz historical-61a31b4f1cf91c556c2f19fe003bd3d0dc7697bf.tar.bz2 historical-61a31b4f1cf91c556c2f19fe003bd3d0dc7697bf.zip |
Version bumped. Closes #20656.
Diffstat (limited to 'media-libs')
-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 |
3 files changed, 46 insertions, 3 deletions
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 + + + +} + |