[packages] Move libtiff c++ bindings into it's own package
git-svn-id: svn://svn.openwrt.org/openwrt/packages@19419 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
848118a369
commit
b105778c0b
@ -15,12 +15,14 @@ PKG_RELEASE:=1
|
|||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||||
PKG_SOURCE_URL:=http://download.osgeo.org/libtiff
|
PKG_SOURCE_URL:=http://download.osgeo.org/libtiff
|
||||||
PKG_MD5SUM:=93e56e421679c591de7552db13384cb8
|
PKG_MD5SUM:=93e56e421679c591de7552db13384cb8
|
||||||
PKG_FIXUP:=libtool
|
|
||||||
|
PKG_FIXUP:=libtool-uclibcxx
|
||||||
|
PKG_INSTALL:=1
|
||||||
|
|
||||||
|
PKG_CONFIG_DEPENDS:=CONFIG_PACKAGE_libtiffxx
|
||||||
|
|
||||||
include $(INCLUDE_DIR)/package.mk
|
include $(INCLUDE_DIR)/package.mk
|
||||||
|
|
||||||
PKG_INSTALL=1
|
|
||||||
|
|
||||||
define Package/tiff/Default
|
define Package/tiff/Default
|
||||||
TITLE:=TIFF
|
TITLE:=TIFF
|
||||||
URL:=http://www.remotesensing.org/libtiff/
|
URL:=http://www.remotesensing.org/libtiff/
|
||||||
@ -30,10 +32,18 @@ define Package/libtiff
|
|||||||
$(call Package/tiff/Default)
|
$(call Package/tiff/Default)
|
||||||
SECTION:=libs
|
SECTION:=libs
|
||||||
CATEGORY:=Libraries
|
CATEGORY:=Libraries
|
||||||
TITLE+= libraries
|
TITLE+= library
|
||||||
DEPENDS:=+zlib +libjpeg
|
DEPENDS:=+zlib +libjpeg
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
define Package/libtiffxx
|
||||||
|
$(call Package/tiff/Default)
|
||||||
|
SECTION:=libs
|
||||||
|
CATEGORY:=Libraries
|
||||||
|
TITLE+= library(c++ bindings)
|
||||||
|
DEPENDS:=+libtiff +uclibcxx
|
||||||
|
endef
|
||||||
|
|
||||||
define Package/tiff-utils
|
define Package/tiff-utils
|
||||||
$(call Package/tiff/Default)
|
$(call Package/tiff/Default)
|
||||||
SECTION:=utils
|
SECTION:=utils
|
||||||
@ -44,7 +54,32 @@ endef
|
|||||||
|
|
||||||
TARGET_CFLAGS += $(FPIC)
|
TARGET_CFLAGS += $(FPIC)
|
||||||
|
|
||||||
CONFIGURE_ARGS += --without-x
|
MAKE_FLAGS += \
|
||||||
|
CXX="g++-uc"
|
||||||
|
|
||||||
|
define Build/Configure
|
||||||
|
$(call Build/Configure/Default, \
|
||||||
|
$(if $(CONFIG_PACKAGE_libtiffxx), \
|
||||||
|
--enable-cxx, \
|
||||||
|
--disable-cxx \
|
||||||
|
) \
|
||||||
|
--enable-ccitt \
|
||||||
|
--enable-packbits \
|
||||||
|
--enable-lzw \
|
||||||
|
--enable-thunder \
|
||||||
|
--enable-next \
|
||||||
|
--enable-logluv \
|
||||||
|
--enable-mdi \
|
||||||
|
--enable-zlib \
|
||||||
|
--enable-jpeg \
|
||||||
|
--disable-old-jpeg \
|
||||||
|
--disable-jbig \
|
||||||
|
--without-x \
|
||||||
|
--with-apple-opengl-framework \
|
||||||
|
, \
|
||||||
|
CXX="g++-uc" \
|
||||||
|
)
|
||||||
|
endef
|
||||||
|
|
||||||
define Build/InstallDev
|
define Build/InstallDev
|
||||||
$(INSTALL_DIR) $(1)/usr/{lib,include}
|
$(INSTALL_DIR) $(1)/usr/{lib,include}
|
||||||
@ -54,7 +89,12 @@ endef
|
|||||||
|
|
||||||
define Package/libtiff/install
|
define Package/libtiff/install
|
||||||
$(INSTALL_DIR) $(1)/usr/lib
|
$(INSTALL_DIR) $(1)/usr/lib
|
||||||
$(CP) $(PKG_INSTALL_DIR)/usr/lib/lib*.so.* $(1)/usr/lib/
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libtiff.so.* $(1)/usr/lib/
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Package/libtiffxx/install
|
||||||
|
$(INSTALL_DIR) $(1)/usr/lib
|
||||||
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libtiffxx.so.* $(1)/usr/lib/
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/tiff-utils/install
|
define Package/tiff-utils/install
|
||||||
@ -63,4 +103,5 @@ define Package/tiff-utils/install
|
|||||||
endef
|
endef
|
||||||
|
|
||||||
$(eval $(call BuildPackage,libtiff))
|
$(eval $(call BuildPackage,libtiff))
|
||||||
|
$(eval $(call BuildPackage,libtiffxx))
|
||||||
$(eval $(call BuildPackage,tiff-utils))
|
$(eval $(call BuildPackage,tiff-utils))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user