diff options
author | demon <demon@FreeBSD.org> | 2014-05-30 18:53:29 +0800 |
---|---|---|
committer | demon <demon@FreeBSD.org> | 2014-05-30 18:53:29 +0800 |
commit | 24b4c97c9fa6bb98be4d0363f1505436b2692e4f (patch) | |
tree | 711a80cb55aeebd78e7ee9feace8452bdff8e825 /textproc | |
parent | 28534e3634d29a3474c30ef1dd4bf86dcb2e7b24 (diff) | |
download | freebsd-ports-gnome-24b4c97c9fa6bb98be4d0363f1505436b2692e4f.tar.gz freebsd-ports-gnome-24b4c97c9fa6bb98be4d0363f1505436b2692e4f.tar.zst freebsd-ports-gnome-24b4c97c9fa6bb98be4d0363f1505436b2692e4f.zip |
Stagify;
Update WWW
Simplify installation.
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/man2html/Makefile | 25 | ||||
-rw-r--r-- | textproc/man2html/pkg-descr | 2 |
2 files changed, 12 insertions, 15 deletions
diff --git a/textproc/man2html/Makefile b/textproc/man2html/Makefile index cab38fe88eea..1507212a9343 100644 --- a/textproc/man2html/Makefile +++ b/textproc/man2html/Makefile @@ -6,32 +6,29 @@ PORTVERSION= 3.0.1 PORTREVISION= 1 CATEGORIES= textproc MASTER_SITES= http://hydra.nac.uci.edu/indiv/ehood/tar/ \ - ftp://ftp.cpan.org/pub/CPAN/modules/by-authors/Earl_Hood/ + ftp://ftp.cpan.org/pub/CPAN/modules/by-authors/Earl_Hood/ \ + http://people.freebsd.org/~demon/ DISTNAME= ${PORTNAME}${PORTVERSION} MAINTAINER= demon@FreeBSD.org COMMENT= Convert nroff(1) man pages to HTML USES= perl5 -USE_PERL5= run build patch +USE_PERL5= run NO_BUILD= yes CGIDIR= ${PREFIX}/www/cgi-bin -MAN1= man2html.1 -PLIST_FILES= bin/man2html +PLIST_FILES= bin/man2html man/man1/man2html.1.gz www/cgi-bin/man.cgi +PLIST_DIRS= www/cgi-bin -NO_STAGE= yes post-patch: - ${PERL} -pi -e "s#/usr/local/bin/perl#${PERL5}#" ${WRKSRC}/man.cgi ${WRKSRC}/man2html + ${REINPLACE_CMD} -e "s#/usr/local/bin/perl#${PERL5}#" ${WRKSRC}/man2html + ${REINPLACE_CMD} -e "s#/usr/bin/perl5.00503#${PERL5}#" ${WRKSRC}/man.cgi do-install: - - cd ${WRKSRC} && \ - ${PERL5} ${WRKSRC}/install.me -batch -binpath ${PREFIX}/bin \ - -manpath ${PREFIX}/man -libpath ${PREFIX}/lib \ - -perlpath ${PERL5} - if [ -d ${CGIDIR} ] ; then \ - ${INSTALL_SCRIPT} ${WRKSRC}/man.cgi ${CGIDIR} ; \ - fi + ${INSTALL_SCRIPT} ${WRKSRC}/man2html ${STAGEDIR}/${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/doc/man2html.1 ${STAGEDIR}/${PREFIX}/man/man1 + ${MKDIR} ${STAGEDIR}${CGIDIR} + ${INSTALL_SCRIPT} ${WRKSRC}/man.cgi ${STAGEDIR}${CGIDIR} .include <bsd.port.mk> diff --git a/textproc/man2html/pkg-descr b/textproc/man2html/pkg-descr index a6fdffd59ce4..0236eac52941 100644 --- a/textproc/man2html/pkg-descr +++ b/textproc/man2html/pkg-descr @@ -1,3 +1,3 @@ Convert UNIX nroff(1) manual pages to HTML format. -WWW: http://www.oac.uci.edu/indiv/ehood/man2html.html +WWW: http://www.nongnu.org/man2html/ |