Gentoo Archives: gentoo-commits

From: "Tristan Heaven (nyhm)" <nyhm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-gfx/optipng: ChangeLog optipng-0.6.1.ebuild
Date: Sun, 24 Aug 2008 14:03:37
Message-Id: E1KXGBo-0006qc-V8@stork.gentoo.org
1 nyhm 08/08/24 14:03:32
2
3 Modified: ChangeLog
4 Added: optipng-0.6.1.ebuild
5 Log:
6 Version bump, bug #232577
7 (Portage version: 2.2_rc8/cvs/Linux 2.6.26.3 x86_64)
8
9 Revision Changes Path
10 1.40 media-gfx/optipng/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/optipng/ChangeLog?rev=1.40&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/optipng/ChangeLog?rev=1.40&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/optipng/ChangeLog?r1=1.39&r2=1.40
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-gfx/optipng/ChangeLog,v
19 retrieving revision 1.39
20 retrieving revision 1.40
21 diff -u -r1.39 -r1.40
22 --- ChangeLog 17 Feb 2008 13:05:03 -0000 1.39
23 +++ ChangeLog 24 Aug 2008 14:03:32 -0000 1.40
24 @@ -1,6 +1,11 @@
25 # ChangeLog for media-gfx/optipng
26 # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/optipng/ChangeLog,v 1.39 2008/02/17 13:05:03 opfer Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/optipng/ChangeLog,v 1.40 2008/08/24 14:03:32 nyhm Exp $
29 +
30 +*optipng-0.6.1 (24 Aug 2008)
31 +
32 + 24 Aug 2008; Tristan Heaven <nyhm@g.o> +optipng-0.6.1.ebuild:
33 + Version bump, bug #232577
34
35 17 Feb 2008; Christian Faulhammer <opfer@g.o> optipng-0.5.5.ebuild:
36 stable amd64, bug 209941
37
38
39
40 1.1 media-gfx/optipng/optipng-0.6.1.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/optipng/optipng-0.6.1.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/optipng/optipng-0.6.1.ebuild?rev=1.1&content-type=text/plain
44
45 Index: optipng-0.6.1.ebuild
46 ===================================================================
47 # Copyright 1999-2008 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/media-gfx/optipng/optipng-0.6.1.ebuild,v 1.1 2008/08/24 14:03:32 nyhm Exp $
50
51 DESCRIPTION="Compress PNG files without affecting image quality"
52 HOMEPAGE="http://optipng.sourceforge.net/"
53 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
54
55 LICENSE="ZLIB"
56 SLOT="0"
57 KEYWORDS="~alpha ~amd64 ~ppc ~x86"
58 IUSE=""
59
60 src_unpack() {
61 unpack ${A}
62 cd "${S}"
63 sed -i \
64 -e "/^C/s: -O2.*: ${CFLAGS} -Wall:" \
65 -e "/^LD/s: -s$: ${LDFLAGS}:" \
66 src/scripts/gcc.mak \
67 lib/libpng/scripts/makefile.gcc \
68 lib/pngxtern/scripts/gcc.mak \
69 || die "sed failed"
70 }
71
72 src_compile() {
73 emake -C src -f scripts/gcc.mak || die "emake failed"
74 }
75
76 src_install() {
77 dobin src/optipng || die "dobin failed"
78 dodoc README.txt doc/*.txt
79 dohtml doc/*.html
80 doman man/optipng.1
81 }