94f5981ff9
Version 1.10: - Renamed \pgf@sys@pdf@mark to \pgfsyspdfmark. - Fixed the ConTeXt support so that it is usable (which is wasn't). Version 1.09: - Added \usepgflibrary and \usetikzlibrary to simplify adding new libraries. - Added native ConTeXt support in the form of module wrappers. - Added patterns. - Added crosses snake. - Added to and edge path operations. - Added to path library. In particular, this gives decent curved paths. - Added tikz automata library. - Added tikz er diagram library. - Added tikz Petri net library. - Added tikz mindmap library. - Added access to nodes in other pictures (!). - Added extended baseline setting. - Added functionality to add new coordinate systems. - Added polar xy coordinate system. - Added diamond shape (!). - Added plot mark phase, repeat and indices. - Added text height and text depth options. - Added label and pin options. - Added automatic node placement (!). - Added pgfsys-dvi.def for pure dvi mode. Supports only black and white drawing (not documented and not really usable). - Added 3d library (not documented and not really usable). - Cleared up license chaos. - Reorganized library documentation. - Removed pgflibraryautomata, use pgflibrarytikzautomata instead. - Fixed tree level option bug. - Fixed missing options for coordinates. - Fixed bug in TikZ parabola code. - Fixed bug in TikZ snake cycle code. - Fixed bug with empty list in pgffor - Fixed bug in code for insertion of dvips header specials. - Fixed bug in shading code (wrong bigpoint correction). - Fixed bug #1472666. - Fixed bug #1473255. - Fixed bug #1526175. - Fixed bug #1542512. - Fixed bug in TikZ transformation code for nested pictures. - Fixed patch #1443606. - Fixed path #1526178. PR: ports/108585
45 lines
1.1 KiB
Makefile
45 lines
1.1 KiB
Makefile
# New ports collection makefile for: latex-pgf
|
|
# Date created: 24 Jan 2004
|
|
# Whom: hrs@FreeBSD.org
|
|
#
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= latex-pgf
|
|
PORTVERSION= 1.10
|
|
CATEGORIES= print
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= pgf
|
|
DISTNAME= ${PORTNAME:S/^latex-//}-${PORTVERSION}
|
|
|
|
MAINTAINER= hrs@FreeBSD.org
|
|
COMMENT= A LaTeX package for TeX Portable Graphic Format
|
|
|
|
BUILD_DEPENDS= mktexlsr:${PORTSDIR}/print/teTeX-base
|
|
RUN_DEPENDS= latex:${PORTSDIR}/print/teTeX-base
|
|
|
|
NO_BUILD= YES
|
|
PLIST_SUB= MKTEXLSR=${MKTEXLSR} \
|
|
CLASSDIR=${CLASSDIR} \
|
|
TEXMFDIR=${TEXMFDIR}
|
|
|
|
TEXMFDIR= share/texmf
|
|
TEXMFDIR_LSR= ${LOCALBASE}/${TEXMFDIR}/ls-R
|
|
MKTEXLSR= ${LOCALBASE}/bin/mktexlsr
|
|
WRKSRC= ${WRKDIR}/${PORTNAME:S/^latex-//}-${PORTVERSION}
|
|
CLASSDIR= ${TEXMFDIR}/tex
|
|
|
|
do-install:
|
|
.for C in context generic latex plain
|
|
${MKDIR} ${PREFIX}/${CLASSDIR}/${C}/${PORTNAME:S/^latex-//}
|
|
${CP} -R ${WRKSRC}/${C}/pgf/* \
|
|
${PREFIX}/${CLASSDIR}/${C}/${PORTNAME:S/^latex-//}
|
|
.endfor
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
${CP} -R ${WRKSRC}/doc/generic/pgf/* ${DOCSDIR}
|
|
.endif
|
|
|
|
post-install:
|
|
${MKTEXLSR} ${PREFIX}/${TEXMFDIR}
|
|
|
|
.include <bsd.port.mk>
|