Commit 2aada709 authored by Gustavo Zacarias's avatar Gustavo Zacarias Committed by Thomas Petazzoni
Browse files

php-geoip: new package

parent b64a06d7
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -430,6 +430,7 @@ endif
if BR2_PACKAGE_PHP
if !BR2_PREFER_STATIC_LIB
menu "External php extensions"
	source "package/php-geoip/Config.in"
	source "package/php-gnupg/Config.in"
	source "package/php-imagick/Config.in"
	source "package/php-ssh2/Config.in"
+8 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_PHP_GEOIP
	bool "php-geoip"
	depends on BR2_PACKAGE_PHP
	select BR2_PACKAGE_GEOIP
	help
	  PHP GeoIP-based IP address mapper to geographical places.

	  http://pecl.php.net/package/geoip
+26 −0
Original line number Diff line number Diff line
################################################################################
#
# php-geoip
#
################################################################################

PHP_GEOIP_VERSION = 1.1.0
PHP_GEOIP_SOURCE = geoip-$(PHP_GEOIP_VERSION).tgz
PHP_GEOIP_SITE = http://pecl.php.net/get
PHP_GEOIP_CONF_OPT = --with-php-config=$(STAGING_DIR)/usr/bin/php-config \
	--with-geoip=$(STAGING_DIR)/usr
# phpize does the autoconf magic
PHP_GEOIP_DEPENDENCIES = geoip php host-autoconf
PHP_GEOIP_LICENSE = PHP
PHP_GEOIP_LICENSE_FILES = LICENSE

define PHP_GEOIP_PHPIZE
	(cd $(@D); \
		PHP_AUTOCONF=$(HOST_DIR)/usr/bin/autoconf \
		PHP_AUTOHEADER=$(HOST_DIR)/usr/bin/autoheader \
		$(STAGING_DIR)/usr/bin/phpize)
endef

PHP_GEOIP_PRE_CONFIGURE_HOOKS += PHP_GEOIP_PHPIZE

$(eval $(autotools-package))