Magellan Linux

Contents of /trunk/extras/evince/evince-3.16.1-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 26506 - (show annotations) (download)
Tue Jun 30 14:19:23 2015 UTC (8 years, 11 months ago) by niro
File size: 1397 byte(s)
-fixed a typo
1 # $Id$
2
3 PNAME="evince"
4 PVER="3.16.1"
5 PBUILD="r1"
6
7 PCAT="app-text"
8
9 DESCRIPTION="Gnome PDF viewer."
10 HOMEPAGE="http://www.gnome.org/"
11
12 DEPEND=">= dev-libs/glib2-2.44
13 >= dev-libs/dbus-glib-0.104
14 >= x11-libs/gtk3+-3.16
15 >= x11-libs/cairo-1.14
16 >= app-text/libspectre-0.2
17 >= app-text/poppler-glib-0.33
18 >= media-libs/libtiff-3.7.2
19 >= media-libs/t1lib-5.1
20 >= app-crypt/libsecret-0.18
21 >= dev-libs/gsettings-desktop-schemas-3.16
22 >= app-arch/libarchive-3.0.4
23 >= gnome-base/gvfs-1.24
24 >= x11-themes/hicolor-icon-theme-0.15"
25
26 SDEPEND=">= dev-util/intltool-0.50
27 >= dev-util/pkgconfig-0.25
28 >= sys-dev/autoconf-4
29 >= sys-dev/automake-3
30 >= dev-libs/gobject-introspection-1.44
31 >= app-text/docbook-xsl-stylesheets-1.78
32 >= virtual/sed"
33
34 SRCFILE="${PNAME}-${PVER}.tar.xz"
35
36 sminclude gnome2
37
38 UP2DATE="updatecmd_gnome ${PNAME}"
39
40 src_prepare()
41 {
42 munpack ${SRCFILE} || die
43 cd ${SRCDIR}
44
45 # remove hardcoded adwaita icon theme dep
46 sed -i 's/adwaita-icon-theme >= $ADWAITA_ICON_THEME_REQUIRED//g' configure || die
47 }
48
49 src_compile()
50 {
51 cd ${SRCDIR}
52
53 gn2_configure \
54 --disable-nautilus \
55 --disable-libgnome-desktop \
56 --disable-dvi \
57 --disable-djvu \
58 --enable-t1lib \
59 --enable-comics \
60 --enable-dbus \
61 --enable-tiff \
62 --enable-pdf \
63 --disable-xps \
64 --disable-scrollkeeper \
65 --enable-introspection \
66 --disable-schemas-compile \
67 --disable-browser-plugin \
68 || die
69
70 mmake || die
71 }