blob: 99b0edb02656519d56db70764bd3b70c1f715add (
plain)
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-php5/php-gtk/php-gtk-2.0.0_alpha.ebuild,v 1.5 2007/03/26 19:22:19 armin76 Exp $
PHP_EXT_NAME="php_gtk2"
PHP_EXT_INI="yes"
PHP_EXT_ZENDEXT="no"
inherit php-ext-source-r1
KEYWORDS="~amd64 ~x86"
DESCRIPTION="PHP 5 bindings for the Gtk+ 2 library."
HOMEPAGE="http://gtk.php.net/"
SRC_URI="http://gtk.php.net/distributions/${PN}-${PV/_alpha/}alpha.tar.gz"
LICENSE="PHP"
SLOT="0"
IUSE="debug mozembed nolibglade sourceview"
RDEPEND=">=dev-lang/php-5.1.2
>=x11-libs/gtk+-2.6.0
>=dev-libs/glib-2.6.0
>=x11-libs/pango-1.8.0
>=dev-libs/atk-1.6.0
!nolibglade? ( >=gnome-base/libglade-2.5.0 )
mozembed? ( >=www-client/mozilla-firefox-1.5.0 )
sourceview? ( >=x11-libs/gtksourceview-1.6.0 )"
DEPEND="${RDEPEND}
>=dev-util/pkgconfig-0.9"
S="${WORKDIR}/${PN}-${PV/_alpha/}alpha"
pkg_setup() {
has_php
require_php_cli
if use debug ; then
require_php_with_use cli pcre debug
else
if has_debug ; then
# PHP has debug enabled, but PHP-GTK doesn't!
eerror "Please enable the 'debug' USE flag in"
eerror "PHP-GTK, this is needed to work with"
eerror "the debug version of PHP."
die "Enable 'debug' USE flag"
fi
require_php_with_use cli pcre
fi
}
src_unpack() {
unpack ${A}
cd "${S}"
# Allow building against firefox
epatch "${FILESDIR}/gtkmozembed.patch"
}
src_compile() {
# Can't use php-ext-source-r1_src_compile,
# because PHP-GTK 2 uses buildconf and not autoconf
./buildconf
if use nolibglade ; then
GLCONF=" --disable-libglade"
else
GLCONF=""
fi
econf \
$(use_enable debug) \
$(use_enable mozembed) \
$(use_enable sourceview) \
${GLCONF} \
|| die "econf failed"
emake || die "emake failed"
}
src_install() {
# Can't use php-ext-source-r1_src_install
# because it looks for {ext}-default.so,
# that too in the wrong location
insinto "${EXT_DIR}"
newins "${S}/modules/${PHP_EXT_NAME}.so" "${PHP_EXT_NAME}.so"
dodoc-php AUTHORS ChangeLog INSTALL NEWS README README.KNOWN-ISSUES TODO2
}
|