Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 6998 - (show annotations) (download)
Fri Jul 31 08:12:59 2015 UTC (8 years, 9 months ago) by niro
File size: 1433 byte(s)
-rebuild with libsecret support
1 # $Id$
2
3 PNAME="webkitgtk"
4 PVER="2.4.9"
5 PBUILD="r3"
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 >= app-crypt/libsecret-0.18
20 >= x11-libs/gtk2+-2.24"
21
22 ALX_DEV_DEPEND=">= x11-libs/libXt-dev-1.1
23 >= dev-libs/libxslt-dev-1.1.28
24 >= dev-db/sqlite-dev-3.8
25 >= net-libs/libsoup-dev-2.50
26 >= virtual/opengl-dev
27 >= media-libs/libwebp-dev-0.4
28 >= media-libs/harfbuzz-0.9
29 >= app-crypt/libsecret-dev-0.18
30 >= x11-libs/gtk2+-dev-2.24"
31
32 SDEPEND=">= dev-util/gperf-3
33 >= dev-lang/python-2.7
34 >= dev-lang/ruby-2.2
35 ${ALX_DEV_DEPEND}"
36
37 SRCFILE="${PNAME}-${PVER}.tar.xz"
38 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
39
40 ALX_PKG_KEEP="usr/$(mlibdir)/*.so.* usr/share/webkitgtk-1.0 usr/bin"
41 sminclude mbuild alx-split
42
43 SRC_URI=(
44 http://webkitgtk.org/releases/${SRCFILE}
45 mirror://${PNAME}/${SRCFILE}
46 )
47
48 UP2DATE="updatecmd http://webkitgtk.org/releases/ | grep ${PNAME} | highesttarball xz"
49
50 src_compile()
51 {
52 cd ${SRCDIR}
53
54 mconfigure \
55 --libexecdir=/usr/$(mlibdir)/${PNAME} \
56 --disable-introspection \
57 --disable-webkit2 \
58 --disable-geolocation \
59 --disable-video \
60 --disable-web-audio \
61 --enable-credential-storage \
62 --disable-spellcheck \
63 --disable-gtk-doc \
64 --with-gtk=2.0 \
65 || die
66
67 mmake || die
68 }