Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 14 Apr 2011 17:01:50 -0700 (PDT)
From:      Raphael Kubo da Costa <kubito@gmail.com>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   ports/156413: [NEW PORT] print/latex-ltablex: Combines the features of both the tabularx and longtable packages
Message-ID:  <4da78aee.045f970a.422c.6d96@mx.google.com>
Resent-Message-ID: <201104150010.p3F0A63c069910@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         156413
>Category:       ports
>Synopsis:       [NEW PORT] print/latex-ltablex: Combines the features of both the tabularx and longtable packages
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Fri Apr 15 00:10:06 UTC 2011
>Closed-Date:
>Last-Modified:
>Originator:     Raphael Kubo da Costa
>Release:        FreeBSD 8.2-STABLE amd64
>Organization:
>Environment:
System: FreeBSD gibbon 8.2-STABLE FreeBSD 8.2-STABLE #28: Sat Apr  2 16:53:16 BRT
>Description:
ltablex modifies the tabularx environment to combine the features of the
tabularx package (auto-sized columns in a fixed width table) with those
of the longtable package (multi-page tables).

WWW: http://www.ctan.org/tex-archive/macros/latex/contrib/ltablex/

Generated with FreeBSD Port Tools 0.99
>How-To-Repeat:
>Fix:

--- latex-ltablex-1.0.shar begins here ---
# This is a shell archive.  Save it in a file, remove anything before
# this line, and then unpack it by entering "sh file".  Note, it may
# create directories; files and directories will be owned by you and
# have default permissions.
#
# This archive contains:
#
#	latex-ltablex
#	latex-ltablex/pkg-descr
#	latex-ltablex/distinfo
#	latex-ltablex/Makefile
#
echo c - latex-ltablex
mkdir -p latex-ltablex > /dev/null 2>&1
echo x - latex-ltablex/pkg-descr
sed 's/^X//' >latex-ltablex/pkg-descr << 'c38ad01a4a353b0c39468d8a478ba400'
Xltablex modifies the tabularx environment to combine the features of the
Xtabularx package (auto-sized columns in a fixed width table) with those
Xof the longtable package (multi-page tables).
X
XWWW: http://www.ctan.org/tex-archive/macros/latex/contrib/ltablex/
c38ad01a4a353b0c39468d8a478ba400
echo x - latex-ltablex/distinfo
sed 's/^X//' >latex-ltablex/distinfo << 'bb28b5c09ea07ddf3712944c30b50be6'
XSHA256 (latex/ltablex.zip) = 776d341e7bebfb3d6d96d121ec981e1e37574b0c2410f7effa784e79dc0481f3
XSIZE (latex/ltablex.zip) = 235583
bb28b5c09ea07ddf3712944c30b50be6
echo x - latex-ltablex/Makefile
sed 's/^X//' >latex-ltablex/Makefile << '6abe544f5ddd258337d0ac4aa4df0cc5'
X# New ports collection makefile for:	print/latex-ltablex
X# Date created:		14 April 2011
X# Whom:			Raphael Kubo da Costa (kubito@gmail.com)
X#
X# $FreeBSD$
X
XPORTNAME=	ltablex
XPORTVERSION=	1.0
XCATEGORIES=	print
XMASTER_SITES=	${MASTER_SITE_TEX_CTAN}
XMASTER_SITE_SUBDIR=	macros/latex/contrib
XPKGNAMEPREFIX=	latex-
XDISTNAME=	${PORTNAME}
XDIST_SUBDIR=	latex
X
XMAINTAINER=	kubito@gmail.com
XCOMMENT=	Combines the features of both the tabularx and longtable packages
X
XBUILD_DEPENDS=	mktexlsr:${PORTSDIR}/print/teTeX-base \
X		${TEXMFLOCAL_LSR}:${PORTSDIR}/print/tex-texmflocal
XRUN_DEPENDS=	latex:${PORTSDIR}/print/teTeX-base \
X		${TEXMFLOCAL_LSR}:${PORTSDIR}/print/tex-texmflocal
X
XUSE_ZIP=	YES
XNO_BUILD=	YES
XPLIST=		${WRKDIR}/pkg-plist
X
XTEXMFLOCAL=	share/texmf-local
XTEXMFLOCAL_LSR=	${LOCALBASE}/${TEXMFLOCAL}/ls-R
XMKTEXLSR=	${LOCALBASE}/bin/mktexlsr
XTEX_BIN=	${LOCALBASE}/bin/latex
X
XCLASSNAME=	${PORTNAME}
XCLASSDIR=	${TEXMFLOCAL}/tex/latex/${CLASSNAME}
XDOCSDIR=	${PREFIX}/share/doc/${PKGNAMEPREFIX}${PORTNAME}
X
XCLASS_FILES=	ltablex.sty
XDOC_FILES=	ltablex.pdf ltablex.tex
X
XWRKSRC=		${WRKDIR}/${CLASSNAME}
X
Xpre-install:
X	(for F in ${CLASS_FILES}; do \
X			${ECHO_CMD} "${CLASSDIR}/$${F}"; \
X		done;) > ${PLIST}
X	${ECHO_CMD} "@dirrm ${CLASSDIR}" >> ${PLIST}
X.if !defined(NOPORTDOCS)
X	(for F in ${DOC_FILES}; do \
X		${ECHO_CMD} "${DOCSDIR:S,^${PREFIX}/,,}/$${F}"; \
X		done;\
X	${ECHO_CMD} "@dirrm ${DOCSDIR:S,^${PREFIX}/,,}" ) >> ${PLIST}
X.endif
X	${ECHO_CMD} "@exec ${MKTEXLSR}" >> ${PLIST}
X	${ECHO_CMD} "@unexec ${MKTEXLSR}" >> ${PLIST}
X
Xdo-install:
X	${MKDIR} ${PREFIX}/${CLASSDIR}
X	${INSTALL_DATA} ${CLASS_FILES:S@^@${WRKSRC}/@} ${PREFIX}/${CLASSDIR}
X.if !defined(NOPORTDOCS)
X	${MKDIR} ${DOCSDIR}
X	${INSTALL_DATA} ${DOC_FILES:S@^@${WRKSRC}/@} ${DOCSDIR}
X.endif
X
Xpost-install:
X	${MKTEXLSR}
X
X.include <bsd.port.mk>
6abe544f5ddd258337d0ac4aa4df0cc5
exit
--- latex-ltablex-1.0.shar ends here ---

>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?4da78aee.045f970a.422c.6d96>