Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/ladspa-cmt: ChangeLog ladspa-cmt-1.16.ebuild
Date: Sun, 18 Nov 2007 16:14:04
Message-Id: E1ItmmV-0001V8-2n@stork.gentoo.org
1 aballier 07/11/18 16:13:59
2
3 Modified: ChangeLog
4 Added: ladspa-cmt-1.16.ebuild
5 Log:
6 version bump, add rdf file for better classification of cmt plugins, bug #190426
7 (Portage version: 2.1.3.19)
8
9 Revision Changes Path
10 1.26 media-libs/ladspa-cmt/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/ladspa-cmt/ChangeLog?rev=1.26&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/ladspa-cmt/ChangeLog?rev=1.26&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/ladspa-cmt/ChangeLog?r1=1.25&r2=1.26
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/ladspa-cmt/ChangeLog,v
19 retrieving revision 1.25
20 retrieving revision 1.26
21 diff -u -r1.25 -r1.26
22 --- ChangeLog 1 Nov 2007 20:55:03 -0000 1.25
23 +++ ChangeLog 18 Nov 2007 16:13:58 -0000 1.26
24 @@ -1,6 +1,13 @@
25 # ChangeLog for media-libs/ladspa-cmt
26 # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/ladspa-cmt/ChangeLog,v 1.25 2007/11/01 20:55:03 armin76 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/ladspa-cmt/ChangeLog,v 1.26 2007/11/18 16:13:58 aballier Exp $
29 +
30 +*ladspa-cmt-1.16 (18 Nov 2007)
31 +
32 + 18 Nov 2007; Alexis Ballier <aballier@g.o> +files/cmt.rdf,
33 + +ladspa-cmt-1.16.ebuild:
34 + version bump, add rdf file for better classification of cmt plugins, bug
35 + #190426
36
37 01 Nov 2007; Raúl Porcel <armin76@g.o> ladspa-cmt-1.15.ebuild:
38 Add ~alpha wrt #196587, thanks to Tobias Klausmann for testing
39
40
41
42 1.1 media-libs/ladspa-cmt/ladspa-cmt-1.16.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/ladspa-cmt/ladspa-cmt-1.16.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/ladspa-cmt/ladspa-cmt-1.16.ebuild?rev=1.1&content-type=text/plain
46
47 Index: ladspa-cmt-1.16.ebuild
48 ===================================================================
49 # Copyright 1999-2007 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/media-libs/ladspa-cmt/ladspa-cmt-1.16.ebuild,v 1.1 2007/11/18 16:13:58 aballier Exp $
52
53 inherit eutils toolchain-funcs
54
55 IUSE=""
56
57 S="${WORKDIR}/cmt/src"
58 MY_P="cmt_src_${PV}"
59
60 DESCRIPTION="CMT (computer music toolkit) Lasdpa library plugins"
61 HOMEPAGE="http://www.ladspa.org/"
62 SRC_URI="http://www.ladspa.org/download/${MY_P}.tgz"
63
64 KEYWORDS="~alpha ~amd64 ~ppc ~ppc-macos ~ppc64 ~sparc ~x86"
65 LICENSE="LGPL-2.1"
66 SLOT="0"
67
68 DEPEND="media-libs/ladspa-sdk
69 >=sys-apps/sed-4"
70
71 src_unpack() {
72 unpack ${A}
73 cd "${S}"
74
75 sed -i \
76 -e "/^CFLAGS/ s/-O3/${CFLAGS}/" \
77 -e 's|/usr/local/include||g' \
78 -e 's|/usr/local/lib||g' makefile \
79 || die "sed makefile failed"
80 sed -i -e "s/^CXXFLAGS*/CXXFLAGS = ${CXXFLAGS} \$(INCLUDES) -Wall -fPIC\n#/" \
81 "${S}/makefile" || die "sed makefile failed (CXXFLAGS)"
82
83 cd "${S}"
84 use userland_Darwin && epatch "${FILESDIR}/${PN}-darwin.patch"
85 }
86
87 src_compile() {
88 tc-export CXX
89 emake || die "emake failed"
90 }
91
92 src_install() {
93 insinto /usr/share/ladspa/rdf/
94 doins "${FILESDIR}/cmt.rdf"
95 insopts -m755
96 insinto /usr/$(get_libdir)/ladspa
97 doins ../plugins/*.so || die "doins failed"
98 dodoc ../README || die "dodoc failed"
99 dohtml ../doc/* || die "dohtml failed"
100 }
101
102
103
104 --
105 gentoo-commits@g.o mailing list