1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/evince/evince-2.32.0-r4.ebuild,v 1.13 2012/08/23 16:01:12 tetromino Exp $
EAPI="4"
GCONF_DEBUG="yes"
GNOME2_LA_PUNT="yes"
GNOME_TARBALL_SUFFIX="bz2"
inherit eutils gnome2 autotools
DESCRIPTION="Simple document viewer for GNOME"
HOMEPAGE="http://projects.gnome.org/evince/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm ia64 ppc ppc64 sparc x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x64-solaris"
IUSE="dbus debug djvu dvi gnome gnome-keyring +introspection nautilus +postscript t1lib tiff"
# Since 2.26.2, can handle poppler without cairo support. Make it optional ?
# not mature enough
RDEPEND="
>=dev-libs/glib-2.25.11:2
>=dev-libs/libxml2-2.5:2
>=x11-libs/gtk+-2.21.5:2[introspection?]
>=x11-libs/libSM-1
|| (
>=x11-themes/gnome-icon-theme-2.17.1
>=x11-themes/hicolor-icon-theme-0.10 )
>=x11-libs/cairo-1.9.10
>=app-text/poppler-0.14[cairo]
djvu? ( >=app-text/djvu-3.5.17 )
dvi? (
virtual/tex-base
t1lib? ( >=media-libs/t1lib-5.0.0 ) )
gnome? ( >=gnome-base/gconf-2:2[introspection?] )
gnome-keyring? ( >=gnome-base/gnome-keyring-2.22.0 )
introspection? ( >=dev-libs/gobject-introspection-0.6 )
nautilus? ( >=gnome-base/nautilus-2.10[introspection?] )
postscript? ( >=app-text/libspectre-0.2.0 )
tiff? ( >=media-libs/tiff-3.6:0 )
"
DEPEND="${RDEPEND}
app-text/scrollkeeper
>=app-text/gnome-doc-utils-0.3.2
~app-text/docbook-xml-dtd-4.1.2
virtual/pkgconfig
sys-devel/gettext
>=dev-util/intltool-0.35"
ELTCONF="--portage"
# Needs dogtail and pyspi from http://fedorahosted.org/dogtail/
# Releases: http://people.redhat.com/zcerza/dogtail/releases/
RESTRICT="test"
pkg_setup() {
# Passing --disable-help would drop offline help, that would be inconsistent
# with helps of the most of Gnome apps that doesn't require network for that.
G2CONF="${G2CONF}
--disable-scrollkeeper
--disable-static
--disable-tests
--enable-pdf
--enable-comics
--enable-impress
--enable-thumbnailer
--with-smclient=xsmp
--with-platform=gnome
--with-gtk=2.0
--enable-help
$(use_enable dbus)
$(use_enable djvu)
$(use_enable dvi)
$(use_with gnome gconf)
$(use_with gnome-keyring keyring)
$(use_enable introspection)
$(use_enable nautilus)
$(use_enable postscript ps)
$(use_enable t1lib)
$(use_enable tiff)"
DOCS="AUTHORS ChangeLog NEWS README TODO"
}
src_prepare() {
# Check for NULL in synctex_backward_search preventing segfault, upstream bug #630845
epatch "${FILESDIR}"/${P}-libdocument-segfault.patch
# Fix multiple security issues with dvi backend, bug #350681
epatch "${FILESDIR}"/${P}-dvi-CVEs.patch
# Fix problem with some pk fonts, upstream bug #639746
epatch "${FILESDIR}"/${P}-pk-fonts.patch
# Fix libview crash, upstream bug #630999
epatch "${FILESDIR}"/${P}-libview-crash.patch
# Fix another security issue in the dvi-backend
epatch "${FILESDIR}"/${P}-dvi-security.patch
# Update poppler api
epatch "${FILESDIR}"/${P}-update-poppler.patch
# Stop the GtkSpinner when the loading window is hidden, upstream bug #637390
epatch "${FILESDIR}"/${P}-stop-spinner.patch
# Use a popup window instead of a toplevel for loading window, upstream bug #633475
epatch "${FILESDIR}"/${P}-use-popup.patch
# document: create_thumbnail_frame should return NULL when
epatch "${FILESDIR}"/${P}-create_thumbnail_frame-null.patch
# Fix .desktop categories, upstream bug #666346
epatch "${FILESDIR}"/${P}-desktop-categories.patch
# Fix intltoolize broken file, see upstream #577133
sed "s:'\^\$\$lang\$\$':\^\$\$lang\$\$:g" -i po/Makefile.in.in \
|| die "intltoolize sed failed"
# Do not depend on gnome-icon-theme, bug #326855
sed 's/gnome-icon-theme//' -i configure.ac configure || die "sed failed"
# Fix .desktop file so menu item shows up
epatch "${FILESDIR}"/${PN}-0.7.1-display-menu.patch
# gconf-2.m4 is needed for autoconf, bug #291339
if ! use gnome; then
cp "${FILESDIR}/gconf-2.m4" m4/ || die "Copying gconf-2.m4 failed!"
fi
# Fix underlinking with gold
epatch "${FILESDIR}"/${P}-gold.patch
intltoolize --force --copy --automake || die "intltoolize failed"
eautoreconf
gnome2_src_prepare
}
|