diff options
author | thierry <thierry@FreeBSD.org> | 2005-01-24 05:55:46 +0800 |
---|---|---|
committer | thierry <thierry@FreeBSD.org> | 2005-01-24 05:55:46 +0800 |
commit | d3173a0ec1605c8a947596b1d3ba00bfc0b0cef6 (patch) | |
tree | 155ca7be3f5bcc4aef21c8c49cf5cea484d16b23 /textproc/info2man/Makefile | |
parent | 7d4605f571edece580b316b29f8321b20d743282 (diff) | |
download | freebsd-ports-gnome-d3173a0ec1605c8a947596b1d3ba00bfc0b0cef6.tar.gz freebsd-ports-gnome-d3173a0ec1605c8a947596b1d3ba00bfc0b0cef6.tar.zst freebsd-ports-gnome-d3173a0ec1605c8a947596b1d3ba00bfc0b0cef6.zip |
Add info2man: translate GNU info files into man pages.
Diffstat (limited to 'textproc/info2man/Makefile')
-rw-r--r-- | textproc/info2man/Makefile | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/textproc/info2man/Makefile b/textproc/info2man/Makefile new file mode 100644 index 000000000000..df4d6b878fa0 --- /dev/null +++ b/textproc/info2man/Makefile @@ -0,0 +1,33 @@ +# New ports collection makefile for: info2man +# Date created: 19 January 2005 +# Whom: Thierry Thomas <thierry@pompo.net> +# +# $FreeBSD$ +# + +PORTNAME= info2man +PORTVERSION= 20040717 +CATEGORIES= textproc +MASTER_SITES= http://www.cskk.ezoshosting.com/cs/css/ +DISTNAME= ${PORTNAME} +DIST_SUBDIR= ${PORTNAME}-${PORTVERSION} + +MAINTAINER= ports@FreeBSD.org +COMMENT= Translate GNU info files into man pages + +USE_PERL5= yes +USE_REINPLACE= yes +NO_WRKSUBDIR= yes +NO_BUILD= yes + +PLSCRIPTS= info2man info2pod + +pre-configure: + @${REINPLACE_CMD} -e 's|%%DATADIR%%|${DATADIR}|' ${WRKSRC}/info2pod + +do-install: + ${INSTALL_SCRIPT} ${PLSCRIPTS:S|^|${WRKSRC}/|} ${PREFIX}/bin + ${MKDIR} ${DATADIR} + ${CP} -R ${WRKSRC}/cs ${DATADIR} + +.include <bsd.port.mk> |