diff options
author | kwm <kwm@FreeBSD.org> | 2013-10-03 07:29:52 +0000 |
---|---|---|
committer | kwm <kwm@FreeBSD.org> | 2013-10-03 07:29:52 +0000 |
commit | b4063ec1e5fa1663bfb7622fc1696210c3afe5bb (patch) | |
tree | c7ba4e7f23c247a24c1ef65d7690f7a32c43ae57 | |
parent | 5b12d135a533401e6862f46fdc107c8e765b3b61 (diff) | |
download | FreeBSD-ports-b4063ec1e5fa1663bfb7622fc1696210c3afe5bb.zip FreeBSD-ports-b4063ec1e5fa1663bfb7622fc1696210c3afe5bb.tar.gz |
Disable stage for now until I can figure out how to make it work with waf.
Submitted by: Kenta Suzumoto <kentas@hush.com>
-rw-r--r-- | graphics/py-cairo/Makefile | 4 | ||||
-rw-r--r-- | graphics/py3-cairo/Makefile | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/graphics/py-cairo/Makefile b/graphics/py-cairo/Makefile index 9f42ed5..9d1e7bb 100644 --- a/graphics/py-cairo/Makefile +++ b/graphics/py-cairo/Makefile @@ -4,6 +4,7 @@ PORTNAME= cairo PORTVERSION= 1.10.0 +PORTREVISION= 1 CATEGORIES= graphics python MASTER_SITES= http://cairographics.org/releases/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -19,8 +20,9 @@ USE_GNOME= cairo CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib CONFIGURE_ENV= PYTHON=${LOCALBASE}/bin/python2 \ - PREFIX=${STAGEDIR}${PREFIX} + PREFIX=${PREFIX} +NO_STAGE= yes python_OLD_CMD?= /usr/bin/env python python_CMD?= ${LOCALBASE}/bin/python2 SHEBANG_FILES= examples/*.py examples/*/*.py waf test/*.py diff --git a/graphics/py3-cairo/Makefile b/graphics/py3-cairo/Makefile index 1da30a3..775dcea 100644 --- a/graphics/py3-cairo/Makefile +++ b/graphics/py3-cairo/Makefile @@ -4,6 +4,7 @@ PORTNAME= cairo PORTVERSION= 1.10.0 +PORTREVISION= 1 CATEGORIES= graphics python MASTER_SITES= http://cairographics.org/releases/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -19,7 +20,7 @@ USE_GNOME= cairo CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib CONFIGURE_ENV= PYTHON=${LOCALBASE}/bin/python3 \ - PREFIX=${STAGEDIR}${PREFIX} + PREFIX=${PREFIX} python_OLD_CMD?= /usr/bin/env python python_CMD?= ${LOCALBASE}/bin/python3 |