diff options
author | bapt <bapt@FreeBSD.org> | 2014-01-09 21:09:44 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2014-01-09 21:09:44 +0800 |
commit | 3c445d73f4a4f8f4dd85ac9a6dff44ec4ad7da95 (patch) | |
tree | 36eeee7407d49f74a68fe16097a1425c41653d06 | |
parent | fe2f533cee6d4060622552631739e1597baaca55 (diff) | |
download | freebsd-ports-graphics-3c445d73f4a4f8f4dd85ac9a6dff44ec4ad7da95.tar.gz freebsd-ports-graphics-3c445d73f4a4f8f4dd85ac9a6dff44ec4ad7da95.tar.zst freebsd-ports-graphics-3c445d73f4a4f8f4dd85ac9a6dff44ec4ad7da95.zip |
Support stage
-rw-r--r-- | converters/aish/Makefile | 10 | ||||
-rw-r--r-- | converters/ascii2binary/Makefile | 7 |
2 files changed, 6 insertions, 11 deletions
diff --git a/converters/aish/Makefile b/converters/aish/Makefile index c4d361818a1..7086ebe07e2 100644 --- a/converters/aish/Makefile +++ b/converters/aish/Makefile @@ -10,14 +10,10 @@ DISTNAME= ${PORTNAME}${PORTVERSION:S/.//}u MAINTAINER= ports@FreeBSD.org COMMENT= Ish/uuencode/Base64 converter -NO_STAGE= yes - -.include <bsd.port.options.mk> +MAKE_ARGS= DSTDIR=${STAGEDIR}${PREFIX}/bin post-install: -.if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${PREFIX}/share/doc/ja/aish - ${INSTALL_DATA} ${WRKSRC}/aish.txt ${PREFIX}/share/doc/ja/aish -.endif + @${MKDIR} ${STAGEDIR}${PREFIX}/share/doc/ja/aish + ${INSTALL_DATA} ${WRKSRC}/aish.txt ${STAGEDIR}${PREFIX}/share/doc/ja/aish .include <bsd.port.mk> diff --git a/converters/ascii2binary/Makefile b/converters/ascii2binary/Makefile index af6ba173002..a3731c01f42 100644 --- a/converters/ascii2binary/Makefile +++ b/converters/ascii2binary/Makefile @@ -19,11 +19,10 @@ CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} -PLIST_FILES= bin/ascii2binary bin/binary2ascii +PLIST_FILES= bin/ascii2binary bin/binary2ascii \ + man/man1/ascii2binary.1.gz \ + man/man1/binary2ascii.1.gz -MAN1= ascii2binary.1 binary2ascii.1 - -NO_STAGE= yes pre-configure: ${REINPLACE_CMD} -e "s|/usr/local|${LOCALBASE}|" ${WRKSRC}/Makefile.in |