summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorVolker Grabsch <vog@notjusthosting.com>2010-07-16 16:21:50 (GMT)
committerVolker Grabsch <vog@notjusthosting.com>2010-07-16 16:21:50 (GMT)
commit3b6d4a1d3805825e3dfd69221040416d8bda51c3 (patch)
tree49b7837987f93c396dbf99743a665c0cdb6b6f9a /src
parentd127264dd85119ca57d2ba3804c19f1428e1123e (diff)
downloadmxe-3b6d4a1d3805825e3dfd69221040416d8bda51c3.zip
mxe-3b6d4a1d3805825e3dfd69221040416d8bda51c3.tar.gz
mxe-3b6d4a1d3805825e3dfd69221040416d8bda51c3.tar.bz2
add missing depedencies and explicitly --enable/disable all depedencies of package pfstools
Diffstat (limited to 'src')
-rw-r--r--src/pfstools.mk15
1 files changed, 13 insertions, 2 deletions
diff --git a/src/pfstools.mk b/src/pfstools.mk
index 435760d..f3b3f16 100644
--- a/src/pfstools.mk
+++ b/src/pfstools.mk
@@ -10,7 +10,7 @@ $(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION)
$(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.gz
$(PKG)_WEBSITE := http://pfstools.sourceforge.net/
$(PKG)_URL := http://$(SOURCEFORGE_MIRROR)/project/$(PKG)/$(PKG)/$($(PKG)_VERSION)/$($(PKG)_FILE)
-$(PKG)_DEPS := gcc
+$(PKG)_DEPS := gcc openexr tiff imagemagick
define $(PKG)_UPDATE
$(call SOURCEFORGE_FILES,http://sourceforge.net/projects/pfstools/files/pfstools/) | \
@@ -22,7 +22,18 @@ define $(PKG)_BUILD
cd '$(1)' && ./configure \
--host='$(TARGET)' \
--prefix='$(PREFIX)/$(TARGET)' \
- --disable-shared
+ --disable-shared \
+ --disable-netpbm \
+ --enable-openexr \
+ --enable-tiff \
+ --disable-qt \
+ --disable-jpeghdr \
+ --enable-imagemagick \
+ --disable-octave \
+ --enable-opengl \
+ --disable-matlab \
+ --disable-gdal \
+ LIBS='-ljpeg -lz'
$(MAKE) -C '$(1)'/src/pfs -j '$(JOBS)'
$(MAKE) -C '$(1)'/src/pfs -j 1 install
endef