13997379d1
mandoc and groff both install /usr/local/bin/soelim. Mark the conflict so pkg can warn users before installation. PR: 272956 Approved by: bapt@FreeBSD.org (maintainer timeout)
70 lines
1.6 KiB
Makefile
70 lines
1.6 KiB
Makefile
PORTNAME= groff
|
|
DISTVERSION= 1.24.1
|
|
PORTREVISION= 1
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= GNU
|
|
|
|
MAINTAINER= alven@FreeBSD.org
|
|
COMMENT= Software typesetting package
|
|
WWW= https://www.gnu.org/software/groff/
|
|
|
|
LICENSE= GPLv3+
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
BUILD_DEPENDS= gsfonts>=0:print/gsfonts \
|
|
psselect:print/psutils
|
|
RUN_DEPENDS= psselect:print/psutils
|
|
|
|
USES= cpe gmake iconv:wchar_t perl5
|
|
CPE_VENDOR= gnu
|
|
USE_CXXSTD= gnu++98
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --with-urw-fonts-dir=${LOCALBASE}/share/ghostscript/fonts/ \
|
|
--without-gs \
|
|
--without-x
|
|
|
|
# Canonicalize to A4 if set.
|
|
.if defined(A4) || (defined(PAPERSIZE) && ${PAPERSIZE:tu} == "A4")
|
|
PAPERSIZE= A4
|
|
.endif
|
|
.if defined(PAPERSIZE)
|
|
CONFIGURE_ENV+= PAGE=${PAPERSIZE}
|
|
.endif
|
|
|
|
MAKE_ARGS= datasubdir=${DATADIR} \
|
|
docdir=${DOCSDIR} \
|
|
exampledir=${EXAMPLESDIR}
|
|
|
|
CONFLICTS= heirloom-doctools ja-groff
|
|
CONFLICTS_INSTALL= mandoc
|
|
|
|
INFO= groff
|
|
PORTDOCS= *
|
|
PORTEXAMPLES= *
|
|
|
|
OPTIONS_DEFINE= DOCS EXAMPLES UCHARDET
|
|
OPTIONS_DEFAULT= UCHARDET
|
|
|
|
UCHARDET_DESC= Automatic encoding detection in preconv(1)
|
|
|
|
UCHARDET_LIB_DEPENDS= libuchardet.so:textproc/uchardet
|
|
UCHARDET_USES= pkgconfig
|
|
UCHARDET_CONFIGURE_OFF= --with-uchardet=no
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${FILESDIR}/mdoc.local ${STAGEDIR}${PREFIX}/share/groff/site-tmac
|
|
${REINPLACE_CMD} -i "" -e "s/missing/gs/" ${STAGEDIR}${DATADIR}/font/devhtml/DESC
|
|
${RLN} . ${STAGEDIR}${DATADIR}/current
|
|
|
|
post-install-DOCS-on:
|
|
${LN} -f ${STAGEDIR}${EXAMPLESDIR}/mom/mom-pdf.pdf ${STAGEDIR}${DOCSDIR}/pdf
|
|
|
|
post-install-DOCS-off:
|
|
${RM} -r ${STAGEDIR}${DOCSDIR}
|
|
|
|
post-install-EXAMPLES-off:
|
|
${RM} -r ${STAGEDIR}${EXAMPLESDIR}
|
|
|
|
.include <bsd.port.mk>
|