diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-01-17 10:57:45 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-01-17 10:57:45 +0000 |
commit | 81f63cdbdcf9ea1f3a4a5ffe6a1d03688a286cd7 (patch) | |
tree | 87297df7327b434eeb8b18fe5e4ad2406924a01b /media-libs/ladspa-cmt | |
parent | New version, 2.8. Fixed copyright headers. Added to text-markup herd (diff) | |
download | historical-81f63cdbdcf9ea1f3a4a5ffe6a1d03688a286cd7.tar.gz historical-81f63cdbdcf9ea1f3a4a5ffe6a1d03688a286cd7.tar.bz2 historical-81f63cdbdcf9ea1f3a4a5ffe6a1d03688a286cd7.zip |
more Gentoo-like doc install (bug 38486); more error checking/messages; use sed -i; leave $P alone; use $A in unpack
Diffstat (limited to 'media-libs/ladspa-cmt')
-rw-r--r-- | media-libs/ladspa-cmt/ChangeLog | 8 | ||||
-rw-r--r-- | media-libs/ladspa-cmt/Manifest | 4 | ||||
-rw-r--r-- | media-libs/ladspa-cmt/ladspa-cmt-1.15.ebuild | 45 |
3 files changed, 30 insertions, 27 deletions
diff --git a/media-libs/ladspa-cmt/ChangeLog b/media-libs/ladspa-cmt/ChangeLog index 530fd68bad8b..f616f7ca2f9d 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-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/ladspa-cmt/ChangeLog,v 1.6 2004/01/14 21:31:16 rphillips Exp $ +# 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 $ + + 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 + sed -i; leave $P alone; use $A in unpack 14 Jan 2004; <rphillips@gentoo.org> ladspa-cmt-1.14.ebuild, ladspa-cmt-1.15.ebuild: diff --git a/media-libs/ladspa-cmt/Manifest b/media-libs/ladspa-cmt/Manifest index 3128a644e47f..b4effb62c808 100644 --- a/media-libs/ladspa-cmt/Manifest +++ b/media-libs/ladspa-cmt/Manifest @@ -1,5 +1,5 @@ -MD5 ccf2e0b97921fcd6042d4fc2d0a7abff ladspa-cmt-1.15.ebuild 845 +MD5 bba41510a38280aab639c1e274bfc034 ChangeLog 1097 MD5 06c12bccf27555f9f6cffb0aba137d44 ladspa-cmt-1.14.ebuild 842 -MD5 d6019bccaba8f023d7ce154cb4000b95 ChangeLog 896 +MD5 b43215a26f589f00a7f65c14a4651653 ladspa-cmt-1.15.ebuild 980 MD5 6bb9c3395445920cba1b45b6149943b6 files/digest-ladspa-cmt-1.14 55 MD5 0da9dde7734a7551fbed8825e5e3ceea files/digest-ladspa-cmt-1.15 60 diff --git a/media-libs/ladspa-cmt/ladspa-cmt-1.15.ebuild b/media-libs/ladspa-cmt/ladspa-cmt-1.15.ebuild index cd3c49f24ea7..84d6e239c460 100644 --- a/media-libs/ladspa-cmt/ladspa-cmt-1.15.ebuild +++ b/media-libs/ladspa-cmt/ladspa-cmt-1.15.ebuild @@ -1,41 +1,40 @@ -# 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.15.ebuild,v 1.5 2004/01/14 21:31:16 rphillips Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/ladspa-cmt/ladspa-cmt-1.15.ebuild,v 1.6 2004/01/17 10:57:30 mr_bones_ Exp $ -S=${WORKDIR}/cmt/src -P=cmt_src_${PV} +S="${WORKDIR}/cmt/src" +MY_P="cmt_src_${PV}" 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/${P}.tgz" -KEYWORDS="x86" +SRC_URI="http://www.ladspa.org/download/${MY_P}.tgz" +KEYWORDS="x86" +LICENSE="LGPL-2.1" SLOT="0" +IUSE="" + +DEPEND="media-libs/ladspa-sdk + >=sys-apps/sed-4" src_unpack() { - unpack "${P}.tgz" + unpack "${A}" cd "${S}" - sed -e "/^CFLAGS/ s/-O3/${CFLAGS}/" \ + sed -i \ + -e "/^CFLAGS/ s/-O3/${CFLAGS}/" \ -e 's|/usr/local/include||g' \ - -e 's|/usr/local/lib||g' \ - makefile > makefile.new - mv makefile.new makefile - + -e 's|/usr/local/lib||g' makefile \ + || die "sed makefile failed" } + src_compile() { - emake || die + emake || die "emake failed" } src_install() { - - dodoc ../doc/* - insinto /usr/lib/ladspa INSOPTIONS="-m755" - doins ../plugins/*.so - - - + insinto /usr/lib/ladspa + doins ../plugins/*.so || die "doins failed" + dodoc ../README || die "dodoc failed" + dohtml ../doc/* || die "dohtml failed" } - |