1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-16 03:24:07 +00:00
freebsd-ports/print/latex-caption/Makefile
Hiroki Sato ce84e0ca22 Update to v3.0i(2006/01/12). Changes include:
- \caption@setkeys: introduced
- \caption@settype: Optional argument added
- \caption@@make: Uses \cs{caption@slc},
	Bugfix: \caption@calcmargin inside single-line-check
	        replaced by \relax,
	Bugfix: \caption@startbox will always be typeset in horizontal mode
- \caption@calcmargin: Takes care of list environment now
- KOMAScript compatibility commands added
- \ContinuedFloat: Optional argument and call of \caption@@ContinuedFloat added
- \rotcaption: Rewritten, works with \package{hyperref} now
- \rotcaptionof: New
- \@makerotcaption: Rewritten, should finally work proper now
- \endSC@FLOAT: \@listdepth\z@ added
2006-01-26 16:33:36 +00:00

62 lines
1.7 KiB
Makefile

# New ports collection makefile for: latex-caption
# Date created: 24 Jan 2004
# Whom: hrs@FreeBSD.org
#
# $FreeBSD$
PORTNAME= latex-caption
PORTVERSION= 3.0.20060112
PORTREVISION= 0
CATEGORIES= print
MASTER_SITES= ftp://ftp.ctan.org/tex-archive/%SUBDIR%/ \
${MASTER_SITE_TEX_CTAN}
MASTER_SITE_SUBDIR= macros/latex/contrib/caption
DISTFILES= caption.dtx caption2.dtx caption.ins ${DOC_FILES}
DIST_SUBDIR= ${PORTNAME}
MAINTAINER= hrs@FreeBSD.org
COMMENT= A LaTeX package that supports customization of captions
BUILD_DEPENDS= mktexlsr:${PORTSDIR}/print/teTeX-base \
${TEXMF_LSR}:${PORTSDIR}/print/tex-texmflocal
RUN_DEPENDS= latex:${PORTSDIR}/print/teTeX-base \
${TEXMF_LSR}:${PORTSDIR}/print/tex-texmflocal
PLIST_SUB= MKTEXLSR=${MKTEXLSR} \
CLASSDIR=${CLASSDIR}
USE_GMAKE= YES
TEXMFDIR= share/texmf
TEXMFLOCALDIR= share/texmf-local
TEXMF_LSR= ${LOCALBASE}/${TEXMFDIR}/ls-R
TEXMFLOCAL_LSR= ${LOCALBASE}/${TEXMFLOCALDIR}/ls-R
MKTEXLSR= ${LOCALBASE}/bin/mktexlsr
TEX_BIN= ${LOCALBASE}/bin/etex
YES_CMD= /usr/bin/yes
CLASSDIR= ${TEXMFDIR}/tex/latex/${PORTNAME:S/^latex-//}
WRKSRC= ${WRKDIR}/${PORTNAME:S/^latex-//}
CLASS_FILES= caption.dtx caption.sty caption.ins \
caption2.dtx caption2.sty caption3.sty
DOC_FILES= anleitung.pdf anleitung.tex caption.pdf caption2.pdf
do-extract:
${MKDIR} ${WRKSRC}
cd ${DISTDIR}/${DIST_SUBDIR} && ${CP} ${DISTFILES} ${WRKSRC}
do-build:
cd ${WRKSRC} && ${YES_CMD} | ${TEX_BIN} caption.ins
do-install:
${MKDIR} ${PREFIX}/${CLASSDIR}
${INSTALL_DATA} ${CLASS_FILES:S@^@${WRKSRC}/@} ${PREFIX}/${CLASSDIR}
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${DOC_FILES:S@^@${WRKSRC}/@} ${DOCSDIR}
.endif
post-install:
@${MKTEXLSR}
.include <bsd.port.mk>