This uses accept 'env' as an argument for ports that do use their own or a different do-configure target. Modify xmkmf so it accept IMAKECPPFLAGS as default flags for imake and pass it to the called imake. Modify xorg-cf-files (the FreeBSD.cf configuration file) to allow CppCmd to be overwritten. Pass CppCmd CcCmd and CplusplusCmd via command line to each call of imake via IMAKECPPFLAGS Pass IMAKE_DEFINE with the above arguments to MAKE_ARGS so that imake spawned from Makefile generated by a previous imake also inherit the defined CppCmd CcCmd and CplusplusCmd. Make imake use devel/tradcpp all the time, so that when buidling with clang we do not depend on gcc's cpp. Make imake respect CC and CXX Make imake respect USE_GCC (if set imake will use gcc's cpp). While here: - Remove a couple of indefinite articles from comments - Trim headers - Fix a couple of ports to build with clang or use: USE_GCC=any - Fix a now useless redefinition of the extraction chain - Fix a typo in japanese/Wnn7-lib bundled imake template definitions - Fix some XMKMF execution with no env specified - Use options helper in x11/xautolock to simplify the port
75 lines
2 KiB
Makefile
75 lines
2 KiB
Makefile
# Created by: roberto
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= xfig
|
|
PORTVERSION= 3.2.5b
|
|
PORTREVISION= 1
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= SF/mcj/mcj-source/
|
|
DISTNAME= ${PORTNAME}.${PORTVERSION}.full
|
|
|
|
MAINTAINER= mjl@luckie.org.nz
|
|
COMMENT= A drawing program for X11
|
|
|
|
LIB_DEPENDS= jpeg.11:${PORTSDIR}/graphics/jpeg \
|
|
png15:${PORTSDIR}/graphics/png \
|
|
Xaw3d.8:${PORTSDIR}/x11-toolkits/Xaw3d
|
|
RUN_DEPENDS= fig2dev:${PORTSDIR}/print/transfig
|
|
|
|
CONFLICTS= xfig-[12].* xfig-3.1* xfig-3.2.[1234]*
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}.${PORTVERSION}
|
|
|
|
USES= imake
|
|
USE_XORG= ice sm x11 xaw xext xi xmu xpm xt
|
|
MAN1= xfig.1
|
|
MANCOMPRESSED= yes
|
|
USE_GCC= any
|
|
|
|
MAKE_ENV+= DOCSDIR=${DOCSDIR} CHMOD=${CHMOD} TAR=${TAR}
|
|
MAKE_ARGS+= INSTALLFLAGS="${COPY}" \
|
|
INSTPGMFLAGS="${STRIP} ${_BINOWNGRP} -m ${BINMODE}" \
|
|
INSTDATFLAGS="${_SHROWNGRP} -m ${SHAREMODE}" \
|
|
INSTMANFLAGS="${_MANOWNGRP} -m ${MANMODE}"
|
|
|
|
OPTIONS_DEFINE= GHOSTSCRIPT I18N DOCS
|
|
OPTIONS_DEFAULT= GHOSTSCRIPT I18N
|
|
I18N_DESC= I18N support and Japanese docs
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
INSTALL_TARGET= install install.libs install.html
|
|
.endif
|
|
|
|
.if ! ${PORT_OPTIONS:MI18N} || ! ${PORT_OPTIONS:MDOCS}
|
|
PLIST_SUB+= JPORTDOCS="@comment "
|
|
.else
|
|
PLIST_SUB= JPORTDOCS=""
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MI18N}
|
|
USES+= gettext
|
|
.endif
|
|
|
|
post-extract:
|
|
@cd ${WRKSRC}/Doc && ${FIND} -s . -type d -print0 | ${XARGS} -0 ${CHMOD} a+rx
|
|
@cd ${WRKSRC}/Doc && ${FIND} . -type f -print0 | ${XARGS} -0 ${CHMOD} a-x+r
|
|
@${CHMOD} a+rx ${WRKSRC}/Libraries
|
|
@cd ${WRKSRC}/Libraries && ${FIND} -s . -type d -print0 | ${XARGS} -0 ${CHMOD} a+rx
|
|
@cd ${WRKSRC}/Libraries && ${FIND} . -type f -print0 | ${XARGS} -0 ${CHMOD} a-x+r
|
|
@${CP} ${WRKSRC}/Doc/xfig.man ${WRKSRC}
|
|
|
|
post-patch:
|
|
.if ! ${PORT_OPTIONS:MGHOSTSCRIPT}
|
|
.if ! ${PORT_OPTIONS:MI18N}
|
|
@${REINPLACE_CMD} -e 's|-DGSBIT ||g' ${WRKSRC}/Imakefile
|
|
.else
|
|
@${REINPLACE_CMD} -e '/^XCOMM #define I18N/s|XCOMM ||' \
|
|
-e 's|-DGSBIT ||g' ${WRKSRC}/Imakefile
|
|
.endif
|
|
.elif ${PORT_OPTIONS:MI18N}
|
|
@${REINPLACE_CMD} -e '/^XCOMM #define I18N/s|XCOMM ||' ${WRKSRC}/Imakefile
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|