1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-27 00:57:50 +00:00

- Control of Python dependency

PR:		173772
Submitted by:	Mamoru Sakaue
Feature safe:	yes
This commit is contained in:
Dima Panov 2012-11-23 02:27:09 +00:00
parent b2503fadf6
commit 5dac4c27d1
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=307668

View File

@ -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>