ef61fd4b24
PGF is a macro package for creating graphics. It is platform- and format-independent and works together with the most important TeX backend drivers, including pdftex and dvips. It comes with a user-friedly syntax layer called TikZ. Its usage is similar to pstricks and the standard picture environment. PGF works with plain (pdf-)TeX, (pdf-)LaTeX, and ConTeXt. Unlike pstricks, it can produce either PostScript or PDF output.
33 lines
841 B
Makefile
33 lines
841 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2006/12/06 00:49:00 wiz Exp $
|
|
#
|
|
|
|
DISTNAME= pgf-1.10
|
|
PKGNAME= tex-${DISTNAME}
|
|
CATEGORIES= print graphics
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=pgf/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://pgf.sourceforge.net/
|
|
COMMENT= Graphic systems for TeX
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
USE_DIRS+= texmf-1.4
|
|
|
|
.include "../../print/teTeX/module.mk"
|
|
|
|
do-build:
|
|
|
|
do-install:
|
|
cd ${WRKSRC}/context && \
|
|
pax -ppa -rw pgf ${PKG_LOCALTEXMFPREFIX}/tex/context/
|
|
cd ${WRKSRC}/doc/generic && \
|
|
pax -ppa -rw pgf ${PKG_LOCALTEXMFPREFIX}/doc/generic/
|
|
cd ${WRKSRC}/generic && \
|
|
pax -ppa -rw pgf ${PKG_LOCALTEXMFPREFIX}/tex/generic/
|
|
cd ${WRKSRC}/latex && \
|
|
pax -ppa -rw pgf ${PKG_LOCALTEXMFPREFIX}/tex/latex/
|
|
cd ${WRKSRC}/plain && \
|
|
pax -ppa -rw pgf ${PKG_LOCALTEXMFPREFIX}/tex/plain/
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|