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/libpgf: ChangeLog libpgf-6.09.44-r1.ebuild libpgf-6.09.44.ebuild
Date: Tue, 29 Dec 2009 19:19:54
Message-Id: E1NPhbl-0004HN-67@stork.gentoo.org
1 ssuominen 09/12/29 19:19:53
2
3 Modified: ChangeLog
4 Added: libpgf-6.09.44-r1.ebuild
5 Removed: libpgf-6.09.44.ebuild
6 Log:
7 Fix pkg-config file wrt #298245, thanks to Ronan Arraes Jardim Chagas for reporting.
8 (Portage version: 2.2_rc61/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.2 media-libs/libpgf/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libpgf/ChangeLog?rev=1.2&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libpgf/ChangeLog?rev=1.2&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libpgf/ChangeLog?r1=1.1&r2=1.2
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/libpgf/ChangeLog,v
20 retrieving revision 1.1
21 retrieving revision 1.2
22 diff -u -r1.1 -r1.2
23 --- ChangeLog 22 Dec 2009 17:53:48 -0000 1.1
24 +++ ChangeLog 29 Dec 2009 19:19:52 -0000 1.2
25 @@ -1,6 +1,13 @@
26 # ChangeLog for media-libs/libpgf
27 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libpgf/ChangeLog,v 1.1 2009/12/22 17:53:48 ssuominen Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libpgf/ChangeLog,v 1.2 2009/12/29 19:19:52 ssuominen Exp $
30 +
31 +*libpgf-6.09.44-r1 (29 Dec 2009)
32 +
33 + 29 Dec 2009; Samuli Suominen <ssuominen@g.o>
34 + +libpgf-6.09.44-r1.ebuild, +files/libpgf-6.09.44-pkg.patch:
35 + Fix pkg-config file wrt #298245, thanks to Ronan Arraes Jardim Chagas for
36 + reporting.
37
38 *libpgf-6.09.44 (22 Dec 2009)
39
40
41
42
43 1.1 media-libs/libpgf/libpgf-6.09.44-r1.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libpgf/libpgf-6.09.44-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libpgf/libpgf-6.09.44-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: libpgf-6.09.44-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2009 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/media-libs/libpgf/libpgf-6.09.44-r1.ebuild,v 1.1 2009/12/29 19:19:52 ssuominen Exp $
53
54 EAPI=2
55 inherit autotools eutils
56
57 DESCRIPTION="Library to load, handle and manipulate images in the PGF format"
58 HOMEPAGE="http://www.libpgf.org/"
59 SRC_URI="mirror://sourceforge/${PN}/${P}-src.zip"
60
61 LICENSE="LGPL-2.1"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE="doc"
65
66 RDEPEND=""
67 DEPEND="doc? ( app-doc/doxygen )
68 app-arch/unzip"
69
70 S=${WORKDIR}/${PN}
71
72 src_prepare() {
73 if ! use doc; then
74 sed -i -e "s/\(SUBDIRS = src include\) doc/\1/g" Makefile.am || die
75 fi
76
77 epatch "${FILESDIR}"/${P}-pkg.patch
78
79 eautoreconf
80 }
81
82 src_install() {
83 emake DESTDIR="${D}" install || die
84 dodoc README
85 }