diff options
author | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2013-12-28 23:14:09 +0800 |
---|---|---|
committer | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2013-12-28 23:14:09 +0800 |
commit | 2f621c2329890ce9307965e71bda791a2b212033 (patch) | |
tree | d7e8d997716109b2527f85edd6f172e74abf4b8f | |
parent | 64de49dd44784ad18e8eab76f4ced1e1c410a4df (diff) | |
download | marcuscom-ports-2f621c2329890ce9307965e71bda791a2b212033.tar.gz marcuscom-ports-2f621c2329890ce9307965e71bda791a2b212033.tar.zst marcuscom-ports-2f621c2329890ce9307965e71bda791a2b212033.zip |
Fix the build after recent python reshuffle.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@18969 df743ca5-7f9a-e211-a948-0013205c9059
-rw-r--r-- | accessibility/caribou/Makefile | 1 | ||||
-rw-r--r-- | lang/gjs/Makefile | 2 | ||||
-rw-r--r-- | security/libpwquality/Makefile | 4 |
3 files changed, 7 insertions, 0 deletions
diff --git a/accessibility/caribou/Makefile b/accessibility/caribou/Makefile index ba1d50e6c..a79a0ff52 100644 --- a/accessibility/caribou/Makefile +++ b/accessibility/caribou/Makefile @@ -32,6 +32,7 @@ LDFLAGS+= -L${LOCALBASE}/lib CONFIGURE_ARGS= --enable-gtk2-module=no GLIB_SCHEMAS= org.gnome.caribou.gschema.xml \ org.gnome.antler.gschema.xml +python_CMD= ${PYTHON_CMD} post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libcaribou.so.0 diff --git a/lang/gjs/Makefile b/lang/gjs/Makefile index 9c7433754..6e88ea507 100644 --- a/lang/gjs/Makefile +++ b/lang/gjs/Makefile @@ -27,6 +27,8 @@ CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib SHEBANG_FILES= scripts/make-tests +python_OLD_CMD= /usr/bin/env python +python_CMD= ${PYTHON_CMD} post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/lib*.so* diff --git a/security/libpwquality/Makefile b/security/libpwquality/Makefile index d5c5789b5..104e6d5dd 100644 --- a/security/libpwquality/Makefile +++ b/security/libpwquality/Makefile @@ -36,4 +36,8 @@ CONFIGURE_ARGS+=--disable-python-bindings PLIST_SUB+= PYTHON="@comment " .endif +post-patch: + @${REINPLACE_CMD} -e 's|python setup.py build|${PYTHON_VERSION} setup.py build|g' \ + ${WRKSRC}/python/Makefile.in + .include <bsd.port.mk> |