Move all to deprecated folder.

This commit is contained in:
2016-11-16 21:57:57 +01:00
parent 01738a7684
commit 05de7d6c04
9777 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
config BR2_PACKAGE_PHP_IMAGICK
bool "php-imagick"
depends on BR2_PACKAGE_PHP
depends on BR2_USE_MMU # imagemagick
depends on BR2_TOOLCHAIN_HAS_THREADS # imagemagick
select BR2_PACKAGE_IMAGEMAGICK
help
PHP wrapper to the ImageMagick library.
http://pecl.php.net/package/imagick
comment "php-imagemagick needs a toolchain w/ threads"
depends on BR2_USE_MMU
depends on BR2_PACKAGE_PHP
depends on !BR2_TOOLCHAIN_HAS_THREADS

View File

@@ -0,0 +1,2 @@
# Locally calculated
sha256 528769ac304a0bbe9a248811325042188c9d16e06de16f111fee317c85a36c93 imagick-3.1.2.tgz

View File

@@ -0,0 +1,27 @@
################################################################################
#
# php-imagick
#
################################################################################
PHP_IMAGICK_VERSION = 3.1.2
PHP_IMAGICK_SOURCE = imagick-$(PHP_IMAGICK_VERSION).tgz
# pecl.php.net returns html with db connect failed
PHP_IMAGICK_SITE = http://sources.buildroot.net
PHP_IMAGICK_CONF_OPTS = --with-php-config=$(STAGING_DIR)/usr/bin/php-config \
--with-imagick=$(STAGING_DIR)/usr
# phpize does the autoconf magic
PHP_IMAGICK_DEPENDENCIES = imagemagick php host-autoconf
PHP_IMAGICK_LICENSE = PHP
PHP_IMAGICK_LICENSE_FILES = LICENSE
define PHP_IMAGICK_PHPIZE
(cd $(@D); \
PHP_AUTOCONF=$(HOST_DIR)/usr/bin/autoconf \
PHP_AUTOHEADER=$(HOST_DIR)/usr/bin/autoheader \
$(STAGING_DIR)/usr/bin/phpize)
endef
PHP_IMAGICK_PRE_CONFIGURE_HOOKS += PHP_IMAGICK_PHPIZE
$(eval $(autotools-package))