diff options
author | Hiroki Sato <hrs@FreeBSD.org> | 2015-08-22 17:48:35 +0000 |
---|---|---|
committer | Hiroki Sato <hrs@FreeBSD.org> | 2015-08-22 17:48:35 +0000 |
commit | 27470e1676e69455acf06ae25ebd42ebd5bdecdb (patch) | |
tree | 445c3e315f03aa972de87391f921c655e4634f60 /print/gsview | |
parent | cb9ed09fda5119f533f6a0b50796a275dfe64587 (diff) | |
download | ports-27470e1676e69455acf06ae25ebd42ebd5bdecdb.tar.gz ports-27470e1676e69455acf06ae25ebd42ebd5bdecdb.zip |
Notes
Diffstat (limited to 'print/gsview')
-rw-r--r-- | print/gsview/Makefile | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/print/gsview/Makefile b/print/gsview/Makefile index 5d2e8582209d..850bca13f0d6 100644 --- a/print/gsview/Makefile +++ b/print/gsview/Makefile @@ -3,11 +3,11 @@ PORTNAME= gsview PORTVERSION= 4.9 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= print MASTER_SITES= LOCAL/bf -MAINTAINER= ports@FreeBSD.org +MAINTAINER= hrs@FreeBSD.org COMMENT= GUI to view, search, print, and convert PostScript and PDF documents LICENSE= AFPL @@ -20,9 +20,7 @@ RUN_DEPENDS+= epstool:${PORTSDIR}/graphics/epstool \ USES= cpe ghostscript USE_GNOME= gtk12 - MAKE_JOBS_UNSAFE= yes - PLIST_FILES= bin/gsview \ bin/gsview-help \ etc/gsview/printer.ini \ @@ -37,20 +35,22 @@ OPTIONS_DEFINE= DOCS post-patch: ${CP} ${WRKSRC}/srcunx/unx.mak ${WRKSRC}/Makefile ${REINPLACE_CMD} -e 's;malloc\.h;stdlib\.h;g' \ - ${WRKSRC}/src/doc2html.c ${WRKSRC}/src/doc2ipf.c \ - ${WRKSRC}/src/doc2xml.c + ${WRKSRC}/src/doc2html.c ${WRKSRC}/src/doc2ipf.c \ + ${WRKSRC}/src/doc2xml.c ${REINPLACE_CMD} -e 's;mozilla;firefox3;g' \ - ${WRKSRC}/srcunx/gvxhelp.txt + ${WRKSRC}/srcunx/gvxhelp.txt do-install: ${INSTALL_PROGRAM} ${WRKSRC}/bin/gsview ${STAGEDIR}${PREFIX}/bin - ${INSTALL_SCRIPT} ${WRKSRC}/srcunx/gvxhelp.txt ${STAGEDIR}${PREFIX}/bin/gsview-help + ${INSTALL_SCRIPT} ${WRKSRC}/srcunx/gvxhelp.txt \ + ${STAGEDIR}${PREFIX}/bin/gsview-help ${INSTALL_MAN} ${WRKSRC}/srcunx/gsview.1 ${STAGEDIR}${PREFIX}/man/man1 ${MKDIR} ${STAGEDIR}${PREFIX}/etc/gsview/ - ${INSTALL_DATA} ${WRKSRC}/src/printer.ini ${STAGEDIR}${PREFIX}/etc/gsview/ + ${INSTALL_DATA} ${WRKSRC}/src/printer.ini \ + ${STAGEDIR}${PREFIX}/etc/gsview/ ${MKDIR} ${STAGEDIR}${DOCSDIR} - (cd ${WRKSRC} && ${INSTALL_MAN} gsview.css cdorder.txt regorder.txt \ - Readme.htm LICENCE ${STAGEDIR}${DOCSDIR} ) + cd ${WRKSRC} && ${INSTALL_MAN} gsview.css cdorder.txt regorder.txt \ + Readme.htm LICENCE ${STAGEDIR}${DOCSDIR} ${INSTALL_MAN} ${WRKSRC}/bin/*.htm ${STAGEDIR}${DOCSDIR} .include <bsd.port.mk> |