summaryrefslogtreecommitdiff
path: root/textproc/hs-pandoc
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2008-05-31 23:01:15 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2008-05-31 23:01:15 +0000
commita54fe1ca9c33931d7c4381a84ee11454f9831c08 (patch)
tree16cc7f849128603b27ba13f7bdb8ae11e1eadd30 /textproc/hs-pandoc
parent- Update to 1.11.3 (diff)
This commit was manufactured by cvs2svn to create tag 'RELEASE_5_EOL'.5-eol
Diffstat (limited to 'textproc/hs-pandoc')
-rw-r--r--textproc/hs-pandoc/Makefile43
-rw-r--r--textproc/hs-pandoc/distinfo3
-rw-r--r--textproc/hs-pandoc/pkg-descr19
3 files changed, 0 insertions, 65 deletions
diff --git a/textproc/hs-pandoc/Makefile b/textproc/hs-pandoc/Makefile
deleted file mode 100644
index 07953dd1f80a..000000000000
--- a/textproc/hs-pandoc/Makefile
+++ /dev/null
@@ -1,43 +0,0 @@
-# New ports collection makefile for: pandoc
-# Date created: 9 February 2007
-# Whom: John MacFarlane <jgm@berkeley.edu>
-#
-# $FreeBSD$
-#
-
-PORTNAME= pandoc
-PORTVERSION= 0.46
-CATEGORIES= textproc haskell
-MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE}
-
-MAINTAINER= jgm@berkeley.edu
-COMMENT= A general markup converter
-
-BUILD_DEPENDS= ghc>=6.6:${PORTSDIR}/lang/ghc
-
-MANCOMPRESSED= no
-MAN1= pandoc.1 markdown2pdf.1 html2markdown.1 hsmarkdown.1
-
-USE_GMAKE= yes
-USE_PERL5= yes
-
-PLIST_FILES= bin/pandoc bin/markdown2pdf bin/html2markdown bin/hsmarkdown
-PORTDOCS= BUGS README README.html
-SCRIPTS= hsmarkdown html2markdown markdown2pdf
-
-do-install:
- @${INSTALL_PROGRAM} ${WRKSRC}/dist/build/pandoc/pandoc ${PREFIX}/bin
-.for script in ${SCRIPTS}
- @${INSTALL_SCRIPT} ${WRKSRC}/${script} ${PREFIX}/bin
-.endfor
-.for man in ${MAN1}
- @${INSTALL_MAN} ${WRKSRC}/man/man1/${man} ${PREFIX}/man/man1
-.endfor
-.if !defined(NOPORTDOCS)
- @${MKDIR} ${DOCSDIR}
-.for doc in ${PORTDOCS}
- @${INSTALL_DATA} ${WRKSRC}/${doc} ${DOCSDIR}
-.endfor
-.endif
-
-.include <bsd.port.mk>
diff --git a/textproc/hs-pandoc/distinfo b/textproc/hs-pandoc/distinfo
deleted file mode 100644
index d4f72112d775..000000000000
--- a/textproc/hs-pandoc/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 (pandoc-0.46.tar.gz) = 9a92a800678767393adab6eb1b69c04b
-SHA256 (pandoc-0.46.tar.gz) = 40d75fb5bf0d8757d896b3ee68cab6c7ac4e351c47ce91feb77a7896e7194abb
-SIZE (pandoc-0.46.tar.gz) = 408031
diff --git a/textproc/hs-pandoc/pkg-descr b/textproc/hs-pandoc/pkg-descr
deleted file mode 100644
index 1ef530270b0a..000000000000
--- a/textproc/hs-pandoc/pkg-descr
+++ /dev/null
@@ -1,19 +0,0 @@
-Pandoc is a command-line tool for converting from one markup format
-to another. It can read markdown and (subsets of) reStructuredText,
-HTML, and LaTeX, and it can write markdown, reStructuredText, HTML,
-LaTeX, ConTeXt, DocBook, RTF, groff man pages, and S5 HTML slide shows.
-
-Pandoc extends standard markdown syntax with footnotes, embedded LaTeX,
-and other features. A compatibility mode is provided for those who
-need a drop-in replacement for Markdown.pl. Included wrapper scripts
-make it easy to convert markdown documents to PDFs and to convert web
-pages to markdown documents.
-
-In contrast to existing tools for converting markdown to HTML, which
-use regex substitutions, pandoc has a modular design: it consists of a
-set of readers, which parse text in a given format and produce a native
-representation of the document, and a set of writers, which convert
-this native representation into a target format. Thus, adding an input
-or output format requires only adding a reader or writer.
-
-WWW: http://johnmacfarlane.net/pandoc/