diff options
author | minskim <minskim@pkgsrc.org> | 2005-11-15 03:00:11 +0000 |
---|---|---|
committer | minskim <minskim@pkgsrc.org> | 2005-11-15 03:00:11 +0000 |
commit | aac97303cf1078584e2df6b13e55c9545d508813 (patch) | |
tree | 98cfd273b89e822ff91910257f76e99280e99e59 /print/tex-foiltex/Makefile | |
parent | 2811b095f421c63c7a2dc28723641ef93f9f4892 (diff) | |
download | pkgsrc-aac97303cf1078584e2df6b13e55c9545d508813.tar.gz |
Import tex-foiltex from pkgsrc-wip. Packaged by Benedikt Meurer.
The FoilTeX is a collection of LaTeX files for making foils. A number
of features are built-in including large sans serif font as normal
font, options for setting normalsize at 20pt (default), 17pt, 25pt or
30pt, new macros for starting new foils, for special environments like
Theorem and Proof, simple macros to control the headline and footline.
With Rokicki's dvips or Y&Y's dvipsone, it will even rotate individual
foils easily.
Diffstat (limited to 'print/tex-foiltex/Makefile')
-rw-r--r-- | print/tex-foiltex/Makefile | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/print/tex-foiltex/Makefile b/print/tex-foiltex/Makefile new file mode 100644 index 00000000000..13f6779ba2b --- /dev/null +++ b/print/tex-foiltex/Makefile @@ -0,0 +1,36 @@ +# $NetBSD: Makefile,v 1.1.1.1 2005/11/15 03:00:11 minskim Exp $ + +DISTNAME= # empty +PKGNAME= tex-foiltex-2.1.4a +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 + +NO_CONFIGURE= YES + +EVAL_PREFIX+= LATEX_PREFIX=latex +LATEX_PREFIX_DEFAULT=${LOCALBASE} + +STYDIR= ${PKG_LOCALTEXMFPREFIX}/tex/latex/foiltex + +.include "../../print/teTeX/module.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: + ${INSTALL_DATA_DIR} ${STYDIR} + cd ${WRKSRC} && for f in foils.* foil*.clo fltfonts.def; do \ + ${INSTALL_DATA} $$f ${STYDIR}/$$f; \ + done + +.include "../../mk/bsd.pkg.mk" |