diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2010-10-01 12:27:11 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2010-10-01 12:27:11 +0000 |
commit | fc8b8c2a4d1d6b88abcea89234a62d2284c79544 (patch) | |
tree | de42026e66e8fe45490a4ee23b3cb43d459ecb51 | |
parent | b8f56c104ca29cf0bf177b04a08520f211fb664d (diff) | |
download | ports-fc8b8c2a4d1d6b88abcea89234a62d2284c79544.tar.gz ports-fc8b8c2a4d1d6b88abcea89234a62d2284c79544.zip |
Notes
-rw-r--r-- | print/Makefile | 1 | ||||
-rw-r--r-- | print/latex-logreq/Makefile | 74 | ||||
-rw-r--r-- | print/latex-logreq/distinfo | 3 | ||||
-rw-r--r-- | print/latex-logreq/pkg-descr | 3 |
4 files changed, 81 insertions, 0 deletions
diff --git a/print/Makefile b/print/Makefile index 3cd446c0c6c9..a11614d6fba5 100644 --- a/print/Makefile +++ b/print/Makefile @@ -155,6 +155,7 @@ SUBDIR += latex-feynmf SUBDIR += latex-keystroke SUBDIR += latex-logpap + SUBDIR += latex-logreq SUBDIR += latex-mathabx SUBDIR += latex-pgf SUBDIR += latex-prettyref diff --git a/print/latex-logreq/Makefile b/print/latex-logreq/Makefile new file mode 100644 index 000000000000..f34d07bd5825 --- /dev/null +++ b/print/latex-logreq/Makefile @@ -0,0 +1,74 @@ +# New ports collection makefile for: latex-logreq +# Date created: 15 Aug 2010 +# Whom: idolum@users.sourceforge.net +# +# $FreeBSD$ + +PORTNAME= logreq +PORTVERSION= 1.0 +CATEGORIES= print +MASTER_SITES= ${MASTER_SITE_TEX_CTAN} +MASTER_SITE_SUBDIR= macros/latex/contrib +PKGNAMEPREFIX= latex- +DISTNAME= ${PORTNAME} + +MAINTAINER= idolum@users.sourceforge.net +COMMENT= Support for automation of the LaTeX workflow + +BUILD_DEPENDS= mktexlsr:${PORTSDIR}/print/teTeX-base \ + ${TEXMFLOCAL_LSR}:${PORTSDIR}/print/tex-texmflocal +RUN_DEPENDS= latex:${PORTSDIR}/print/teTeX-base \ + ${TEXMFLOCAL_LSR}:${PORTSDIR}/print/tex-texmflocal \ + ${LOCALBASE}/${TEXMFLOCAL}/tex/latex/etoolbox/etoolbox.sty:${PORTSDIR}/print/latex-etoolbox + +USE_ZIP= YES +NO_BUILD= YES +PLIST= ${WRKDIR}/pkg-plist + +TEXMFLOCAL= share/texmf-local +TEXMFLOCAL_LSR= ${LOCALBASE}/${TEXMFLOCAL}/ls-R +MKTEXLSR= ${LOCALBASE}/bin/mktexlsr +TEX_BIN= ${LOCALBASE}/bin/latex + +CLASSNAME= ${PORTNAME} +CLASSDIR= ${TEXMFLOCAL}/tex/latex/${CLASSNAME} +DOCSDIR= ${PREFIX}/share/doc/${PKGNAMEPREFIX}${PORTNAME} +EXAMPLESDIR= ${PREFIX}/share/examples/${PKGNAMEPREFIX}${PORTNAME} + +CLASS_FILES= logreq.def logreq.sty +DOC_FILES= README + +WRKSRC= ${WRKDIR}/${CLASSNAME} + +pre-install: + (for F in ${CLASS_FILES}; do \ + ${ECHO_CMD} "${CLASSDIR}/$${F}"; \ + done;) > ${PLIST} + ${ECHO_CMD} "@dirrm ${CLASSDIR}" >> ${PLIST} +.if !defined(NOPORTDOCS) + (for F in ${DOC_FILES}; do \ + ${ECHO_CMD} "${DOCSDIR:S,^${PREFIX}/,,}/$${F}"; \ + done;\ + ${ECHO_CMD} "@dirrm ${DOCSDIR:S,^${PREFIX}/,,}" ) >> ${PLIST} + (for F in `${LS} ${WRKSRC}/examples`; do \ + ${ECHO_CMD} "${EXAMPLESDIR:S,^${PREFIX}/,,}/$${F}"; \ + done;) >> ${PLIST} + ${ECHO_CMD} "@dirrm ${EXAMPLESDIR:S,^${PREFIX}/,,}" >> ${PLIST} +.endif + ${ECHO_CMD} "@exec ${MKTEXLSR}" >> ${PLIST} + ${ECHO_CMD} "@unexec ${MKTEXLSR}" >> ${PLIST} + +do-install: + ${MKDIR} ${PREFIX}/${CLASSDIR} + ${INSTALL_DATA} ${CLASS_FILES:S@^@${WRKSRC}/@} ${PREFIX}/${CLASSDIR} +.if !defined(NOPORTDOCS) + ${MKDIR} ${DOCSDIR} + ${MKDIR} ${EXAMPLESDIR} + ${INSTALL_DATA} ${DOC_FILES:S@^@${WRKSRC}/@} ${DOCSDIR} + (cd ${WRKSRC}/examples && ${COPYTREE_SHARE} \* ${EXAMPLESDIR}) +.endif + +post-install: + ${MKTEXLSR} + +.include <bsd.port.mk> diff --git a/print/latex-logreq/distinfo b/print/latex-logreq/distinfo new file mode 100644 index 000000000000..9afc797db370 --- /dev/null +++ b/print/latex-logreq/distinfo @@ -0,0 +1,3 @@ +MD5 (logreq.zip) = 2ca100558f7c683aff9f1a0065b7a08f +SHA256 (logreq.zip) = 14b1a51c4b4204be70d78c1789a89e7d28a3ee1b43f341d0f50f606d2c97f517 +SIZE (logreq.zip) = 11928 diff --git a/print/latex-logreq/pkg-descr b/print/latex-logreq/pkg-descr new file mode 100644 index 000000000000..9653fa65148a --- /dev/null +++ b/print/latex-logreq/pkg-descr @@ -0,0 +1,3 @@ +A package to support the automation of LaTeX workflows. + +WWW: http://www.ctan.org/tex-archive/macros/latex/contrib/logreq/ |