diff options
author | Jeremy Huddleston <eradicator@gentoo.org> | 2004-03-15 02:43:49 +0000 |
---|---|---|
committer | Jeremy Huddleston <eradicator@gentoo.org> | 2004-03-15 02:43:49 +0000 |
commit | 55ae245d0e46ddbfbc852ca52baf0d63230ef36e (patch) | |
tree | 7366d927bc315160d94ea1a38b306dcdc4f36d94 /media-libs | |
parent | me kicks self for not putting entry in the changelog (Manifest recommit) (diff) | |
download | gentoo-2-55ae245d0e46ddbfbc852ca52baf0d63230ef36e.tar.gz gentoo-2-55ae245d0e46ddbfbc852ca52baf0d63230ef36e.tar.bz2 gentoo-2-55ae245d0e46ddbfbc852ca52baf0d63230ef36e.zip |
readonly bug fix for bug #44712.
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/ladspa-cmt/ChangeLog | 6 | ||||
-rw-r--r-- | media-libs/ladspa-cmt/ladspa-cmt-1.14.ebuild | 30 | ||||
-rw-r--r-- | media-libs/ladspa-cmt/metadata.xml | 5 |
3 files changed, 24 insertions, 17 deletions
diff --git a/media-libs/ladspa-cmt/ChangeLog b/media-libs/ladspa-cmt/ChangeLog index f616f7ca2f9d..b7c4b5a04e08 100644 --- a/media-libs/ladspa-cmt/ChangeLog +++ b/media-libs/ladspa-cmt/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-libs/ladspa-cmt # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/ladspa-cmt/ChangeLog,v 1.7 2004/01/17 10:57:30 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/ladspa-cmt/ChangeLog,v 1.8 2004/03/15 02:43:49 eradicator Exp $ + + 14 Mar 2004; Jeremy Huddleston <eradicator@gentoo.org> + ladspa-cmt-1.14.ebuild, metadata.xml: + readonly bug fix for bug #44712. 17 Jan 2004; Michael Sterrett <mr_bones_@gentoo.org> ladspa-cmt-1.15.ebuild: more Gentoo-like doc install (bug 38486); more error checking/messages; use diff --git a/media-libs/ladspa-cmt/ladspa-cmt-1.14.ebuild b/media-libs/ladspa-cmt/ladspa-cmt-1.14.ebuild index 847f0491eed0..49305320b38b 100644 --- a/media-libs/ladspa-cmt/ladspa-cmt-1.14.ebuild +++ b/media-libs/ladspa-cmt/ladspa-cmt-1.14.ebuild @@ -1,41 +1,39 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. +# Copyright 1999-2004 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.14.ebuild,v 1.8 2004/01/14 21:31:16 rphillips Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/ladspa-cmt/ladspa-cmt-1.14.ebuild,v 1.9 2004/03/15 02:43:49 eradicator 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.tgz" + KEYWORDS="x86" SLOT="0" S=${WORKDIR}/cmt/src -P=cmt_src -src_unpack() { - unpack "${P}.tgz" - 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 +RDEPEND="media-libs/ladspa-sdk" +DEPEND="${RDEPEND} + >=sys-apps/sed-4" +src_unpack() { + unpack ${A} + cd ${S} + sed -i -e "/^CFLAGS/ s/-O3/${CFLAGS}/" \ + -e 's|/usr/local/include||g' \ + -e 's|/usr/local/lib||g' \ + makefile } + src_compile() { emake || die } src_install() { - dodoc ../doc/* insinto /usr/lib/ladspa INSOPTIONS="-m755" doins ../plugins/*.so - - - } diff --git a/media-libs/ladspa-cmt/metadata.xml b/media-libs/ladspa-cmt/metadata.xml new file mode 100644 index 000000000000..e1774e3d9ad7 --- /dev/null +++ b/media-libs/ladspa-cmt/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>sound</herd> +</pkgmetadata> |