pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/print/tex-foiltex Import tex-foiltex from pkgsrc-wip. ...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/ad683c15205e
branches:  trunk
changeset: 503155:ad683c15205e
user:      minskim <minskim%pkgsrc.org@localhost>
date:      Tue Nov 15 03:00:11 2005 +0000

description:
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:

 print/tex-foiltex/DESCR            |   7 +++++++
 print/tex-foiltex/Makefile         |  36 ++++++++++++++++++++++++++++++++++++
 print/tex-foiltex/PLIST            |  10 ++++++++++
 print/tex-foiltex/distinfo         |   9 +++++++++
 print/tex-foiltex/patches/patch-aa |  15 +++++++++++++++
 5 files changed, 77 insertions(+), 0 deletions(-)

diffs (97 lines):

diff -r cc965d79f4bd -r ad683c15205e print/tex-foiltex/DESCR
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/print/tex-foiltex/DESCR   Tue Nov 15 03:00:11 2005 +0000
@@ -0,0 +1,7 @@
+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.
diff -r cc965d79f4bd -r ad683c15205e print/tex-foiltex/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/print/tex-foiltex/Makefile        Tue Nov 15 03:00:11 2005 +0000
@@ -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@localhost
+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"
diff -r cc965d79f4bd -r ad683c15205e print/tex-foiltex/PLIST
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/print/tex-foiltex/PLIST   Tue Nov 15 03:00:11 2005 +0000
@@ -0,0 +1,10 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2005/11/15 03:00:11 minskim Exp $
+${PKG_LOCALTEXMFPREFIX}/tex/latex/foiltex/fltfonts.def
+${PKG_LOCALTEXMFPREFIX}/tex/latex/foiltex/foil17.clo
+${PKG_LOCALTEXMFPREFIX}/tex/latex/foiltex/foil20.clo
+${PKG_LOCALTEXMFPREFIX}/tex/latex/foiltex/foil25.clo
+${PKG_LOCALTEXMFPREFIX}/tex/latex/foiltex/foil30.clo
+${PKG_LOCALTEXMFPREFIX}/tex/latex/foiltex/foils.cls
+${PKG_LOCALTEXMFPREFIX}/tex/latex/foiltex/foils.sty
+${PKG_LOCALTEXMFPREFIX}/tex/latex/foiltex/foilshrt.clo
+@dirrm ${PKG_LOCALTEXMFPREFIX}/tex/latex/foiltex
diff -r cc965d79f4bd -r ad683c15205e print/tex-foiltex/distinfo
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/print/tex-foiltex/distinfo        Tue Nov 15 03:00:11 2005 +0000
@@ -0,0 +1,9 @@
+$NetBSD: distinfo,v 1.1.1.1 2005/11/15 03:00:11 minskim Exp $
+
+SHA1 (foiltex.dtx) = 92527013d1c5ab837a4b6d8f8dfd9573ff20bed4
+RMD160 (foiltex.dtx) = 6a143debfbd0ec10776575fead59ec5cc66e9446
+Size (foiltex.dtx) = 173634 bytes
+SHA1 (foiltex.ins) = 297ba9c5d1674957d4c283514fdca064c5dea064
+RMD160 (foiltex.ins) = 324393458cce6a78fc5793fad32a54491dd21d7a
+Size (foiltex.ins) = 6319 bytes
+SHA1 (patch-aa) = 563dc859b90730daa0796470c3abf6884a4588e7
diff -r cc965d79f4bd -r ad683c15205e print/tex-foiltex/patches/patch-aa
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/print/tex-foiltex/patches/patch-aa        Tue Nov 15 03:00:11 2005 +0000
@@ -0,0 +1,15 @@
+$NetBSD: patch-aa,v 1.1.1.1 2005/11/15 03:00:11 minskim Exp $
+
+--- foiltex.ins.orig   2005-11-14 18:05:34.000000000 -0800
++++ foiltex.ins
+@@ -117,8 +117,8 @@ sent to
+ \generateFile{sampfoil.tex}{t}{\from{foiltex.dtx}{sample}}
+ 
+ 
+-\newcommand{\iispc}{\space\space}
+-\newcommand{\vspc}{\iispc\iispc\space}
++\def\iispc{\space\space}
++\def\vspc{\iispc\iispc\space}
+ \Msg{**********************************************************************}
+ \Msg{*}
+ \Msg{* To finish the installation, do the following:}



Home | Main Index | Thread Index | Old Index