summaryrefslogtreecommitdiff
path: root/package/libtiff/Makefile
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2013-10-21 17:25:35 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2013-10-21 17:25:35 +0200
commit98b7adfbd06f0f6bd99ca4805ca34250ee027fa1 (patch)
treea68345ba8ba7ee532e4b7426cadad31d7add24c0 /package/libtiff/Makefile
parent09d28322f4828a387eeee03d303c833eab8828c5 (diff)
parent32a82e38679501da738199135b35f93ddc8aca0a (diff)
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'package/libtiff/Makefile')
-rw-r--r--package/libtiff/Makefile17
1 files changed, 5 insertions, 12 deletions
diff --git a/package/libtiff/Makefile b/package/libtiff/Makefile
index 896b4073a..bc41ce181 100644
--- a/package/libtiff/Makefile
+++ b/package/libtiff/Makefile
@@ -5,37 +5,30 @@ include ${TOPDIR}/rules.mk
PKG_NAME:= tiff
PKG_VERSION:= 3.9.4
-PKG_RELEASE:= 3
+PKG_RELEASE:= 4
PKG_MD5SUM:= 2006c1bdd12644dbf02956955175afd6
PKG_DESCR:= A library for reading/writing TIFF images
PKG_SECTION:= libs
PKG_URL:= http://www.libtiff.org/
PKG_SITES:= ftp://ftp.remotesensing.org/pub/libtiff/
PKG_NEED_CXX:= 1
-
-PKG_SUBPKGS:= LIBTIFF LIBTIFF_DEV
-PKGSD_LIBTIFF_DEV:= development files for libtiff
-PKGSC_LIBTIFF_DEV:= devel
+PKG_LIBNAME:= libtiff
+PKG_OPTS:= dev
ifeq ($(ADK_STATIC),y)
-PKG_OPTS:= libonly
+PKG_OPTS+= libonly
endif
include ${TOPDIR}/mk/package.mk
$(eval $(call PKG_template,LIBTIFF,libtiff,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
-$(eval $(call PKG_template,LIBTIFF_DEV,libtiff-dev,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKGSD_LIBTIFF_DEV},${PKGSC_LIBTIFF_DEV},${PKG_OPTS}))
TARGET_CFLAGS:= $(filter-out -flto,$(TARGET_CFLAGS))
CONFIGURE_ARGS+= --disable-cxx \
--disable-rpath
-post-install:
+libtiff-install:
${INSTALL_DIR} ${IDIR_LIBTIFF}/usr/lib
${CP} ${WRKINST}/usr/lib/libtiff.so* ${IDIR_LIBTIFF}/usr/lib/
-libtiff-dev-install:
- ${INSTALL_DIR} ${IDIR_LIBTIFF_DEV}/usr/include
- ${CP} ${WRKINST}/usr/include/*.h ${IDIR_LIBTIFF_DEV}/usr/include
-
include ${TOPDIR}/mk/pkg-bottom.mk