04d6f52202
lang/gcc which have moved from GCC 4.9.4 to GCC 5.4 (at least under some circumstances such as versions of FreeBSD or platforms). This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using using Mk/bsd.octave.mk which in turn has USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c++11-lib, c++14-lang, c++11-lang, c++0x, c11, or gcc-c++11-lib. PR: 216707
101 lines
2.8 KiB
Makefile
101 lines
2.8 KiB
Makefile
# Created by: Donald Burr <dburr@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= yodl
|
|
PORTVERSION= 3.05.01
|
|
PORTREVISION= 1
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= SF
|
|
DISTNAME= ${PORTNAME}_${PORTVERSION}
|
|
EXTRACT_SUFX= .orig.tar.gz
|
|
|
|
MAINTAINER= bofh@FreeBSD.org
|
|
COMMENT= Easy to use but powerful document formatting/preparation language
|
|
|
|
LICENSE= GPLv3
|
|
|
|
RUN_DEPENDS= bash:shells/bash \
|
|
${LOCALBASE}/bin/getopt:misc/getopt
|
|
BUILD_DEPENDS= icmake:devel/icmake \
|
|
bash:shells/bash \
|
|
gsed:textproc/gsed
|
|
|
|
USES= perl5 shebangfix compiler:c++11-lib
|
|
USE_PERL5= build
|
|
|
|
SHEBANG_LANG= icmake
|
|
icmake_OLD_CMD= /usr/bin/icmake
|
|
icmake_CMD= ${LOCALBASE}/bin/icmake
|
|
|
|
SHEBANG_FILES= ${WRKSRC}/macros/rawmacros/create \
|
|
${WRKSRC}/macros/rawmacros/keepdiff \
|
|
${WRKSRC}/macros/rawmacros/makeyoin \
|
|
${WRKSRC}/macros/rawmacros/repairs \
|
|
${WRKSRC}/macros/rawmacros/separator \
|
|
${WRKSRC}/macros/rawmacros/separator.pl \
|
|
${WRKSRC}/macros/rawmacros/startdoc \
|
|
${WRKSRC}/macros/rawmacros/startdoc.pl \
|
|
${WRKSRC}/contrib/build.pl \
|
|
${WRKSRC}/src/yodl/replace \
|
|
${WRKSRC}/scripts/configreplacements \
|
|
${WRKSRC}/scripts/macroseparator.pl \
|
|
${WRKSRC}/scripts/stdmacros \
|
|
${WRKSRC}/scripts/yodl2whatever.in \
|
|
${WRKSRC}/build
|
|
|
|
DOCSDIR= ${PREFIX}/share/doc/${PORTNAME}-${PORTVERSION}
|
|
PORTDOCS= *
|
|
|
|
PLIST_SUB+= PORTVERSION="${PORTVERSION}"
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
USE_TEX= latex:build dvipsk:build
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|"/usr"|"${PREFIX}"| ; \
|
|
s|"/share/yodl"|"/share/${PORTNAME}-${PORTVERSION}"| ; \
|
|
s|"/share/man"|"/man"| ; \
|
|
s|"/share/doc/yodl"|"/share/doc/${PORTNAME}-${PORTVERSION}"| ; \
|
|
s|"/share/doc/yodl-doc"|"/share/doc/${PORTNAME}-${PORTVERSION}/doc"| ; \
|
|
s|"gcc"|"${CC}"| ; \
|
|
s|"g++"|"${CXX}"|' \
|
|
${WRKSRC}/INSTALL.im
|
|
@${REINPLACE_CMD} -e 's|yodlconverters.1|yodlconverters.1.gz| ; \
|
|
s|".1"|".1.gz"|' \
|
|
${WRKSRC}/icmake/install
|
|
@${REINPLACE_CMD} -e 's|#!/usr/bin/icmake|#!${LOCALBASE}/bin/icmake| ; \
|
|
s|"-O2 -Wall"|"-Wall ${CFLAGS}"|' \
|
|
${WRKSRC}/build
|
|
@${REINPLACE_CMD} -e 's|sed |${LOCALBASE}/bin/gsed | ; \
|
|
s|getopt |${LOCALBASE}/bin/getopt |' \
|
|
${WRKSRC}/scripts/configreplacements \
|
|
${WRKSRC}/scripts/yodl2whatever.in \
|
|
${WRKSRC}/scripts/yodlstriproff \
|
|
${WRKSRC}/macros/rawmacros/repairs
|
|
|
|
do-build:
|
|
@cd ${WRKSRC} && ./build programs strip
|
|
@cd ${WRKSRC} && ./build macros
|
|
@cd ${WRKSRC} && ./build man
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
@cd ${WRKSRC} && ./build manual
|
|
.endif
|
|
|
|
do-install:
|
|
@cd ${WRKSRC} && ./build install programs ${STAGEDIR}
|
|
@cd ${WRKSRC} && ./build install macros ${STAGEDIR}
|
|
@cd ${WRKSRC} && ./build install man ${STAGEDIR}
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
@cd ${WRKSRC} && ./build install manual ${STAGEDIR}
|
|
@cd ${WRKSRC} && ./build install docs ${STAGEDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|