diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2008-11-13 21:37:58 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2008-11-13 21:37:58 +0000 |
commit | 14e392f07586be14074ac2240433cb83243227b1 (patch) | |
tree | c907f0368bae78b3a3c7ed50e25d70b3250645b2 | |
parent | f6e1886141ac2bdad9ebdd9770158a306982c6a5 (diff) | |
download | ports-14e392f07586be14074ac2240433cb83243227b1.tar.gz ports-14e392f07586be14074ac2240433cb83243227b1.zip |
Notes
-rw-r--r-- | textproc/Makefile | 1 | ||||
-rw-r--r-- | textproc/html2tex/Makefile | 31 | ||||
-rw-r--r-- | textproc/html2tex/distinfo | 3 | ||||
-rw-r--r-- | textproc/html2tex/pkg-descr | 4 |
4 files changed, 39 insertions, 0 deletions
diff --git a/textproc/Makefile b/textproc/Makefile index 4d5adf3ae6bb..e01ecf8abd00 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -212,6 +212,7 @@ SUBDIR += html SUBDIR += html-pretty SUBDIR += html2fo + SUBDIR += html2tex SUBDIR += html2text SUBDIR += htmldoc SUBDIR += htmlise diff --git a/textproc/html2tex/Makefile b/textproc/html2tex/Makefile new file mode 100644 index 000000000000..ec617d2bb8aa --- /dev/null +++ b/textproc/html2tex/Makefile @@ -0,0 +1,31 @@ +# New ports collection makefile for: html2tex +# Date created: Nov 5 2008 +# Whom: martin.dieringer@gmx.de +# +# $FreeBSD$ +# + +PORTNAME= html2tex +PORTVERSION= 2.7 +CATEGORIES= textproc +MASTER_SITES= http://www.iwriteiam.nl/ +DISTNAME= html2tex_c.txt +EXTRACT_SUFX= # empty + +MAINTAINER= martin.dieringer@gmx.de +COMMENT= HTML to LaTeX converter, last modified 2008 + +PLIST_FILES= bin/html2tex +NO_WRKSUBDIR= yes + +do-extract: + ${MKDIR} ${WRKSRC} + ${CP} ${DISTDIR}/${DISTNAME} ${WRKSRC}/html2tex.c + +do-build: + cd ${WRKSRC} && ${CC} -o html2tex html2tex.c + +do-install: + cd ${WRKSRC} && ${CP} html2tex ${PREFIX}/bin + +.include <bsd.port.mk> diff --git a/textproc/html2tex/distinfo b/textproc/html2tex/distinfo new file mode 100644 index 000000000000..7492ad22aa2c --- /dev/null +++ b/textproc/html2tex/distinfo @@ -0,0 +1,3 @@ +MD5 (html2tex_c.txt) = 434eac6c744109dd88a9fa0e76384337 +SHA256 (html2tex_c.txt) = 28fe63ed5a23548d6c0bd09684791a04e36bde02a1470ab8ca04e4a32ba5bf28 +SIZE (html2tex_c.txt) = 147398 diff --git a/textproc/html2tex/pkg-descr b/textproc/html2tex/pkg-descr new file mode 100644 index 000000000000..51f20cac731c --- /dev/null +++ b/textproc/html2tex/pkg-descr @@ -0,0 +1,4 @@ +A program which can be used to converts a single HTML file or a collection +of related HTML files into a single LaTeX file. + +WWW: http://www.iwriteiam.nl/html2tex.html |