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-gfx/apngasm: ChangeLog apngasm-2.3.ebuild
Date: Fri, 29 Apr 2011 08:33:53
Message-Id: 20110429083327.92EA220054@flycatcher.gentoo.org
1 radhermit 11/04/29 08:33:27
2
3 Modified: ChangeLog apngasm-2.3.ebuild
4 Log:
5 Add a dependency on zlib and explicitly link with it.
6
7 (Portage version: 2.2.0_alpha30/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.2 media-gfx/apngasm/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/apngasm/ChangeLog?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/apngasm/ChangeLog?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/apngasm/ChangeLog?r1=1.1&r2=1.2
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-gfx/apngasm/ChangeLog,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- ChangeLog 26 Apr 2011 17:35:50 -0000 1.1
23 +++ ChangeLog 29 Apr 2011 08:33:27 -0000 1.2
24 @@ -1,6 +1,9 @@
25 # ChangeLog for media-gfx/apngasm
26 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/apngasm/ChangeLog,v 1.1 2011/04/26 17:35:50 vapier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/apngasm/ChangeLog,v 1.2 2011/04/29 08:33:27 radhermit Exp $
29 +
30 + 29 Apr 2011; Tim Harder <radhermit@g.o> apngasm-2.3.ebuild:
31 + Add a dependency on zlib and explicitly link with it.
32
33 *apngasm-2.3 (26 Apr 2011)
34
35
36
37
38 1.2 media-gfx/apngasm/apngasm-2.3.ebuild
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/apngasm/apngasm-2.3.ebuild?rev=1.2&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/apngasm/apngasm-2.3.ebuild?rev=1.2&content-type=text/plain
42 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/apngasm/apngasm-2.3.ebuild?r1=1.1&r2=1.2
43
44 Index: apngasm-2.3.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/media-gfx/apngasm/apngasm-2.3.ebuild,v
47 retrieving revision 1.1
48 retrieving revision 1.2
49 diff -u -r1.1 -r1.2
50 --- apngasm-2.3.ebuild 26 Apr 2011 17:35:50 -0000 1.1
51 +++ apngasm-2.3.ebuild 29 Apr 2011 08:33:27 -0000 1.2
52 @@ -1,6 +1,6 @@
53 # Copyright 1999-2011 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/apngasm/apngasm-2.3.ebuild,v 1.1 2011/04/26 17:35:50 vapier Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/apngasm/apngasm-2.3.ebuild,v 1.2 2011/04/29 08:33:27 radhermit Exp $
57
58 EAPI="3"
59
60 @@ -15,7 +15,8 @@
61 KEYWORDS="~amd64 ~x86"
62 IUSE=""
63
64 -RDEPEND="media-libs/libpng[apng]"
65 +RDEPEND="media-libs/libpng[apng]
66 + sys-libs/zlib"
67 DEPEND="${RDEPEND}
68 dev-util/pkgconfig
69 app-arch/unzip"
70 @@ -23,7 +24,7 @@
71 S=${WORKDIR}
72
73 src_compile() {
74 - emake CC="$(tc-getCC)" LDLIBS="$($(tc-getPKG_CONFIG) --libs libpng)" ${PN} || die
75 + emake CC="$(tc-getCC)" LDLIBS="$($(tc-getPKG_CONFIG) --libs libpng --libs zlib)" ${PN} || die
76 }
77
78 src_install() {