Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-text/gv: ChangeLog gv-3.6.7.ebuild
Date: Sat, 27 Jun 2009 10:57:24
Message-Id: E1MKVb0-0008Kr-3k@stork.gentoo.org
1 patrick 09/06/27 10:57:22
2
3 Modified: ChangeLog
4 Added: gv-3.6.7.ebuild
5 Log:
6 Bump to 3.6.7. Fixes #274632
7 (Portage version: 2.2_rc33/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.78 app-text/gv/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/gv/ChangeLog?rev=1.78&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/gv/ChangeLog?rev=1.78&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/gv/ChangeLog?r1=1.77&r2=1.78
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-text/gv/ChangeLog,v
19 retrieving revision 1.77
20 retrieving revision 1.78
21 diff -u -r1.77 -r1.78
22 --- ChangeLog 4 Feb 2009 17:25:55 -0000 1.77
23 +++ ChangeLog 27 Jun 2009 10:57:22 -0000 1.78
24 @@ -1,6 +1,11 @@
25 # ChangeLog for app-text/gv
26 -# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-text/gv/ChangeLog,v 1.77 2009/02/04 17:25:55 patrick Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/app-text/gv/ChangeLog,v 1.78 2009/06/27 10:57:22 patrick Exp $
30 +
31 +*gv-3.6.7 (27 Jun 2009)
32 +
33 + 27 Jun 2009; Patrick Lauer <patrick@g.o> +gv-3.6.7.ebuild:
34 + Bump to 3.6.7. Fixes #274632
35
36 *gv-3.6.6 (04 Feb 2009)
37
38
39
40
41 1.1 app-text/gv/gv-3.6.7.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/gv/gv-3.6.7.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/gv/gv-3.6.7.ebuild?rev=1.1&content-type=text/plain
45
46 Index: gv-3.6.7.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-text/gv/gv-3.6.7.ebuild,v 1.1 2009/06/27 10:57:22 patrick Exp $
51
52 inherit autotools eutils
53
54 DESCRIPTION="gv is used to view PostScript and PDF documents using Ghostscript"
55 HOMEPAGE="http://www.gnu.org/software/gv/"
56 SRC_URI="mirror://gnu/gv/${P}.tar.gz"
57
58 LICENSE="GPL-2"
59 SLOT="0"
60 KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86"
61 IUSE=""
62
63 DEPEND="x11-libs/libICE
64 x11-libs/libSM
65 x11-libs/libX11
66 x11-libs/libXext
67 x11-libs/libXmu
68 x11-libs/libXpm
69 x11-libs/Xaw3d
70 virtual/ghostscript
71 x11-libs/libXt"
72
73 src_unpack() {
74 unpack ${A}
75 cd "${S}"
76 epatch "${FILESDIR}"/gv-3.6.1-a0.patch
77
78 # Make font render nicely even with gs-8, bug 135354
79 sed -i \
80 -e "s:-dGraphicsAlphaBits=2:\0 -dAlignToPixels=0:" \
81 src/Makefile.am || die "sed failed."
82
83 eautoreconf
84 }
85
86 src_compile() {
87 econf --disable-dependency-tracking \
88 --enable-scrollbar-code || die "econf failed."
89 emake || die "emake failed."
90 }
91
92 src_install() {
93 emake DESTDIR="${D}" install || die "emake install failed."
94 doicon src/gv_icon.xbm
95 make_desktop_entry gv "GhostView" /usr/share/pixmaps/gv_icon.xbm "Graphics;Viewer;"
96 dodoc AUTHORS ChangeLog README
97 }