diff options
author | Dima Panov <fluffy@FreeBSD.org> | 2012-11-23 02:27:09 +0000 |
---|---|---|
committer | Dima Panov <fluffy@FreeBSD.org> | 2012-11-23 02:27:09 +0000 |
commit | 5dac4c27d128f39f7db09aee2e21f021f1af1017 (patch) | |
tree | 1b3145182248407a0895231dae5bef3e61fd76ab /graphics/vigra | |
parent | b2503fadf6feac976f4e5e56dd756bd94963ac3b (diff) | |
download | ports-5dac4c27d128f39f7db09aee2e21f021f1af1017.tar.gz ports-5dac4c27d128f39f7db09aee2e21f021f1af1017.zip |
Notes
Diffstat (limited to 'graphics/vigra')
-rw-r--r-- | graphics/vigra/Makefile | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/graphics/vigra/Makefile b/graphics/vigra/Makefile index 3014da0ec664..e60a37208d6a 100644 --- a/graphics/vigra/Makefile +++ b/graphics/vigra/Makefile @@ -11,6 +11,7 @@ PORTNAME= vigra PORTVERSION= 1.8.0 +PORTREVISION= 1 CATEGORIES= graphics MASTER_SITES= http://hci.iwr.uni-heidelberg.de/vigra/ DISTNAME= ${PORTNAME}-${PORTVERSION}-src @@ -27,6 +28,19 @@ CMAKE_ARGS= -DDEPENDENCY_SEARCH_PREFIX:PATH=${LOCALBASE} \ USE_LDCONFIG= yes +OPTIONS= PYTHON "Python bindings" off + +.include <bsd.port.options.mk> + +.if defined(WITH_PYTHON) +CONFLICTS_BUILD= python3* +USE_PYTHON= 2.6-2.7 +.else +CMAKE_ARGS+= -DWITH_VIGRANUMPY=0 +.endif + +.include <bsd.port.pre.mk> + # Vigra's CMakeLists.txt does not support disabling those so we hook them # as dependencies here unconditionally (without OPTIONS=) even though if # they are not present then Vigra/CMake will do without them (they are not @@ -67,4 +81,4 @@ post-patch: # FIXME: This is ugly @${RM} ${WRKSRC}/include/vigra/*.orig -.include <bsd.port.mk> +.include <bsd.port.post.mk> |