package/graphicsmagick: new package
GraphicsMagick is the swiss army knife of image processing. It provides a robust and efficient collection of tools and libraries which support reading, writing, and manipulating an image in over 89 major formats including important formats like DPX, GIF, JPEG, JPEG-2000, PNG, PDF, PNM, TIFF, and WebP. Signed-off-by: Grzegorz Blach <grzegorz@blach.pl> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
parent
acc1330d4a
commit
9eee7910eb
@ -1061,6 +1061,7 @@ N: Grzegorz Blach <grzegorz@blach.pl>
|
||||
F: fs/f2fs/
|
||||
F: package/bluez5_utils-headers/
|
||||
F: package/f2fs-tools/
|
||||
F: package/graphicsmagick/
|
||||
F: package/pigpio/
|
||||
F: package/python-aioblescan/
|
||||
F: package/python-bluezero/
|
||||
|
@ -309,6 +309,7 @@ comment "Graphic libraries"
|
||||
source "package/fbterm/Config.in"
|
||||
source "package/fbv/Config.in"
|
||||
source "package/freerdp/Config.in"
|
||||
source "package/graphicsmagick/Config.in"
|
||||
source "package/imagemagick/Config.in"
|
||||
source "package/linux-fusion/Config.in"
|
||||
source "package/lite/Config.in"
|
||||
|
17
package/graphicsmagick/Config.in
Normal file
17
package/graphicsmagick/Config.in
Normal file
@ -0,0 +1,17 @@
|
||||
config BR2_PACKAGE_GRAPHICSMAGICK
|
||||
bool "graphicsmagick"
|
||||
depends on BR2_USE_MMU # fork()
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS
|
||||
help
|
||||
GraphicsMagick is the swiss army knife of image processing.
|
||||
It provides a robust and efficient collection of tools
|
||||
and libraries which support reading, writing,
|
||||
and manipulating an image in over 89 major formats
|
||||
including important formats like DPX, GIF, JPEG, JPEG-2000,
|
||||
PNG, PDF, PNM, TIFF, and WebP.
|
||||
|
||||
http://www.graphicsmagick.org/
|
||||
|
||||
comment "graphicsmagick needs a toolchain w/ threads"
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_TOOLCHAIN_HAS_THREADS
|
3
package/graphicsmagick/graphicsmagick.hash
Normal file
3
package/graphicsmagick/graphicsmagick.hash
Normal file
@ -0,0 +1,3 @@
|
||||
# Locally computed:
|
||||
sha256 188a8d6108fea87a0208723e8d206ec1d4d7299022be8ce5d0a9720509250250 GraphicsMagick-1.3.35.tar.xz
|
||||
sha256 1d28851631892098e0bf8653fd4e89f3524184d136391b54c664e89251ca3a9a Copyright.txt
|
113
package/graphicsmagick/graphicsmagick.mk
Normal file
113
package/graphicsmagick/graphicsmagick.mk
Normal file
@ -0,0 +1,113 @@
|
||||
################################################################################
|
||||
#
|
||||
# graphicsmagick
|
||||
#
|
||||
################################################################################
|
||||
|
||||
GRAPHICSMAGICK_VERSION = 1.3.35
|
||||
GRAPHICSMAGICK_SOURCE = GraphicsMagick-$(GRAPHICSMAGICK_VERSION).tar.xz
|
||||
GRAPHICSMAGICK_SITE = https://downloads.sourceforge.net/project/graphicsmagick/graphicsmagick/$(GRAPHICSMAGICK_VERSION)
|
||||
GRAPHICSMAGICK_LICENSE = MIT
|
||||
GRAPHICSMAGICK_LICENSE_FILES = Copyright.txt
|
||||
|
||||
GRAPHICSMAGICK_INSTALL_STAGING = YES
|
||||
GRAPHICSMAGICK_CONFIG_SCRIPTS = GraphicsMagick-config GraphicsMagickWand-config
|
||||
|
||||
ifeq ($(BR2_INSTALL_LIBSTDCPP)$(BR2_USE_WCHAR),yy)
|
||||
GRAPHICSMAGICK_CONFIG_SCRIPTS += GraphicsMagick++-config
|
||||
endif
|
||||
|
||||
GRAPHICSMAGICK_CONF_OPTS = \
|
||||
--disable-openmp \
|
||||
--without-dps \
|
||||
--without-fpx \
|
||||
--without-jbig \
|
||||
--without-perl \
|
||||
--without-trio \
|
||||
--without-webp \
|
||||
--without-wmf \
|
||||
--without-x \
|
||||
--with-gs-font-dir=/usr/share/fonts/gs
|
||||
|
||||
GRAPHICSMAGICK_DEPENDENCIES = host-pkgconf
|
||||
|
||||
ifeq ($(BR2_PACKAGE_FREETYPE),y)
|
||||
GRAPHICSMAGICK_CONF_OPTS += --with-ttf
|
||||
GRAPHICSMAGICK_CONF_ENV += ac_cv_path_freetype_config=$(STAGING_DIR)/usr/bin/freetype-config
|
||||
GRAPHICSMAGICK_DEPENDENCIES += freetype
|
||||
else
|
||||
GRAPHICSMAGICK_CONF_OPTS += --without-ttf
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_JPEG),y)
|
||||
GRAPHICSMAGICK_CONF_OPTS += --with-jpeg
|
||||
GRAPHICSMAGICK_DEPENDENCIES += jpeg
|
||||
else
|
||||
GRAPHICSMAGICK_CONF_OPTS += --without-jpeg
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_OPENJPEG),y)
|
||||
GRAPHICSMAGICK_CONF_OPTS += --with-jp2
|
||||
GRAPHICSMAGICK_DEPENDENCIES += openjpeg
|
||||
else
|
||||
GRAPHICSMAGICK_CONF_OPTS += --without-jp2
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LCMS2),y)
|
||||
GRAPHICSMAGICK_CONF_OPTS += --with-lcms2
|
||||
GRAPHICSMAGICK_DEPENDENCIES += lcms2
|
||||
else
|
||||
GRAPHICSMAGICK_CONF_OPTS += --without-lcms2
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBPNG),y)
|
||||
GRAPHICSMAGICK_CONF_OPTS += --with-png
|
||||
GRAPHICSMAGICK_DEPENDENCIES += libpng
|
||||
else
|
||||
GRAPHICSMAGICK_CONF_OPTS += --without-png
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBXML2),y)
|
||||
GRAPHICSMAGICK_CONF_OPTS += --with-xml
|
||||
GRAPHICSMAGICK_CONF_ENV += ac_cv_path_xml2_config=$(STAGING_DIR)/usr/bin/xml2-config
|
||||
GRAPHICSMAGICK_DEPENDENCIES += libxml2
|
||||
else
|
||||
GRAPHICSMAGICK_CONF_OPTS += --without-xml
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_TIFF),y)
|
||||
GRAPHICSMAGICK_CONF_OPTS += --with-tiff
|
||||
GRAPHICSMAGICK_DEPENDENCIES += tiff
|
||||
else
|
||||
GRAPHICSMAGICK_CONF_OPTS += --without-tiff
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_XZ),y)
|
||||
GRAPHICSMAGICK_CONF_OPTS += --with-lzma
|
||||
GRAPHICSMAGICK_DEPENDENCIES += xz
|
||||
else
|
||||
GRAPHICSMAGICK_CONF_OPTS += --without-lzma
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_ZLIB),y)
|
||||
GRAPHICSMAGICK_CONF_OPTS += --with-zlib
|
||||
GRAPHICSMAGICK_DEPENDENCIES += zlib
|
||||
else
|
||||
GRAPHICSMAGICK_CONF_OPTS += --without-zlib
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_BZIP2),y)
|
||||
GRAPHICSMAGICK_CONF_OPTS += --with-bzlib
|
||||
GRAPHICSMAGICK_DEPENDENCIES += bzip2
|
||||
else
|
||||
GRAPHICSMAGICK_CONF_OPTS += --without-bzlib
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_ZSTD),y)
|
||||
GRAPHICSMAGICK_CONF_OPTS += --with-zstd
|
||||
GRAPHICSMAGICK_DEPENDENCIES += zstd
|
||||
else
|
||||
GRAPHICSMAGICK_CONF_OPTS += --without-zstd
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
Loading…
Reference in New Issue
Block a user