diff options
author | hubertf <hubertf@pkgsrc.org> | 2005-03-31 22:09:18 +0000 |
---|---|---|
committer | hubertf <hubertf@pkgsrc.org> | 2005-03-31 22:09:18 +0000 |
commit | 8c77117e05eb9545c891811444ebfe6fc74222f7 (patch) | |
tree | 79de52e55ef1f147fa3af1f3ede8be1a327b717f /print/teTeX3-bin/Makefile | |
parent | ac1db137a39fb70e435cc3b44e928a7b69ea2453 (diff) | |
download | pkgsrc-8c77117e05eb9545c891811444ebfe6fc74222f7.tar.gz |
Import teTeX-bin-3.0: TeX distribution for UNIX compatible systems - binaries
This package contains the executables for the teTeX installation
as well as other files that were created when generating the binaries:
info files, format files and manual pages.
Diffstat (limited to 'print/teTeX3-bin/Makefile')
-rw-r--r-- | print/teTeX3-bin/Makefile | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/print/teTeX3-bin/Makefile b/print/teTeX3-bin/Makefile new file mode 100644 index 00000000000..9d8558f8c1c --- /dev/null +++ b/print/teTeX3-bin/Makefile @@ -0,0 +1,46 @@ +# $NetBSD: Makefile,v 1.1.1.1 2005/03/31 22:09:18 hubertf Exp $ + +DISTNAME= tetex-src-3.0 +PKGNAME= ${DISTNAME:C/tetex/teTeX/:C/src/bin/} +CATEGORIES= print +MASTER_SITES= ${MASTER_SITE_TEX_CTAN:=systems/unix/teTeX/3.0/distrib/} + +MAINTAINER= kei@NetBSD.org +HOMEPAGE= http://www.tug.org/tetex/ +COMMENT= TeX distribution for UNIX compatible systems - binaries + +BUILD_DEPENDS+= bison-[0-9]*:../../devel/bison +DEPENDS+= teTeX-texmf>=3.0:../teTeX3-texmf +DEPENDS+= dialog-0.6z*:../../misc/dialog + +# games/omega previously installed an omega executable too +CONFLICTS+= omega<0.90.4nb1 + +INFO_FILES= latex.info dvips.info web2c.info kpathsea.info + +REPLACE_PERL= texk/xdvik/t1mapper \ + texk/oxdvik/t1mapper + +CONFIGURE_ARGS+= --without-texinfo --without-texi2html + +.if defined(PAPERSIZE) +LOWER_PAPERSIZE!= ${ECHO} ${PAPERSIZE} | ${TR} '[A-Z]' '[a-z]' +.endif + +post-install: + @${RM} -f ${PREFIX}/share/texmf/web2c/*.log +.if defined(PAPERSIZE) + ${LOCALBASE}/bin/texconfig dvips paper ${LOWER_PAPERSIZE} +. if ${PAPERSIZE} == "Letter" + ${LOCALBASE}/bin/texconfig xdvi us +. else + ${LOCALBASE}/bin/texconfig xdvi ${LOWER_PAPERSIZE} +. endif +.endif + ${LOCALBASE}/bin/texconfig font rw + ${LOCALBASE}/bin/texconfig font vardir ${VARBASE}/spool/texfonts + +.include "../../print/teTeX-bin/Makefile.common" +.include "../../mk/xaw.buildlink3.mk" + +.include "../../mk/bsd.pkg.mk" |