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.5.ebuild
Date: Wed, 11 Jan 2012 23:13:22
Message-Id: 20120111231307.BCA5C2004B@flycatcher.gentoo.org
1 radhermit 12/01/11 23:13:07
2
3 Modified: ChangeLog
4 Added: apngasm-2.5.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.4 media-gfx/apngasm/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/apngasm/ChangeLog?rev=1.4&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/apngasm/ChangeLog?rev=1.4&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/apngasm/ChangeLog?r1=1.3&r2=1.4
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-gfx/apngasm/ChangeLog,v
20 retrieving revision 1.3
21 retrieving revision 1.4
22 diff -u -r1.3 -r1.4
23 --- ChangeLog 21 Sep 2011 04:26:24 -0000 1.3
24 +++ ChangeLog 11 Jan 2012 23:13:07 -0000 1.4
25 @@ -1,6 +1,11 @@
26 # ChangeLog for media-gfx/apngasm
27 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/apngasm/ChangeLog,v 1.3 2011/09/21 04:26:24 radhermit Exp $
29 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/apngasm/ChangeLog,v 1.4 2012/01/11 23:13:07 radhermit Exp $
31 +
32 +*apngasm-2.5 (11 Jan 2012)
33 +
34 + 11 Jan 2012; Tim Harder <radhermit@g.o> +apngasm-2.5.ebuild:
35 + Version bump.
36
37 *apngasm-2.4 (21 Sep 2011)
38
39
40
41
42 1.1 media-gfx/apngasm/apngasm-2.5.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/apngasm/apngasm-2.5.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/apngasm/apngasm-2.5.ebuild?rev=1.1&content-type=text/plain
46
47 Index: apngasm-2.5.ebuild
48 ===================================================================
49 # Copyright 1999-2012 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/media-gfx/apngasm/apngasm-2.5.ebuild,v 1.1 2012/01/11 23:13:07 radhermit Exp $
52
53 EAPI="4"
54
55 inherit toolchain-funcs
56
57 DESCRIPTION="create an APNG from multiple PNG files"
58 HOMEPAGE="http://sourceforge.net/projects/apngasm/"
59 SRC_URI="mirror://sourceforge/${PN}/${PV}/${P}-src.zip"
60
61 LICENSE="LGPL-2.1"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE=""
65
66 RDEPEND="media-libs/libpng[apng]
67 sys-libs/zlib"
68 DEPEND="${RDEPEND}
69 dev-util/pkgconfig
70 app-arch/unzip"
71
72 S=${WORKDIR}
73
74 src_compile() {
75 emake CC="$(tc-getCC)" LDLIBS="$($(tc-getPKG_CONFIG) --libs libpng --libs zlib)" ${PN}
76 }
77
78 src_install() {
79 dobin ${PN}
80 dodoc readme.txt
81 }