mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-04 22:33:27 +00:00
e366972e90
This is JadeTeX, a set of TeX macros for processing the TeX output from Jade and doing useful things with it. In the grand scheme of things, it'll be used as part of the process to convert DocBook to PostScript and PDF. It depends on teTeX-beta, all 30 megs of it. Sean Kelly did all this, and deserves the credit, I'm just committing on his behalf. That ticking noise you can here is LinuxDoc's shrinking lifetime. Reviewed by: nik@freebsd.org Submitted by: Sean Kelly <kelly@plutotech.com>
43 lines
1.4 KiB
Makefile
43 lines
1.4 KiB
Makefile
# New ports collection makefile for: jadetex
|
|
# Version required: 2.3
|
|
# Date created: 5 December 1998
|
|
# Whom: Sean Kelly <kelly@plutotech.com>
|
|
#
|
|
# $Id$
|
|
#
|
|
# When jadetex-2.3 goes mainstream, it will replace jadetex-2.1
|
|
# currently in the Comprehensive TeX Archive Network (CTAN). When
|
|
# that happens, we ought to change MASTER_SITES to
|
|
# MASTER_SITE_TEX_CTAN, and remove the DISTFILES, EXTRACT_CMD,
|
|
# EXTRACT_SUFX, EXTRACT_AFTER_ARGS, and NO_WRKSUBDIR.
|
|
#
|
|
|
|
DISTNAME= jadetex
|
|
CATEGORIES= print
|
|
VERSION= 2.3
|
|
PKGNAME= ${DISTNAME}-${VERSION}
|
|
MAINTAINER= kelly@plutotech.com
|
|
MASTER_SITES= http://tug.org/applications/jadetex/
|
|
DISTFILES= Makefile.jadetex jadetex.dtx jadetex.ini jadetex.ins \
|
|
pdfjadetex.ini
|
|
DIST_SUBDIR= jadetex
|
|
NO_WRKSUBDIR= yes
|
|
BUILD_DEPENDS= tex:${PORTSDIR}/print/teTeX-beta
|
|
RUN_DEPENDS= tex:${PORTSDIR}/print/teTeX-beta
|
|
EXTRACT_CMD= ${CP}
|
|
EXTRACT_BEFORE_ARGS= -fp
|
|
EXTRACT_AFTER_ARGS= .
|
|
EXTRACT_SUFX=
|
|
|
|
post-extract:
|
|
@${ECHO} all: default > ${WRKSRC}/Makefile
|
|
@${SED} -e "s/huge//g" ${WRKSRC}/Makefile.jadetex >> ${WRKSRC}/Makefile
|
|
|
|
do-install:
|
|
@(cd ${WRKSRC} && ${INSTALL_DATA} jadetex.fmt pdfjadetex.fmt `kpsewhich -expand-var '$$TEXMFMAIN'`/web2c && ${MKDIR} -m 555 `kpsewhich -expand-var '$$TEXMFMAIN'`/tex/jadetex && ${INSTALL_DATA} dsssl.def isoents.tex jadetex.ltx `kpsewhich -expand-var '$$TEXMFMAIN'`/tex/jadetex)
|
|
|
|
post-install:
|
|
@${CAT} ${PKGDIR}/MESSAGE
|
|
|
|
.include <bsd.port.mk>
|