mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-29 01:13:08 +00:00
ea8c8ec7da
as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3 to GCC 9.1 under most circumstances now after revision 507371. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, everything INDEX-11 shows with a dependency on lang/gcc9 now. PR: 238330
41 lines
1016 B
Makefile
41 lines
1016 B
Makefile
# Created by: TANAKA Hiroyuki <kattyo@abk.nu>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= xtr
|
|
PORTVERSION= 1.50e.0.2
|
|
PORTREVISION= 8
|
|
CATEGORIES= japanese textproc
|
|
MASTER_SITES= ftp://ftp.abk.nu/pub/redist/xtr/
|
|
DISTNAME= ${PORTNAME}1.50e-0.2
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Japanese text formatting processor
|
|
|
|
USES= tar:tgz
|
|
USE_CSTD= c89
|
|
USE_GCC= yes
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
NO_CDROM= Need to obtain permission for commercial redistribution
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-extract:
|
|
@${ECHO_MSG} "===> Converting Kanji code for ${DISTNAME}"
|
|
@(cd ${WRKSRC} && ${SH} EUCsetup )
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/src/xtr ${STAGEDIR}${PREFIX}/bin/xtr
|
|
${INSTALL_MAN} ${WRKSRC}/man/${PORTNAME}.1 ${STAGEDIR}${PREFIX}/man/man1
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/share/${PORTNAME}
|
|
${INSTALL_DATA} ${WRKSRC}/sample/*.xtr ${STAGEDIR}${PREFIX}/share/${PORTNAME}
|
|
|
|
do-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for file in README doc/xtr.doc
|
|
${INSTALL_DATA} ${WRKSRC}/${file} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|