Gentoo Archives: gentoo-commits

From: "Victor Ostorga (vostorga)" <vostorga@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-gfx/zgv: zgv-5.9.ebuild ChangeLog
Date: Mon, 28 Sep 2009 15:55:21
Message-Id: E1MsIZL-0007bJ-Ku@stork.gentoo.org
1 vostorga 09/09/28 15:55:19
2
3 Modified: zgv-5.9.ebuild ChangeLog
4 Log:
5 Fixing pre-stripped files bug #255870, Respecting CC variable, Respecting LDFLAGS, Fixing repoman warnings
6 (Portage version: 2.1.6.13/cvs/Linux i686)
7
8 Revision Changes Path
9 1.3 media-gfx/zgv/zgv-5.9.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/zgv/zgv-5.9.ebuild?rev=1.3&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/zgv/zgv-5.9.ebuild?rev=1.3&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/zgv/zgv-5.9.ebuild?r1=1.2&r2=1.3
14
15 Index: zgv-5.9.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/media-gfx/zgv/zgv-5.9.ebuild,v
18 retrieving revision 1.2
19 retrieving revision 1.3
20 diff -u -r1.2 -r1.3
21 --- zgv-5.9.ebuild 1 Jun 2006 01:02:18 -0000 1.2
22 +++ zgv-5.9.ebuild 28 Sep 2009 15:55:19 -0000 1.3
23 @@ -1,8 +1,8 @@
24 -# Copyright 1999-2006 Gentoo Foundation
25 +# Copyright 1999-2009 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/zgv/zgv-5.9.ebuild,v 1.2 2006/06/01 01:02:18 halcy0n Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/zgv/zgv-5.9.ebuild,v 1.3 2009/09/28 15:55:19 vostorga Exp $
29
30 -inherit eutils
31 +inherit eutils toolchain-funcs
32
33 DESCRIPTION="A svgalib console image viewer"
34 HOMEPAGE="http://www.svgalib.org/rus/zgv/"
35 @@ -19,31 +19,31 @@
36 >=media-libs/tiff-3.5.5
37 >=sys-libs/zlib-1.1.4
38 sys-apps/gawk"
39 +RDEPEND="${DEPEND}"
40
41 src_unpack() {
42 unpack ${A}
43 - cd ${S}
44 + cd "${S}"
45 sed -i "/^CFLAGS=/s:=.*:=${CFLAGS}:" config.mk
46 - sed -i "s:4755:0755:" src/Makefile
47 - sed -i -e 's:$(RM):echo:' src/Makefile
48 sed -i -e 's:$(RM):echo:' doc/Makefile
49 - epatch ${FILESDIR}/zgv-5.9-cmyk-yccl-fix.diff
50 + epatch "${FILESDIR}"/${P}-Makefile-QA.patch
51 + epatch "${FILESDIR}"/zgv-5.9-cmyk-yccl-fix.diff
52 }
53
54 src_compile() {
55 - emake || die
56 + emake CC="$(tc-getCC)" || die
57 }
58
59 src_install() {
60 dodir /usr/bin /usr/share/info /usr/share/man/man1
61 - make PREFIX=${D}/usr \
62 - INFODIR=${D}/usr/share/info \
63 - MANDIR=${D}/usr/share/man/man1 \
64 + make PREFIX="${D}"/usr \
65 + INFODIR="${D}"/usr/share/info \
66 + MANDIR="${D}"/usr/share/man/man1 \
67 install || die
68 - dodoc AUTHORS COPYING ChangeLog INSTALL NEWS README* SECURITY TODO
69 + dodoc AUTHORS ChangeLog INSTALL NEWS README* SECURITY TODO
70
71 # Fix info files
72 - cd ${D}/usr/share/info
73 + cd "${D}"/usr/share/info
74 rm dir*
75 mv zgv zgv.info
76 for i in 1 2 3 4 ; do
77
78
79
80 1.17 media-gfx/zgv/ChangeLog
81
82 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/zgv/ChangeLog?rev=1.17&view=markup
83 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/zgv/ChangeLog?rev=1.17&content-type=text/plain
84 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/zgv/ChangeLog?r1=1.16&r2=1.17
85
86 Index: ChangeLog
87 ===================================================================
88 RCS file: /var/cvsroot/gentoo-x86/media-gfx/zgv/ChangeLog,v
89 retrieving revision 1.16
90 retrieving revision 1.17
91 diff -u -r1.16 -r1.17
92 --- ChangeLog 20 Jun 2009 23:57:58 -0000 1.16
93 +++ ChangeLog 28 Sep 2009 15:55:19 -0000 1.17
94 @@ -1,6 +1,11 @@
95 # ChangeLog for media-gfx/zgv
96 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
97 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/zgv/ChangeLog,v 1.16 2009/06/20 23:57:58 flameeyes Exp $
98 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/zgv/ChangeLog,v 1.17 2009/09/28 15:55:19 vostorga Exp $
99 +
100 + 28 Sep 2009; VĂ­ctor Ostorga <vostorga@g.o> zgv-5.9.ebuild,
101 + +files/zgv-5.9-Makefile-QA.patch:
102 + Fixing pre-stripped files bug #255870, Respecting CC variable, Respecting
103 + LDFLAGS, Fixing repoman warnings
104
105 20 Jun 2009; Diego E. Pettenò <flameeyes@g.o>
106 -files/zgv-5.7-gcc3.patch, -files/zgv-5.8-integer-overflow-fix.diff: