897d06aa97
the ECHO macro is set to "echo" by default, but it is set to "true" if make(1) is invoked with the -s option while ECHO_CMD is always set to the echo command.
53 lines
1.4 KiB
Makefile
53 lines
1.4 KiB
Makefile
# New ports collection makefile for: jadetex
|
|
# Date created: 5 December 1998
|
|
# Whom: Sean Kelly <kelly@ad1440.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= jadetex
|
|
PORTVERSION= 3.11
|
|
CATEGORIES= print
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= jadetex
|
|
|
|
MAINTAINER= nik@FreeBSD.org
|
|
|
|
BUILD_DEPENDS= hugelatex:${PORTSDIR}/print/hugelatex
|
|
LIB_DEPENDS= png.5:${PORTSDIR}/graphics/png
|
|
RUN_DEPENDS= tex:${PORTSDIR}/print/teTeX
|
|
|
|
MAKE_ENV= TEXMFCNF=${FILESDIR}:${LOCALBASE}/share/texmf/web2c
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
|
|
MESSAGE= ${PKGDIR}/pkg-message
|
|
PKGMESSAGE= ${WRKDIR}/pkg-message
|
|
|
|
post-patch: patch-makefile patch-message
|
|
|
|
patch-makefile:
|
|
@${ECHO_CMD} all: betterdefault > ${WRKSRC}/Makefile.tmp
|
|
@${ECHO_CMD} betterdefault: jadetex.fmt pdfjadetex.fmt >> ${WRKSRC}/Makefile.tmp
|
|
@${CAT} ${WRKSRC}/Makefile >> ${WRKSRC}/Makefile.tmp
|
|
@${MV} ${WRKSRC}/Makefile.tmp ${WRKSRC}/Makefile
|
|
|
|
patch-message:
|
|
@${SED} -e 's,%%LOCALBASE%%,${LOCALBASE},' ${MESSAGE} > ${PKGMESSAGE}
|
|
|
|
do-install:
|
|
@cd ${WRKSRC}; TEXMFMAIN=$$(kpsewhich -expand-var '$$TEXMFMAIN'); \
|
|
${INSTALL_DATA} jadetex.fmt pdfjadetex.fmt $$TEXMFMAIN/web2c; \
|
|
${MKDIR} -m 555 $$TEXMFMAIN/tex/jadetex; \
|
|
${INSTALL_DATA} dsssl.def jadetex.ltx $$TEXMFMAIN/tex/jadetex
|
|
|
|
post-install: rebuild-tex-database display-message
|
|
|
|
rebuild-tex-database:
|
|
${LOCALBASE}/bin/mktexlsr
|
|
|
|
display-message:
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|