Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/libpgf: ChangeLog libpgf-6.11.24.ebuild
Date: Sun, 03 Jul 2011 07:34:39
Message-Id: 20110703073428.27B6A2004B@flycatcher.gentoo.org
1 radhermit 11/07/03 07:34:28
2
3 Modified: ChangeLog
4 Added: libpgf-6.11.24.ebuild
5 Log:
6 Version bump (bug #373857). Update to EAPI 4 and add static-libs USE flag.
7
8 (Portage version: 2.2.0_alpha41/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.6 media-libs/libpgf/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libpgf/ChangeLog?rev=1.6&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libpgf/ChangeLog?rev=1.6&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libpgf/ChangeLog?r1=1.5&r2=1.6
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/libpgf/ChangeLog,v
20 retrieving revision 1.5
21 retrieving revision 1.6
22 diff -u -r1.5 -r1.6
23 --- ChangeLog 13 May 2010 18:18:51 -0000 1.5
24 +++ ChangeLog 3 Jul 2011 07:34:27 -0000 1.6
25 @@ -1,6 +1,11 @@
26 # ChangeLog for media-libs/libpgf
27 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libpgf/ChangeLog,v 1.5 2010/05/13 18:18:51 josejx Exp $
29 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libpgf/ChangeLog,v 1.6 2011/07/03 07:34:27 radhermit Exp $
31 +
32 +*libpgf-6.11.24 (03 Jul 2011)
33 +
34 + 03 Jul 2011; Tim Harder <radhermit@g.o> +libpgf-6.11.24.ebuild:
35 + Version bump (bug #373857). Update to EAPI 4 and add static-libs USE flag.
36
37 13 May 2010; Joseph Jezak <josejx@g.o> libpgf-6.09.44-r1.ebuild:
38 Marked ~ppc for bug #309419.
39
40
41
42 1.1 media-libs/libpgf/libpgf-6.11.24.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libpgf/libpgf-6.11.24.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libpgf/libpgf-6.11.24.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libpgf-6.11.24.ebuild
48 ===================================================================
49 # Copyright 1999-2011 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/media-libs/libpgf/libpgf-6.11.24.ebuild,v 1.1 2011/07/03 07:34:27 radhermit Exp $
52
53 EAPI=4
54 inherit autotools
55
56 DESCRIPTION="Library to load, handle and manipulate images in the PGF format"
57 HOMEPAGE="http://www.libpgf.org/"
58 SRC_URI="mirror://sourceforge/${PN}/${P}-src.zip"
59
60 LICENSE="LGPL-2.1"
61 SLOT="0"
62 KEYWORDS="~amd64 ~ppc ~x86"
63 IUSE="doc static-libs"
64
65 RDEPEND=""
66 DEPEND="doc? ( app-doc/doxygen )
67 app-arch/unzip"
68
69 S=${WORKDIR}/${PN}
70
71 src_prepare() {
72 if ! use doc; then
73 sed -i -e "/HAS_DOXYGEN/{N;N;d}" Makefile.am || die
74 fi
75
76 eautoreconf
77 }
78
79 src_configure() {
80 econf $(use_enable static-libs static)
81 }
82
83 src_install() {
84 default
85
86 find "${ED}" -name '*.la' -delete || die
87 }