comprehensive TeX system which includes all the major TeX-related programs, macro packages, and fonts that are free software, including support for many languages around the world. This package contains a teTeX like subset of the TeXLive texmf. (todo: fix script stuff)
42 lines
1.3 KiB
Makefile
42 lines
1.3 KiB
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2007/11/10 19:44:42 airhead Exp $
|
|
#
|
|
|
|
PKGNAME= texlive-texmf-minimal-${TEXLIVE_VERSION}
|
|
DISTNAME= texlive_texmf-minimal-${TEXLIVE_VERSION}${TEXLIVE_GENERATION}
|
|
CATEGORIES= print
|
|
MASTER_SITES= http://students.dec.bournemouth.ac.uk/ebarrett/texlive/distfiles/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.tug.org/texlive/
|
|
COMMENT= TeXLive texmf, minimal version from Edd Barret's OpenBSD repository
|
|
|
|
NO_BUILD= yes
|
|
|
|
CONFLICTS+= teTeX-texmf-[0-9]*
|
|
CONFLICTS+= teTeX2-texmf-[0-9]*
|
|
CONFLICTS+= teTeX3-texmf-[0-9]*
|
|
CONFLICTS+= texlive-texmf-full-[0-9]*
|
|
|
|
# Is this necessary?
|
|
SUBST_CLASSES+= fmtutil
|
|
SUBST_MESSAGE.fmtutil= Tweaking fmtutil.cnf
|
|
SUBST_STAGE.fmtutil= post-patch
|
|
SUBST_FILES.fmtutil= texmf/web2c/fmtutil.cnf
|
|
SUBST_SED.fmtutil= -e "s,.*xetex.*,,g"
|
|
|
|
pre-install:
|
|
rm -Rf ${WRKSRC}/texmf/doc/man
|
|
rm -Rf ${WRKSRC}/texmf-dist/source
|
|
# fix for broken bbold font
|
|
rm -f ${WRKSRC}/texmf-dist/tex/latex/jknapltx/ubbold.fd
|
|
cd ${WRKSRC}/texmf-dist/tex/latex/bbold/ && mv -f Ubbold.fd ubbold.fd
|
|
|
|
do-install:
|
|
cp -R ${WRKSRC}/texmf ${PREFIX}/share
|
|
chown -R ${SHAREOWN}:${SHAREGRP} ${PREFIX}/share/texmf
|
|
cp -R ${WRKSRC}/texmf-dist ${PREFIX}/share
|
|
chown -R ${SHAREOWN}:${SHAREGRP} ${PREFIX}/share/texmf-dist
|
|
|
|
.include "../../wip/texlive/Makefile.common"
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|