diff options
author | vanilla <vanilla@FreeBSD.org> | 2014-05-09 00:11:12 +0800 |
---|---|---|
committer | vanilla <vanilla@FreeBSD.org> | 2014-05-09 00:11:12 +0800 |
commit | 3affa9cebcafb4ce2d80ffc23e0b195485f15317 (patch) | |
tree | 8ad3baffde6fed2218481ec22bd17d5bf9856c6f /math | |
parent | 8757ed423133fb22f6bfd43131e7f81b4a309437 (diff) | |
download | freebsd-ports-gnome-3affa9cebcafb4ce2d80ffc23e0b195485f15317.tar.gz freebsd-ports-gnome-3affa9cebcafb4ce2d80ffc23e0b195485f15317.tar.zst freebsd-ports-gnome-3affa9cebcafb4ce2d80ffc23e0b195485f15317.zip |
- Stage
- Pet portlint
PR: ports/188989
Submitted by: Bartek Rutkowski <ports@robakdesign.com>
Approved by: portmgr@
Diffstat (limited to 'math')
-rw-r--r-- | math/py-bitvector/Makefile | 12 | ||||
-rw-r--r-- | math/py-bitvector/pkg-descr | 2 |
2 files changed, 8 insertions, 6 deletions
diff --git a/math/py-bitvector/Makefile b/math/py-bitvector/Makefile index 6e14350d7098..5f5a93e8e413 100644 --- a/math/py-bitvector/Makefile +++ b/math/py-bitvector/Makefile @@ -9,7 +9,7 @@ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTNAME= BitVector-${PORTVERSION} MAINTAINER= lwhsu@FreeBSD.org -COMMENT= A pure-Python memory-efficient packed representation for bit arrays +COMMENT= Pure-Python memory-efficient packed representation for bit arrays LICENSE= PSFL @@ -21,9 +21,11 @@ PORTDOCS= README BitVector-${PORTVERSION}.html PLIST_FILES= %%PYTHON_SITELIBDIR%%/BitVector.py \ %%PYTHON_SITELIBDIR%%/BitVector.pyc \ - %%PYTHON_SITELIBDIR%%/BitVector.pyo + %%PYTHON_SITELIBDIR%%/BitVector.pyo \ + %%PYTHON_LIBDIR%%/site-packages/setup.py \ + %%PYTHON_LIBDIR%%/site-packages/setup.pyc \ + %%PYTHON_LIBDIR%%/site-packages/setup.pyo -NO_STAGE= yes post-extract: @${RM} -f ${WRKSRC}/test.py @@ -31,8 +33,8 @@ post-extract: DOCSDIR= ${PREFIX}/share/doc/py-${PORTNAME} post-install: - @${MKDIR} ${DOCSDIR} - @${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} + @${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR} .endif regression-test: diff --git a/math/py-bitvector/pkg-descr b/math/py-bitvector/pkg-descr index 00efd48c2757..84d71aa1b180 100644 --- a/math/py-bitvector/pkg-descr +++ b/math/py-bitvector/pkg-descr @@ -3,4 +3,4 @@ and for logical operations on such arrays. The core idea used in this Python script for bin packing is based on an internet posting by Josiah Carlson to the Pyrex mailing list. -WWW: https://engineering.purdue.edu/kak/dist/BitVector-3.1.html +WWW: https://engineering.purdue.edu/kak/dist/BitVector-3.1.html |