Gentoo Archives: gentoo-commits

From: "Samuli Suominen (drac)" <drac@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-gfx/pngcrush: ChangeLog pngcrush-1.6.7.ebuild
Date: Wed, 30 Jul 2008 20:07:43
Message-Id: E1KOHxU-0005pP-HK@stork.gentoo.org
1 drac 08/07/30 20:07:40
2
3 Modified: ChangeLog
4 Added: pngcrush-1.6.7.ebuild
5 Log:
6 version bump
7 (Portage version: 2.2_rc3/cvs/Linux 2.6.26-rc3 x86_64)
8
9 Revision Changes Path
10 1.32 media-gfx/pngcrush/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/pngcrush/ChangeLog?rev=1.32&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/pngcrush/ChangeLog?rev=1.32&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/pngcrush/ChangeLog?r1=1.31&r2=1.32
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-gfx/pngcrush/ChangeLog,v
19 retrieving revision 1.31
20 retrieving revision 1.32
21 diff -u -r1.31 -r1.32
22 --- ChangeLog 12 Jun 2008 08:37:47 -0000 1.31
23 +++ ChangeLog 30 Jul 2008 20:07:40 -0000 1.32
24 @@ -1,6 +1,14 @@
25 # ChangeLog for media-gfx/pngcrush
26 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/pngcrush/ChangeLog,v 1.31 2008/06/12 08:37:47 armin76 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/pngcrush/ChangeLog,v 1.32 2008/07/30 20:07:40 drac Exp $
29 +
30 +*pngcrush-1.6.7 (30 Jul 2008)
31 +
32 + 30 Jul 2008; Samuli Suominen <drac@g.o>
33 + +files/pngcrush-1.6.7-modified_debian_patchset_1.patch,
34 + +pngcrush-1.6.7.ebuild:
35 + Version bump for bug 233099 to fix GAS versioning, thanks to Martin Väth
36 + for reporting.
37
38 12 Jun 2008; Raúl Porcel <armin76@g.o> pngcrush-1.6.4-r1.ebuild:
39 Add ~alpha wrt #225987
40
41
42
43 1.1 media-gfx/pngcrush/pngcrush-1.6.7.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/pngcrush/pngcrush-1.6.7.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/pngcrush/pngcrush-1.6.7.ebuild?rev=1.1&content-type=text/plain
47
48 Index: pngcrush-1.6.7.ebuild
49 ===================================================================
50 # Copyright 1999-2008 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/media-gfx/pngcrush/pngcrush-1.6.7.ebuild,v 1.1 2008/07/30 20:07:40 drac Exp $
53
54 inherit eutils toolchain-funcs
55
56 DESCRIPTION="Portable Network Graphics (PNG) optimizing utility"
57 HOMEPAGE="http://pmt.sourceforge.net/pngcrush"
58 SRC_URI="mirror://debian/pool/main/p/${PN}/${PN}_${PV}.orig.tar.gz"
59
60 LICENSE="as-is"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~ppc ~x86"
63 IUSE=""
64
65 DEPEND=">=media-libs/libpng-1.2.26-r1"
66
67 S=${WORKDIR}/${P}-nolib
68
69 src_unpack() {
70 unpack ${A}
71 cd "${S}"
72 # Use system libpng, fix various bugs and sanitize Makefile
73 epatch "${FILESDIR}"/${P}-modified_debian_patchset_1.patch
74 }
75
76 src_compile() {
77 tc-export CC
78 emake || die "emake failed."
79 }
80
81 src_install() {
82 dobin ${PN} || die "dobin failed."
83 dodoc *.txt
84 }