Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/ctl: ChangeLog ctl-1.4.1.ebuild
Date: Mon, 23 Aug 2010 19:01:24
Message-Id: 20100823190117.39E122004E@flycatcher.gentoo.org
1 ssuominen 10/08/23 19:01:17
2
3 Modified: ChangeLog ctl-1.4.1.ebuild
4 Log:
5 Punt .la files. USE="static-libs".
6 (Portage version: 2.2_rc67/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.17 media-libs/ctl/ChangeLog
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/ctl/ChangeLog?rev=1.17&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/ctl/ChangeLog?rev=1.17&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/ctl/ChangeLog?r1=1.16&r2=1.17
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/media-libs/ctl/ChangeLog,v
18 retrieving revision 1.16
19 retrieving revision 1.17
20 diff -u -r1.16 -r1.17
21 --- ChangeLog 8 Aug 2008 22:05:35 -0000 1.16
22 +++ ChangeLog 23 Aug 2010 19:01:17 -0000 1.17
23 @@ -1,6 +1,9 @@
24 # ChangeLog for media-libs/ctl
25 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/media-libs/ctl/ChangeLog,v 1.16 2008/08/08 22:05:35 aballier Exp $
27 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/ctl/ChangeLog,v 1.17 2010/08/23 19:01:17 ssuominen Exp $
29 +
30 + 23 Aug 2010; Samuli Suominen <ssuominen@g.o> ctl-1.4.1.ebuild:
31 + Punt .la files. USE="static-libs".
32
33 08 Aug 2008; Alexis Ballier <aballier@g.o> -ctl-1.4.0.ebuild:
34 remove old
35
36
37
38 1.11 media-libs/ctl/ctl-1.4.1.ebuild
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/ctl/ctl-1.4.1.ebuild?rev=1.11&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/ctl/ctl-1.4.1.ebuild?rev=1.11&content-type=text/plain
42 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/ctl/ctl-1.4.1.ebuild?r1=1.10&r2=1.11
43
44 Index: ctl-1.4.1.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/media-libs/ctl/ctl-1.4.1.ebuild,v
47 retrieving revision 1.10
48 retrieving revision 1.11
49 diff -u -r1.10 -r1.11
50 --- ctl-1.4.1.ebuild 8 Aug 2008 22:04:04 -0000 1.10
51 +++ ctl-1.4.1.ebuild 23 Aug 2010 19:01:17 -0000 1.11
52 @@ -1,8 +1,9 @@
53 -# Copyright 1999-2008 Gentoo Foundation
54 +# Copyright 1999-2010 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/media-libs/ctl/ctl-1.4.1.ebuild,v 1.10 2008/08/08 22:04:04 aballier Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/media-libs/ctl/ctl-1.4.1.ebuild,v 1.11 2010/08/23 19:01:17 ssuominen Exp $
58
59 -inherit base
60 +EAPI=2
61 +inherit eutils libtool
62
63 DESCRIPTION="AMPAS' Color Transformation Language"
64 HOMEPAGE="http://sourceforge.net/projects/ampasctl"
65 @@ -11,21 +12,26 @@
66 LICENSE="AMPAS"
67 SLOT="0"
68 KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd"
69 -IUSE="doc"
70 +IUSE=""
71
72 RDEPEND="media-libs/ilmbase"
73 DEPEND="${RDEPEND}
74 dev-util/pkgconfig"
75
76 -PATCHES=( "${FILESDIR}/${P}-gcc43.patch" )
77 +src_prepare() {
78 + epatch "${FILESDIR}"/${P}-gcc43.patch
79 + elibtoolize
80 +}
81 +
82 +src_configure() {
83 + econf \
84 + --disable-dependency-tracking \
85 + $(use_enable static-libs static)
86 +}
87
88 src_install() {
89 - emake DESTDIR="${D}" install || die "install failed"
90 + emake DESTDIR="${D}" docdir=/usr/share/doc/${PF} install || die
91 dodoc AUTHORS ChangeLog NEWS README
92
93 - if use doc ; then
94 - insinto "/usr/share/doc/${PF}"
95 - doins doc/*.pdf
96 - fi
97 - rm -frv "${D}usr/share/doc/CTL"*
98 + find "${D}" -name '*.la' -exec rm -f '{}' +
99 }