1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-27 00:57:50 +00:00
freebsd-ports/print/latex-beamer/Makefile
Hiroki Sato caccfc1f1d Update to 3.07. Changes include:
- LyX layout removed since it is now part of the LyX
          development tree.
        - Cleaned up documentation.
        - Cleaned up license chaos and removed all possibly
          copyrighted material.
        - Fixed incorrect subsubsections in vertical navigation bars.
        - Fixed problem with overlay specifications in amsmath
          environments.
        - Fixed superfluous \show in beamerthemeshadow.sty
        - Fixed color problem in beamer boxes with rounded corners.
        - Fixed problem with frametitle syntax in fragile frames.
        - Fixed missing frame subtitles in article mode.
        - Added french solution translations (due to Philippe De Sousa).
2007-03-30 05:19:08 +00:00

67 lines
1.9 KiB
Makefile

# New ports collection makefile for: latex-beamer
# Date created: 24 Jan 2004
# Whom: hrs@FreeBSD.org
#
# $FreeBSD$
PORTNAME= latex-beamer
PORTVERSION= 3.07
CATEGORIES= print
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= hrs@FreeBSD.org
COMMENT= A LaTeX class to create a beamer presentation
BUILD_DEPENDS= mktexlsr:${PORTSDIR}/print/teTeX-base
RUN_DEPENDS= latex:${PORTSDIR}/print/teTeX-base \
${LOCALBASE}/${TEXMFDIR}/tex/latex/pgf/basiclayer/pgf.sty:${PORTSDIR}/print/latex-pgf
NO_BUILD= YES
PLIST= ${WRKDIR}/pkg-plist
TEXMFDIR= share/texmf
TEXMFDIR_LSR= ${LOCALBASE}/${TEXMFDIR}/ls-R
MKTEXLSR= ${LOCALBASE}/bin/mktexlsr
CLASSDIR= ${TEXMFDIR}/tex/latex/${PORTNAME:S/^latex-//}
CLASS_SUBDIRS= base emulation emacs examples extensions lyx themes
DOC_SUBDIRS= AUTHORS ChangeLog FILES INSTALL README TODO \
doc solutions
pre-install:
${RM} -f ${PLIST}
${TOUCH} ${PLIST}
cd ${WRKSRC} && ( \
${FIND} ${CLASS_SUBDIRS} -type f | \
${SED} -e "s%^%${CLASSDIR:S,^${PREFIX}/,,}/%"; \
${FIND} ${CLASS_SUBDIRS} -type d | \
${SORT} -r | ${SED} -e "s,^,@dirrm ${CLASSDIR:S,^${PREFIX}/,,}/,"; \
) >> ${PLIST}
.if !defined(NOPORTDOCS)
cd ${WRKSRC} && ( \
${FIND} ${DOC_SUBDIRS} -type f | \
${SED} -e "s%^%${DOCSDIR:S,^${PREFIX}/,,}/%"; \
${FIND} ${DOC_SUBDIRS} -type d | \
${SORT} -r | ${SED} -e "s%^%@dirrm ${DOCSDIR:S,^${PREFIX}/,,}/%"; \
${ECHO_CMD} "@dirrm ${DOCSDIR:S,^${PREFIX}/,,}"; \
) >> ${PLIST}
.endif
${ECHO_CMD} "@unexec ${MKTEXLSR} ${PREFIX}/${TEXMFDIR}" >> ${PLIST}
${ECHO_CMD} "@exec ${MKTEXLSR} ${PREFIX}/${TEXMFDIR}" >> ${PLIST}
do-install:
${MKDIR} ${PREFIX}/${CLASSDIR}
( cd ${WRKSRC} && ${TAR} cf - ${CLASS_SUBDIRS} ) | \
( cd ${PREFIX}/${CLASSDIR} && ${TAR} xf - )
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
( cd ${WRKSRC} && ${TAR} cf - ${DOC_SUBDIRS} ) | \
( cd ${DOCSDIR} && ${TAR} xf - )
.endif
post-install:
${MKTEXLSR} ${PREFIX}/${TEXMFDIR}
.include <bsd.port.mk>