Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 6945 - (show annotations) (download)
Mon Jul 27 15:29:47 2015 UTC (8 years, 10 months ago) by niro
File size: 1168 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-0.9
19 >= x11-libs/gtk2+-2.24"
20
21 SDEPEND=">= dev-util/gperf-3
22 >= dev-lang/python-2.7
23 >= dev-lang/ruby-2.2
24 >= media-libs/libpng-dev-1.5
25 >= media-libs/libjpeg-dev-8
26 >= media-libs/libtiff-dev-4
27 >= media-libs/giflib-dev-5
28 >= virtual/opengl-dev"
29
30 SRCFILE="${PNAME}-${PVER}.tar.xz"
31 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
32
33 sminclude mbuild
34
35 SRC_URI=(
36 http://webkitgtk.org/releases/${SRCFILE}
37 mirror://${PNAME}/${SRCFILE}
38 )
39
40 UP2DATE="updatecmd http://webkitgtk.org/releases/ | grep ${PNAME} | highesttarball xz"
41
42 src_compile()
43 {
44 cd ${SRCDIR}
45
46 mconfigure \
47 --libexecdir=/usr/$(mlibdir)/${PNAME} \
48 --disable-introspection \
49 --disable-webkit2 \
50 --disable-geolocation \
51 --disable-video \
52 --disable-web-audio \
53 --disable-credential-storage \
54 --disable-spellcheck \
55 --disable-gtk-doc \
56 --with-gtk=2.0 \
57 || die
58
59 mmake || die
60 }