Gentoo Archives: gentoo-commits

From: "Andreas HAttel (dilfridge)" <dilfridge@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/libpgf: ChangeLog libpgf-6.11.28.ebuild
Date: Wed, 27 Jul 2011 21:34:01
Message-Id: 20110727213346.AED592004B@flycatcher.gentoo.org
1 dilfridge 11/07/27 21:33:46
2
3 Modified: ChangeLog
4 Added: libpgf-6.11.28.ebuild
5 Log:
6 Version bump to svn snapshot, fixing bug 376281
7
8 (Portage version: 2.1.10.7/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.7 media-libs/libpgf/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libpgf/ChangeLog?rev=1.7&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libpgf/ChangeLog?rev=1.7&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libpgf/ChangeLog?r1=1.6&r2=1.7
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/libpgf/ChangeLog,v
20 retrieving revision 1.6
21 retrieving revision 1.7
22 diff -u -r1.6 -r1.7
23 --- ChangeLog 3 Jul 2011 07:34:27 -0000 1.6
24 +++ ChangeLog 27 Jul 2011 21:33:46 -0000 1.7
25 @@ -1,6 +1,12 @@
26 # ChangeLog for media-libs/libpgf
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libpgf/ChangeLog,v 1.6 2011/07/03 07:34:27 radhermit Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libpgf/ChangeLog,v 1.7 2011/07/27 21:33:46 dilfridge Exp $
30 +
31 +*libpgf-6.11.28 (27 Jul 2011)
32 +
33 + 27 Jul 2011; Andreas K. Huettel <dilfridge@g.o>
34 + +libpgf-6.11.28.ebuild:
35 + Version bump to svn snapshot, fixing bug 376281
36
37 *libpgf-6.11.24 (03 Jul 2011)
38
39
40
41
42 1.1 media-libs/libpgf/libpgf-6.11.28.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libpgf/libpgf-6.11.28.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libpgf/libpgf-6.11.28.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libpgf-6.11.28.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.28.ebuild,v 1.1 2011/07/27 21:33:46 dilfridge 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="http://dev.gentoo.org/~dilfridge/distfiles/${P}.tar.bz2"
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 }