mirror of
https://git.freebsd.org/ports.git
synced 2025-06-03 03:46:30 -04:00
add csv2latex 20030501
Converts a well formed csv file to a LaTeX document
This commit is contained in:
parent
398cf34483
commit
91bfcd9f17
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=81354
5 changed files with 39 additions and 0 deletions
|
@ -29,6 +29,7 @@
|
|||
SUBDIR += cost
|
||||
SUBDIR += crimson
|
||||
SUBDIR += cs-aspell
|
||||
SUBDIR += csv2latex
|
||||
SUBDIR += cwtext
|
||||
SUBDIR += cy-aspell
|
||||
SUBDIR += da-aspell
|
||||
|
|
32
textproc/csv2latex/Makefile
Normal file
32
textproc/csv2latex/Makefile
Normal file
|
@ -0,0 +1,32 @@
|
|||
# ex:ts=8
|
||||
# Ports collection makefile for: csv2latex
|
||||
# Date created: May 19, 2003
|
||||
# Whom: ijliao
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= csv2latex
|
||||
PORTVERSION= 20030501
|
||||
CATEGORIES= textproc
|
||||
MASTER_SITES= http://brouits.free.fr/share/utils/
|
||||
DISTNAME= ${PORTNAME}
|
||||
EXTRACT_SUFX= .c
|
||||
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= Converts a well formed csv file to a LaTeX document
|
||||
|
||||
USE_GETOPT_LONG= yes
|
||||
NO_WRKSUBDIR= yes
|
||||
EXTRACT_CMD= ${CP}
|
||||
EXTRACT_BEFORE_ARGS= #
|
||||
EXTRACT_AFTER_ARGS= .
|
||||
|
||||
do-build:
|
||||
@cd ${WRKSRC} && \
|
||||
${CC} ${CPPFLAGS} -o ${PORTNAME} ${PORTNAME}.c ${LDFLAGS}
|
||||
|
||||
do-install:
|
||||
@${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
|
||||
|
||||
.include <bsd.port.mk>
|
1
textproc/csv2latex/distinfo
Normal file
1
textproc/csv2latex/distinfo
Normal file
|
@ -0,0 +1 @@
|
|||
MD5 (csv2latex.c) = d334bf0c814e1e8c76416b495fbe71eb
|
4
textproc/csv2latex/pkg-descr
Normal file
4
textproc/csv2latex/pkg-descr
Normal file
|
@ -0,0 +1,4 @@
|
|||
csv2latex converts a well formed csv file (as done by OpenOffice.org) to
|
||||
a LaTeX document.
|
||||
|
||||
WWW: http://brouits.free.fr/csv2latex/
|
1
textproc/csv2latex/pkg-plist
Normal file
1
textproc/csv2latex/pkg-plist
Normal file
|
@ -0,0 +1 @@
|
|||
bin/csv2latex
|
Loading…
Add table
Reference in a new issue