# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-php4/php-java-bridge/php-java-bridge-2.0.8.ebuild,v 1.14 2007/03/06 22:04:31 chtekk Exp $ PHP_EXT_NAME="java" PHP_EXT_INI="yes" PHP_EXT_ZENDEXT="no" inherit php-ext-source-r1 KEYWORDS="amd64 ppc ppc64 x86" DESCRIPTION="The PHP/Java bridge is a PHP module wich connects the PHP object system with the Java or ECMA 335 object system." HOMEPAGE="http://php-java-bridge.sourceforge.net/" SRC_URI="mirror://sourceforge/php-java-bridge/${PN}_${PV}.tar.bz2" LICENSE="PHP-3" SLOT="0" IUSE="" DEPEND="dev-java/java-config >=virtual/jdk-1.4.2" RDEPEND="${DEPEND}" need_php_by_category pkg_setup() { has_php # We need session support in PHP for this to compile require_php_with_use session # If the user has compiled the internal Java extension, he can't use this package if built_with_use =${PHP_PKG} java-internal ; then eerror eerror "You have built ${PHP_PKG} to use the internal Java extension." eerror "If you want to use the php-java-bridge package, you must rebuild" eerror "your PHP with the 'java-external' USE flag instead." eerror die "PHP built to use internal Java extension" fi } src_compile() { my_conf="--disable-servlet --with-java=`java-config --jdk-home`" php-ext-source-r1_src_compile } src_install() { php-ext-source-r1_src_install insinto "${EXT_DIR}" doins modules/JavaBridge.jar doins modules/RunJavaBridge doins modules/libnatcJavaBridge.a doins modules/libnatcJavaBridge.so dodoc-php ChangeLog README README.GNU_JAVA PROTOCOL.TXT }