blob: 864038dc15ed727a4bdf5f07d29f050fcfb5b4f7 (
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
44
|
# $NetBSD: Makefile,v 1.12 2012/10/08 13:45:47 asau Exp $
DISTNAME= # empty
PKGNAME= tex-foiltex-2.1.4a
PKGREVISION= 4
CATEGORIES= print
MASTER_SITES= ${MASTER_SITE_TEX_CTAN:=macros/latex/contrib/supported/foiltex/}
DISTFILES= foiltex.dtx foiltex.ins
MAINTAINER= minskim@NetBSD.org
HOMEPAGE= http://www.tex.ac.uk/tex-archive/help/Catalogue/entries/foiltex.html
COMMENT= LaTeX2e class for overhead transparencies
LICENSE= foiltex-license
DEPENDS+= tex-latex-[0-9]*:../../print/tex-latex
DEPENDS+= tex-latex-bin-[0-9]*:../../print/tex-latex-bin
RESTRICTED= May not be redistributed for profit
NO_BIN_ON_CDROM=${RESTRICTED}
NO_SRC_ON_CDROM=${RESTRICTED}
NO_CONFIGURE= YES
EVAL_PREFIX+= LATEX_PREFIX=tex-latex-bin
INSTALLATION_DIRS+= ${PREFIX}/share/texmf-dist/tex/latex/foiltex
.include "../../print/kpathsea/texmf.mk"
do-extract:
for f in ${DISTFILES}; do \
${CP} ${DISTDIR}/$$f ${WRKSRC}/$$f; \
done
do-build:
cd ${WRKSRC} && ${LATEX_PREFIX}/bin/latex foiltex.ins
do-install:
cd ${WRKSRC} && for f in foils.* foil*.clo fltfonts.def; do \
${INSTALL_DATA} $$f \
${DESTDIR}${PREFIX}/share/texmf-dist/tex/latex/foiltex/$$f; \
done
.include "../../mk/bsd.pkg.mk"
|