From owner-svn-ports-head@FreeBSD.ORG Tue Jun 4 18:45:49 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 1B128F68; Tue, 4 Jun 2013 18:45:49 +0000 (UTC) (envelope-from pgj@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 09CD81561; Tue, 4 Jun 2013 18:45:49 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r54IjmZk013927; Tue, 4 Jun 2013 18:45:48 GMT (envelope-from pgj@svn.freebsd.org) Received: (from pgj@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r54Ijm0W013922; Tue, 4 Jun 2013 18:45:48 GMT (envelope-from pgj@svn.freebsd.org) Message-Id: <201306041845.r54Ijm0W013922@svn.freebsd.org> From: Gabor Pali Date: Tue, 4 Jun 2013 18:45:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r319892 - in head/print: . latex-ifluatex X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 Jun 2013 18:45:49 -0000 Author: pgj Date: Tue Jun 4 18:45:47 2013 New Revision: 319892 URL: http://svnweb.freebsd.org/changeset/ports/319892 Log: ifluatex –- provides the \ifluatex switch The package looks for LuaTEX regardless of its mode and provides the switch \ifluatex; it works with Plain TEX or LATEX. The package is part of the oberdiek bundle. WWW: http://www.ctan.org/pkg/ifluatex PR: ports/179146 Requested by: Omar Thameen Added: head/print/latex-ifluatex/ head/print/latex-ifluatex/Makefile (contents, props changed) head/print/latex-ifluatex/distinfo (contents, props changed) head/print/latex-ifluatex/pkg-descr (contents, props changed) head/print/latex-ifluatex/pkg-plist (contents, props changed) Modified: head/print/Makefile Modified: head/print/Makefile ============================================================================== --- head/print/Makefile Tue Jun 4 18:30:57 2013 (r319891) +++ head/print/Makefile Tue Jun 4 18:45:47 2013 (r319892) @@ -141,6 +141,7 @@ SUBDIR += latex-csquotes SUBDIR += latex-etoolbox SUBDIR += latex-feynmf + SUBDIR += latex-ifluatex SUBDIR += latex-keystroke SUBDIR += latex-logpap SUBDIR += latex-logreq Added: head/print/latex-ifluatex/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/print/latex-ifluatex/Makefile Tue Jun 4 18:45:47 2013 (r319892) @@ -0,0 +1,47 @@ +# $FreeBSD$ + +PORTNAME= latex-ifluatex +PORTVERSION= 1.3 +CATEGORIES= print +MASTER_SITES= ${MASTER_SITE_TEX_CTAN} +MASTER_SITE_SUBDIR= macros/latex/contrib/oberdiek +DISTFILES= ifluatex.dtx ${DOC_FILES} +DIST_SUBDIR= ${PORTNAME} + +MAINTAINER= ports@FreeBSD.org +COMMENT= LaTeX package that provides the \ifluatex switch + +USE_TEX= latex +PLIST_SUB= TEXMFLOCAL=${TEXMFLOCAL} MKTEXLSR=${MKTEXLSR} \ + CLASSDIR=${CLASSDIR} + +TEXMFLOCAL= share/texmf-local +TEXMFLOCAL_LSR= ${LOCALBASE}/${TEXMFLOCAL}/ls-R +MKTEXLSR= ${LOCALBASE}/bin/mktexlsr +TEX_BIN= ${LOCALBASE}/bin/etex +CLASSDIR= ${TEXMFLOCAL}/tex/latex/${PORTNAME:S/^latex-//} +WRKSRC= ${WRKDIR}/${PORTNAME:S/^latex-//} + +CLASS_FILES= ifluatex.dtx ifluatex.sty + +DOC_FILES= ifluatex.pdf + +do-extract: + ${MKDIR} ${WRKSRC} + cd ${DISTDIR}/${DIST_SUBDIR} && ${CP} ${DISTFILES} ${WRKSRC} + +do-build: + cd ${WRKSRC} && ${TEX_BIN} ifluatex.dtx + +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 Added: head/print/latex-ifluatex/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/print/latex-ifluatex/distinfo Tue Jun 4 18:45:47 2013 (r319892) @@ -0,0 +1,4 @@ +SHA256 (latex-ifluatex/ifluatex.dtx) = 79161f486907de3f6ceefb8be93a182a80f29cf84001a684486b6d5cdb7a21e2 +SIZE (latex-ifluatex/ifluatex.dtx) = 26202 +SHA256 (latex-ifluatex/ifluatex.pdf) = 63a938fb257ab79f831385857b07a3a2c527d98391fdf2548dcea9d0370ef4e0 +SIZE (latex-ifluatex/ifluatex.pdf) = 129761 Added: head/print/latex-ifluatex/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/print/latex-ifluatex/pkg-descr Tue Jun 4 18:45:47 2013 (r319892) @@ -0,0 +1,7 @@ +ifluatex –- provides the \ifluatex switch + +The package looks for LuaTEX regardless of its mode and provides the +switch \ifluatex; it works with Plain TEX or LATEX. The package is part +of the oberdiek bundle. + +WWW: http://www.ctan.org/pkg/ifluatex Added: head/print/latex-ifluatex/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/print/latex-ifluatex/pkg-plist Tue Jun 4 18:45:47 2013 (r319892) @@ -0,0 +1,8 @@ +@comment $FreeBSD$ +%%PORTDOCS%%%%DOCSDIR%%/ifluatex.pdf +%%PORTDOCS%%@dirrm %%DOCSDIR%% +%%CLASSDIR%%/ifluatex.dtx +%%CLASSDIR%%/ifluatex.sty +@dirrm %%CLASSDIR%% +@exec %%MKTEXLSR%% +@unexec %%MKTEXLSR%%