diff options
author | clsung <clsung@FreeBSD.org> | 2006-08-14 13:05:27 +0800 |
---|---|---|
committer | clsung <clsung@FreeBSD.org> | 2006-08-14 13:05:27 +0800 |
commit | 49eb45056104af820a3af5c0591f5698f104f609 (patch) | |
tree | 562fc3680308b836621b70c7f867d7d87d3ec4ea /textproc/nltk | |
parent | 0d5c43d243956e31cca1f3c35742290791482ebd (diff) | |
download | freebsd-ports-gnome-49eb45056104af820a3af5c0591f5698f104f609.tar.gz freebsd-ports-gnome-49eb45056104af820a3af5c0591f5698f104f609.tar.zst freebsd-ports-gnome-49eb45056104af820a3af5c0591f5698f104f609.zip |
- Respect DESTDIR
- portlint fix
- @dirrmtry
PR: ports/101881
Submitted by: Gea-Suan Lin <gslin_AT_gslin dot org>
Diffstat (limited to 'textproc/nltk')
-rw-r--r-- | textproc/nltk/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/textproc/nltk/Makefile b/textproc/nltk/Makefile index 5c05cb884f84..78cce9c887ed 100644 --- a/textproc/nltk/Makefile +++ b/textproc/nltk/Makefile @@ -22,13 +22,13 @@ USE_PYTHON_PREFIX= yes .include <bsd.port.pre.mk> .if ${ARCH} == "alpha" && ${OSVERSION} < 500000 -BROKEN= "Coredump during build on alpha 4.x" +BROKEN= Coredump during build on alpha 4.x .endif post-install: @${FIND} ${PYTHON_SITELIBDIR}/nltk ! -type d | \ - ${SED} 's,^${PREFIX}/,,' >> ${TMPPLIST} + ${SED} 's,^${TARGETDIR}/,,' >> ${TMPPLIST} @${FIND} ${PYTHON_SITELIBDIR}/nltk -type d | ${SORT} -r | \ - ${SED} 's,^${PREFIX}/,@dirrm ,' >> ${TMPPLIST} + ${SED} 's,^${TARGETDIR}/,@dirrmtry ,' >> ${TMPPLIST} .include <bsd.port.post.mk> |