blob: 12f90503d061a16c928dc53b26ad1fa5ca0288d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# $NetBSD: Makefile,v 1.25 2019/01/27 11:04:53 markd Exp $
DISTNAME= pdftex
PKGNAME= tex-${DISTNAME}-2018
TEXLIVE_REV= 48806
MAINTAINER= minskim@NetBSD.org
HOMEPAGE= http://ctan.org/pkg/pdftex
COMMENT= TeX extension for direct creation of PDF
LICENSE= gnu-gpl-v2
DEPENDS+= tex-dehyph-[0-9]*:../../print/tex-dehyph
DEPENDS+= tex-dvips-[0-9]*:../../print/tex-dvips
DEPENDS+= tex-etex-[0-9]*:../../print/tex-etex
DEPENDS+= tex-hyphen-base-[0-9]*:../../print/tex-hyphen-base
DEPENDS+= tex-kpathsea-[0-9]*:../../print/tex-kpathsea
DEPENDS+= tex-plain-[0-9]*:../../print/tex-plain
DEPENDS+= tex-tex-ini-files-[0-9]*:../../print/tex-tex-ini-files
DEPENDS+= tex-updmap-map-[0-9]*:../../print/tex-updmap-map
DEPENDS+= web2c-[0-9]*:../../print/web2c
USE_TOOLS+= sh:run
REPLACE_SH= bin/simpdftex
INSTALLATION_DIRS+= bin
TEX_FORMATS+= "pdftex pdftex language.def -translate-file=cp227.tcx *pdfetex.ini\\netex pdftex language.def -translate-file=cp227.tcx *etex.ini\\npdfetex pdftex language.def -translate-file=cp227.tcx *pdfetex.ini\\n"
TEX_MAP_FILES+= dummy-space.map
.include "../../print/texlive/package.mk"
post-extract:
${MKDIR} ${WRKSRC}/bin
${MV} ${WRKSRC}/texmf-dist/scripts/simpdftex/simpdftex \
${WRKSRC}/bin/
post-install:
${LN} -sf pdftex ${DESTDIR}${PREFIX}/bin/etex
${LN} -sf pdftex ${DESTDIR}${PREFIX}/bin/pdfetex
.include "../../mk/bsd.pkg.mk"
|