mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-10 07:04:03 +00:00
7990f81066
After a discussion on the mailing list on moving manpages to ${PREFIX}/share/man for consistency with base where it is installed in usr/share/man, it appeared the same should happen to GNU info files which were installed under share in base and not in ports. Now texinfo is not in base on any of the supported version of FreeBSD it is possible to proceed to this move and it is easier to do than the manpage change. Other benefit than consistency are less patching: all build tools but cmake are expecting info files to be under share/info and cmake (patched here) was having an exception for BSD so the patch makes FreeBSD case less specific for them Bump revision of all impacted ports PR: 232907 exp-run by: antoine Differential Revision: https://reviews.freebsd.org/D17816
79 lines
2.3 KiB
Makefile
79 lines
2.3 KiB
Makefile
# Created by: Nobuhiro Yasutomi <nobu@psrc.isac.co.jp>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= groff
|
|
PORTVERSION= 1.18.1
|
|
DISTVERSIONSUFFIX= .1
|
|
PORTREVISION= 18
|
|
CATEGORIES= japanese print
|
|
MASTER_SITES= LOCAL/hrs
|
|
DISTFILES= ${DISTNAME:S,-,_,}.orig${EXTRACT_SUFX} ${TMAC_DISTNAME}.tar.gz
|
|
|
|
PATCH_SITES= LOCAL/hrs
|
|
PATCHFILES= ${DISTNAME:S,-,_,}-21.diff.gz
|
|
PATCH_DIST_STRIP= -p1
|
|
|
|
MAINTAINER= hrs@FreeBSD.org
|
|
COMMENT= Japanese enhancement of GNU groff
|
|
|
|
LICENSE= GPLv2
|
|
|
|
USES= iconv:wchar_t cpe gmake makeinfo shebangfix
|
|
|
|
SHEBANG_FILES= src/utils/afmtodit/afmtodit.pl \
|
|
contrib/mm/mmroff.pl
|
|
CPE_VENDOR= gnu
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --enable-multibyte
|
|
CONFIGURE_ENV= INSTALL_MAN="${INSTALL_MAN}"
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LIBS+= -L${LOCALBASE}/lib ${ICONV_LIB}
|
|
MAKE_JOBS_UNSAFE= yes
|
|
INSTALL_TARGET= install install_doc
|
|
PLIST_SUB= GROFF_VERSION=${PORTVERSION}
|
|
SUB_FILES= mdoc.local
|
|
SUB_LIST= OSREL=${OSREL}
|
|
PORTDOCS= *
|
|
PORTEXAMPLES= *
|
|
DOCSDIR= ${PREFIX}/share/doc/${PORTNAME}/${PORTVERSION}
|
|
EXAMPLESDIR= ${PREFIX}/share/examples/${PORTNAME}/${PORTVERSION}
|
|
INFO= groff
|
|
|
|
CONFLICTS= groff-[0-9]* mdocml-[0-9]*
|
|
|
|
TMAC_DISTNAME= tmac-20030521_2
|
|
TMACFILES= tmac.orig_me tmac.vgrind \
|
|
an-old.tmac doc.tmac e.tmac
|
|
MDOCFILES= ja.eucJP doc-common doc-syms
|
|
|
|
OPTIONS_DEFINE= DOCS EXAMPLES
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} -E -e 's|^@setfilename +groff|&.info|g;' \
|
|
${WRKSRC}/doc/groff.texinfo
|
|
|
|
post-build:
|
|
${RM} ${WRKSRC}/doc/groff ${WRKSRC}/doc/groff-*
|
|
cd ${WRKSRC}/doc && makeinfo --no-split groff.texinfo
|
|
cd ${WRKSRC} && ${FIND} font -name DESC \
|
|
| ${XARGS} ${REINPLACE_CMD} -E \
|
|
-e 's|pro +(gxditview)|pro ${LOCALBASE}/bin/\1|g;' \
|
|
-e 's|pro +([^/].*)|pro ${PREFIX}/bin/\1|g;'
|
|
|
|
post-install:
|
|
cd ${WRKDIR}/${TMAC_DISTNAME} && ${INSTALL_DATA} \
|
|
${TMACFILES} ${STAGEDIR}${DATADIR}/${PORTVERSION}/tmac
|
|
cd ${WRKDIR}/${TMAC_DISTNAME}/mdoc && ${INSTALL_DATA} \
|
|
${MDOCFILES} ${STAGEDIR}${DATADIR}/${PORTVERSION}/tmac/mdoc
|
|
${INSTALL_DATA} ${WRKDIR}/mdoc.local ${STAGEDIR}${DATADIR}/site-tmac
|
|
${INSTALL_DATA} ${WRKSRC}/doc/groff.info \
|
|
${STAGEDIR}${PREFIX}/${INFO_PATH}
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
cd ${INSTALL_WRKSRC} && ${INSTALL_DATA} \
|
|
ChangeLog.jp NEWS PROBLEMS README README.jp ${STAGEDIR}${DOCSDIR}
|
|
for F in eqn neqn pic tbl; do \
|
|
${LN} -sf $$F ${STAGEDIR}${PREFIX}/bin/g$$F; \
|
|
done
|
|
|
|
.include <bsd.port.mk>
|