diff options
author | ehaupt <ehaupt@FreeBSD.org> | 2014-02-25 23:54:02 +0800 |
---|---|---|
committer | ehaupt <ehaupt@FreeBSD.org> | 2014-02-25 23:54:02 +0800 |
commit | 82401521ea6f6084e482ff30a4fdab73e4475e75 (patch) | |
tree | 816b86ad0015101e6d071967d9720176768602b0 /textproc/libflate | |
parent | 72a5d0b09943e8a3eb48809bf318f336b9906603 (diff) | |
download | freebsd-ports-gnome-82401521ea6f6084e482ff30a4fdab73e4475e75.tar.gz freebsd-ports-gnome-82401521ea6f6084e482ff30a4fdab73e4475e75.tar.zst freebsd-ports-gnome-82401521ea6f6084e482ff30a4fdab73e4475e75.zip |
Support staging
Diffstat (limited to 'textproc/libflate')
-rw-r--r-- | textproc/libflate/Makefile | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/textproc/libflate/Makefile b/textproc/libflate/Makefile index 43fd54d23c57..bcb6679efddf 100644 --- a/textproc/libflate/Makefile +++ b/textproc/libflate/Makefile @@ -9,16 +9,12 @@ MASTER_SITES= http://flate.dead-inside.org/ MAINTAINER= vg@FreeBSD.org COMMENT= Template library used to deal with html code in CGI applications -PLIST_FILES= lib/${PORTNAME}.a \ - bin/checktpl +PLIST_FILES= lib/${PORTNAME}.a bin/checktpl MAKE_ARGS+= CC=${CC} -NO_STAGE= yes -.include <bsd.port.pre.mk> - do-install: - @${INSTALL_PROGRAM} ${WRKSRC}/checktpl ${PREFIX}/bin/ - @${INSTALL_LIB} ${WRKSRC}/${PORTNAME}.a ${PREFIX}/lib/ + ${INSTALL_PROGRAM} ${WRKSRC}/checktpl ${STAGEDIR}${PREFIX}/bin + ${INSTALL_LIB} ${WRKSRC}/${PORTNAME}.a ${STAGEDIR}${PREFIX}/lib -.include <bsd.port.post.mk> +.include <bsd.port.mk> |