diff options
author | sunpoet <sunpoet@FreeBSD.org> | 2014-03-09 22:51:15 +0800 |
---|---|---|
committer | sunpoet <sunpoet@FreeBSD.org> | 2014-03-09 22:51:15 +0800 |
commit | 666ca78f04a0bd64ed40c34c2f334c1688baa689 (patch) | |
tree | 4d59f82752413253d3499ea130e300eb1dc825f5 /www | |
parent | d68c677f6fe9edc4457164d6b42d7e518b8ba59c (diff) | |
download | freebsd-ports-gnome-666ca78f04a0bd64ed40c34c2f334c1688baa689.tar.gz freebsd-ports-gnome-666ca78f04a0bd64ed40c34c2f334c1688baa689.tar.zst freebsd-ports-gnome-666ca78f04a0bd64ed40c34c2f334c1688baa689.zip |
- Remove USE_DISTUTILS=yes: use setuptools since it's dependency now
- Strip shared library
- Bump PORTREVISION for package change
Diffstat (limited to 'www')
-rw-r--r-- | www/py-qp/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/www/py-qp/Makefile b/www/py-qp/Makefile index c8856db1967d..82ba0fd23e04 100644 --- a/www/py-qp/Makefile +++ b/www/py-qp/Makefile @@ -3,6 +3,7 @@ PORTNAME= qp PORTVERSION= 2.2 +PORTREVISION= 1 CATEGORIES= www python MASTER_SITES= http://www.mems-exchange.org/software/qp/ \ LOCAL/sunpoet @@ -18,7 +19,6 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} OPTIONS_DEFINE= DOCS EXAMPLES OPTIONSFILE= ${PORT_DBDIR}/py-${PORTNAME}/options -MAKE_ENV= USE_DISTUTILS=yes USE_PYDISTUTILS=yes USE_PYTHON= 2 @@ -27,6 +27,9 @@ SUB_FILES= pkg-message PORTDOCS= CHANGES.txt LICENSE.txt README.txt PORTEXAMPLES= * +post-build: + @${STRIP_CMD} ${WRKSRC}/build/lib.*/qp/hub/passfd.so + post-install: ${MKDIR} ${STAGEDIR}${DOCSDIR}/ ${STAGEDIR}${EXAMPLESDIR}/ cd ${WRKSRC}/ && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}/ |