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.22.0.ebuild
Date: Thu, 27 Mar 2008 23:10:44
Message-Id: E1Jf1F3-0007mh-FC@stork.gentoo.org
1 eva 08/03/27 23:10:41
2
3 Modified: ChangeLog
4 Added: evince-2.22.0.ebuild
5 Log:
6 New version for GNOME 2.22. Uses GIO, lots of bug and crash fixes. Uses libspectre in place of ghostscript. gnome-keyring is now optional.
7 (Portage version: 2.1.4.4)
8
9 Revision Changes Path
10 1.136 app-text/evince/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/evince/ChangeLog?rev=1.136&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/evince/ChangeLog?rev=1.136&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/evince/ChangeLog?r1=1.135&r2=1.136
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-text/evince/ChangeLog,v
19 retrieving revision 1.135
20 retrieving revision 1.136
21 diff -u -r1.135 -r1.136
22 --- ChangeLog 4 Feb 2008 04:00:45 -0000 1.135
23 +++ ChangeLog 27 Mar 2008 23:10:40 -0000 1.136
24 @@ -1,6 +1,13 @@
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.135 2008/02/04 04:00:45 jer Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-text/evince/ChangeLog,v 1.136 2008/03/27 23:10:40 eva Exp $
29 +
30 +*evince-2.22.0 (27 Mar 2008)
31 +
32 + 27 Mar 2008; Gilles Dartiguelongue <eva@g.o>
33 + +files/evince-2.22.0-gtk-doc-die-die-die.patch, +evince-2.22.0.ebuild:
34 + New version for GNOME 2.22. Uses GIO, lots of bug and crash fixes. Uses
35 + libspectre in place of ghostscript. gnome-keyring is now optional.
36
37 04 Feb 2008; Jeroen Roovers <jer@g.o> evince-2.20.2.ebuild:
38 Stable for HPPA (bug #208366).
39
40
41
42 1.1 app-text/evince/evince-2.22.0.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/evince/evince-2.22.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/evince/evince-2.22.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: evince-2.22.0.ebuild
48 ===================================================================
49 # Copyright 1999-2008 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/app-text/evince/evince-2.22.0.ebuild,v 1.1 2008/03/27 23:10:40 eva Exp $
52
53 inherit eutils gnome2 autotools
54
55 DESCRIPTION="Simple document viewer for GNOME"
56 HOMEPAGE="http://www.gnome.org/projects/evince/"
57
58 LICENSE="GPL-2"
59 SLOT="0"
60 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
61 IUSE="dbus djvu doc dvi gnome keyring t1lib tiff"
62
63 RDEPEND="
64 dbus? ( >=dev-libs/dbus-glib-0.71 )
65 >=x11-libs/gtk+-2.10
66 >=dev-libs/glib-2.15.6
67 keyring? ( >=gnome-base/gnome-keyring-2.20.1 )
68 >=gnome-base/libgnomeui-2.14
69 >=gnome-base/libgnome-2.14
70 >=x11-themes/gnome-icon-theme-2.17.1
71 >=dev-libs/libxml2-2.5
72 >=gnome-base/libglade-2
73 >=gnome-base/gconf-2
74 gnome? ( >=gnome-base/nautilus-2.10 )
75 >=app-text/poppler-bindings-0.6
76 dvi? (
77 virtual/tetex
78 t1lib? ( >=media-libs/t1lib-5.0.0 )
79 )
80 tiff? ( >=media-libs/tiff-3.6 )
81 djvu? ( >=app-text/djvu-3.5.17 )
82 >=app-text/libspectre-0.2.0"
83 DEPEND="${RDEPEND}
84 app-text/scrollkeeper
85 >=app-text/gnome-doc-utils-0.3.2
86 >=dev-util/pkgconfig-0.9
87 >=sys-devel/automake-1.9
88 >=dev-util/intltool-0.35
89 doc? ( dev-util/gtk-doc )"
90
91 DOCS="AUTHORS ChangeLog NEWS README TODO"
92 ELTCONF="--portage"
93 RESTRICT="test"
94
95 pkg_setup() {
96 G2CONF="${G2CONF}
97 --disable-scrollkeeper
98 --enable-comics
99 --enable-impress
100 $(use_enable dbus)
101 $(use_enable djvu)
102 $(use_enable dvi)
103 $(use_with keyring)
104 $(use_enable t1lib)
105 $(use_enable tiff)
106 $(use_enable gnome nautilus)"
107
108 if ! built_with_use app-text/poppler-bindings gtk; then
109 einfo "Please re-emerge app-text/poppler-bindings with the gtk USE flag set"
110 die "poppler-bindings needs gtk flag set"
111 fi
112 }
113
114 src_unpack() {
115 gnome2_src_unpack
116
117 # Fix .desktop file so menu item shows up
118 epatch "${FILESDIR}"/${PN}-0.7.1-display-menu.patch
119
120 # Make dbus actually switchable
121 epatch "${FILESDIR}"/${PN}-0.6.1-dbus-switch.patch
122
123 use doc || epatch "${FILESDIR}/${PN}-2.22.0-gtk-doc-die-die-die.patch"
124
125 eautoreconf
126 }
127
128
129
130 --
131 gentoo-commits@l.g.o mailing list