Gentoo Archives: gentoo-commits

From: "Gilles Dartiguelongue (eva)" <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-text/evince: ChangeLog evince-2.24.1.ebuild
Date: Wed, 19 Nov 2008 23:52:06
Message-Id: E1L2wq3-0005DC-G6@stork.gentoo.org
1 eva 08/11/19 23:52:03
2
3 Modified: ChangeLog
4 Added: evince-2.24.1.ebuild
5 Log:
6 Bump to 2.24.1. Bug fixes and translation updates.
7 (Portage version: 2.2_rc14/cvs/Linux 2.6.24-gentoo-r8-mactel x86_64)
8
9 Revision Changes Path
10 1.157 app-text/evince/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/evince/ChangeLog?rev=1.157&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/evince/ChangeLog?rev=1.157&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/evince/ChangeLog?r1=1.156&r2=1.157
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-text/evince/ChangeLog,v
19 retrieving revision 1.156
20 retrieving revision 1.157
21 diff -u -r1.156 -r1.157
22 --- ChangeLog 13 Nov 2008 19:27:19 -0000 1.156
23 +++ ChangeLog 19 Nov 2008 23:52:03 -0000 1.157
24 @@ -1,6 +1,11 @@
25 # ChangeLog for app-text/evince
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-text/evince/ChangeLog,v 1.156 2008/11/13 19:27:19 ranger Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-text/evince/ChangeLog,v 1.157 2008/11/19 23:52:03 eva Exp $
29 +
30 +*evince-2.24.1 (20 Nov 2008)
31 +
32 + 20 Nov 2008; Gilles Dartiguelongue <eva@g.o> +evince-2.24.1.ebuild:
33 + Bump to 2.24.1. Bug fixes and translation updates.
34
35 13 Nov 2008; Brent Baude <ranger@g.o> evince-2.22.2-r1.ebuild:
36 Marking evince-2.22.2-r1 ppc64 stable for bug 236971
37
38
39
40 1.1 app-text/evince/evince-2.24.1.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/evince/evince-2.24.1.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/evince/evince-2.24.1.ebuild?rev=1.1&content-type=text/plain
44
45 Index: evince-2.24.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/app-text/evince/evince-2.24.1.ebuild,v 1.1 2008/11/19 23:52:03 eva Exp $
50
51 inherit eutils gnome2
52
53 DESCRIPTION="Simple document viewer for GNOME"
54 HOMEPAGE="http://www.gnome.org/projects/evince/"
55
56 LICENSE="GPL-2"
57 SLOT="0"
58 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
59 IUSE="dbus debug djvu doc dvi gnome-keyring nautilus t1lib tiff"
60
61 RDEPEND="
62 dbus? ( >=dev-libs/dbus-glib-0.71 )
63 >=x11-libs/gtk+-2.10
64 >=dev-libs/glib-2.15.6
65 gnome-keyring? ( >=gnome-base/gnome-keyring-2.20.1 )
66 >=x11-themes/gnome-icon-theme-2.17.1
67 >=dev-libs/libxml2-2.5
68 >=gnome-base/libglade-2
69 >=gnome-base/gconf-2
70 nautilus? ( >=gnome-base/nautilus-2.10 )
71 >=app-text/poppler-bindings-0.8
72 dvi? (
73 virtual/tex-base
74 t1lib? ( >=media-libs/t1lib-5.0.0 )
75 )
76 tiff? ( >=media-libs/tiff-3.6 )
77 djvu? ( >=app-text/djvu-3.5.17 )
78 >=app-text/libspectre-0.2.0"
79 DEPEND="${RDEPEND}
80 app-text/scrollkeeper
81 >=app-text/gnome-doc-utils-0.3.2
82 ~app-text/docbook-xml-dtd-4.1.2
83 >=dev-util/pkgconfig-0.9
84 >=dev-util/intltool-0.35
85 doc? ( dev-util/gtk-doc )"
86
87 DOCS="AUTHORS ChangeLog NEWS README TODO"
88 ELTCONF="--portage"
89 RESTRICT="test"
90
91 pkg_setup() {
92 G2CONF="${G2CONF}
93 --disable-scrollkeeper
94 --enable-comics
95 --enable-impress
96 --enable-thumbnailer
97 $(use_enable dbus)
98 $(use_enable djvu)
99 $(use_enable dvi)
100 $(use_with gnome-keyring keyring)
101 $(use_enable t1lib)
102 $(use_enable tiff)
103 $(use_enable nautilus)"
104
105 if ! built_with_use app-text/poppler-bindings gtk cairo; then
106 eerror "Please re-emerge app-text/poppler-bindings with the gtk and cairo USE flag set"
107 die "poppler-bindings needs gtk and cairo flags set"
108 fi
109 }
110
111 src_unpack() {
112 gnome2_src_unpack
113
114 # Fix .desktop file so menu item shows up
115 epatch "${FILESDIR}"/${PN}-0.7.1-display-menu.patch
116 }