diff options
author | mat <mat@FreeBSD.org> | 2016-06-26 05:33:10 +0800 |
---|---|---|
committer | mat <mat@FreeBSD.org> | 2016-06-26 05:33:10 +0800 |
commit | 55184b21806160139e35bb3ec1350b940661927f (patch) | |
tree | f97102d2594ca958594cde9324a27bd570a654e2 /textproc | |
parent | dc49d7681deceaff7a87ac602fa639606012ed46 (diff) | |
download | freebsd-ports-gnome-55184b21806160139e35bb3ec1350b940661927f.tar.gz freebsd-ports-gnome-55184b21806160139e35bb3ec1350b940661927f.tar.zst freebsd-ports-gnome-55184b21806160139e35bb3ec1350b940661927f.zip |
Make MAKE_JOBS_UNSAFE, tries to use stuff before building them, for example:
/wrkdirs/usr/ports/textproc/groff/work/groff-1.22.2/src/devices/gropdf/pdfmom: not found
gmake[3]: *** [Makefile.sub:117: examples/letter.pdf] Error 127
While there, remove the bsd.port.pre/post inclusion.
Sponsored by: Absolight
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/groff/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/textproc/groff/Makefile b/textproc/groff/Makefile index 5ce6825dddb7..80443959294f 100644 --- a/textproc/groff/Makefile +++ b/textproc/groff/Makefile @@ -15,6 +15,8 @@ LICENSE= GPLv3 BUILD_DEPENDS= ${LOCALBASE}/bin/psselect:print/psutils RUN_DEPENDS:= ${BUILD_DEPENDS} +MAKE_JOBS_UNSAFE= yes + USES= cpe ghostscript gmake perl5 shebangfix GNU_CONFIGURE= yes CONFIGURE_ARGS+= --with-awk=/usr/bin/awk @@ -48,7 +50,6 @@ DATADIR= ${PREFIX}/share/${PORTNAME}/${PORTVERSION} DOCSDIR= ${PREFIX}/share/doc/${PORTNAME}-${PORTVERSION} EXAMPLESDIR= ${DOCSDIR}/examples -.include <bsd.port.pre.mk> .include <bsd.port.options.mk> .if ! ${PORT_OPTIONS:MX11} @@ -89,4 +90,4 @@ post-configure: post-install: ${INSTALL_DATA} ${FILESDIR}/mdoc.local ${STAGEDIR}/${PREFIX}/share/groff/site-tmac -.include <bsd.port.post.mk> +.include <bsd.port.mk> |