Magellan Linux

Contents of /trunk/extras/webkitgtk/webkitgtk-2.4.9-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 26835 - (show annotations) (download)
Tue Jul 28 09:45:32 2015 UTC (8 years, 10 months ago) by niro
File size: 1166 byte(s)
auto added: ver bump to 2.4.9-r1
1 # $Id$
2
3 PNAME="webkitgtk"
4 PVER="2.4.9"
5 PBUILD="r1"
6
7 PCAT="net-www"
8
9 DESCRIPTION="GTK+ Web content engine library."
10 HOMEPAGE="http://webkitgtk.org/"
11
12 DEPEND=">= x11-libs/libXt-1.1
13 >= dev-libs/libxslt-1.1.28
14 >= dev-db/sqlite-3.8
15 >= net-libs/libsoup-2.50
16 >= virtual/opengl
17 >= media-libs/libwebp-0.4
18 >= media-libs/harfbuzz-icu-0.9
19 >= media-libs/gstreamer1.0-plugins-base-1.4
20 >= x11-libs/gtk2+-2.24
21 >= app-crypt/libsecret-0.18
22 >= app-text/enchant-1.6"
23
24 SDEPEND=">= dev-util/gperf-3
25 >= dev-lang/python-2.7
26 >= dev-lang/ruby-2.2
27 >= dev-libs/gobject-introspection-1.44"
28
29 SRCFILE="${PNAME}-${PVER}.tar.xz"
30 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
31
32 sminclude mbuild
33
34 SRC_URI=(
35 http://webkitgtk.org/releases/${SRCFILE}
36 mirror://${PNAME}/${SRCFILE}
37 )
38
39 UP2DATE="updatecmd http://webkitgtk.org/releases/ | grep ${PNAME} | highesttarball xz"
40
41 src_compile()
42 {
43 cd ${SRCDIR}
44
45 mconfigure \
46 --libexecdir=/usr/$(mlibdir)/${PNAME} \
47 --enable-introspection \
48 --disable-webkit2 \
49 --disable-geolocation \
50 --enable-video \
51 --enable-web-audio \
52 --enable-credential-storage \
53 --enable-spellcheck \
54 --disable-gtk-doc \
55 --with-gtk=2.0 \
56 || die
57
58 mmake || die
59 }