summaryrefslogtreecommitdiff
path: root/textproc/hs-lhs2tex
diff options
context:
space:
mode:
Diffstat (limited to 'textproc/hs-lhs2tex')
-rw-r--r--textproc/hs-lhs2tex/Makefile41
-rw-r--r--textproc/hs-lhs2tex/distinfo3
-rw-r--r--textproc/hs-lhs2tex/files/patch-Makefile29
-rw-r--r--textproc/hs-lhs2tex/files/patch-configure66
-rw-r--r--textproc/hs-lhs2tex/pkg-descr4
-rw-r--r--textproc/hs-lhs2tex/pkg-plist18
6 files changed, 0 insertions, 161 deletions
diff --git a/textproc/hs-lhs2tex/Makefile b/textproc/hs-lhs2tex/Makefile
deleted file mode 100644
index 7543057ac853..000000000000
--- a/textproc/hs-lhs2tex/Makefile
+++ /dev/null
@@ -1,41 +0,0 @@
-# ex:ts=8
-# Ports collection makefile for: lhs2TeX
-# Date created: April 24, 2007
-# Whom: mainland@apeiron.net
-#
-# $FreeBSD$
-#
-
-PORTNAME= lhs2tex
-PORTVERSION= 1.13
-CATEGORIES= devel haskell
-MASTER_SITES= http://people.cs.uu.nl/andres/${PORTNAME}/
-
-MAINTAINER= mainland@apeiron.net
-COMMENT= A preprocessor to generate LaTeX code from literate Haskell sources
-
-BUILD_DEPENDS= ghc:${PORTSDIR}/lang/ghc \
- mktexlsr:${PORTSDIR}/print/teTeX-base
-
-USE_GMAKE= yes
-HAS_CONFIGURE= yes
-CONFIGURE_ARGS= --prefix=${PREFIX} \
- --datadir=${DATADIR} \
- --docdir=${DOCSDIR} \
- --mandir=${MANPREFIX}/man
-
-.include <bsd.port.pre.mk>
-
-.if defined(NOPORTDOCS)
-INSTALL_TARGET=install
-.else
-INSTALL_TARGET=install install-doc
-.endif
-
-MAN1= lhs2TeX.1
-
-.if ${OSVERSION} < 700042
-IGNORE= has a broken dependency
-.endif
-
-.include <bsd.port.post.mk>
diff --git a/textproc/hs-lhs2tex/distinfo b/textproc/hs-lhs2tex/distinfo
deleted file mode 100644
index 794c871dfcf8..000000000000
--- a/textproc/hs-lhs2tex/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 (lhs2tex-1.13.tar.gz) = 1173dbe6440f24918f3dc80d776e1f18
-SHA256 (lhs2tex-1.13.tar.gz) = 28282cb4afcc71785b092d358ffb33f5ec7585e50b392ae4fb6391d495a0836b
-SIZE (lhs2tex-1.13.tar.gz) = 601072
diff --git a/textproc/hs-lhs2tex/files/patch-Makefile b/textproc/hs-lhs2tex/files/patch-Makefile
deleted file mode 100644
index 7c56cbc22ebf..000000000000
--- a/textproc/hs-lhs2tex/files/patch-Makefile
+++ /dev/null
@@ -1,29 +0,0 @@
---- ./Makefile.orig Wed Apr 25 22:23:20 2007
-+++ ./Makefile Wed Apr 25 22:24:00 2007
-@@ -135,14 +135,12 @@
- print : Lhs2TeX.dvi
- $(DVIPS) -D600 -f Lhs2TeX.dvi | lpr -Pa -Zl
-
--install : bin doc
-+install : bin
- $(MKINSTDIR) $(DESTDIR)$(bindir)
- $(INSTALL) -m 755 lhs2TeX $(DESTDIR)$(bindir)
- $(MKINSTDIR) $(DESTDIR)$(stydir)
- $(INSTALL) -m 644 lhs2TeX.sty lhs2TeX.fmt $(DESTDIR)$(stydir)
- $(INSTALL) -m 644 Library/*.fmt $(DESTDIR)$(stydir)
-- $(MKINSTDIR) $(DESTDIR)$(docdir)
-- $(INSTALL) -m 644 doc/Guide2.pdf $(DESTDIR)$(docdir)
- $(MKINSTDIR) $(DESTDIR)$(mandir)/man1
- $(INSTALL) -m 644 lhs2TeX.1 $(DESTDIR)$(mandir)/man1
- ifeq ($(INSTALL_POLYTABLE),yes)
-@@ -157,6 +155,10 @@
- else
- echo "Please update the TeX filename database."
- endif
-+
-+install-doc : doc
-+ $(MKINSTDIR) $(DESTDIR)$(docdir)
-+ $(INSTALL) -m 644 doc/Guide2.pdf $(DESTDIR)$(docdir)
-
- srcdist : INSTALL doc
- if test -d $(DISTDIR); then $(RM) -rf $(DISTDIR); fi
diff --git a/textproc/hs-lhs2tex/files/patch-configure b/textproc/hs-lhs2tex/files/patch-configure
deleted file mode 100644
index b541e5b857f2..000000000000
--- a/textproc/hs-lhs2tex/files/patch-configure
+++ /dev/null
@@ -1,66 +0,0 @@
---- configure.orig 2008-02-19 01:11:52.000000000 -0500
-+++ configure 2008-02-19 01:42:57.000000000 -0500
-@@ -2637,54 +2637,6 @@
- POLYTABLE_INSTALL=yes
- fi
-
--if test "z$POLYTABLE_INSTALL" = "zyes"; then
--
--{ echo "$as_me:$LINENO: checking for the polytable package" >&5
--echo $ECHO_N "checking for the polytable package... $ECHO_C" >&6; }
--if test -x "$KPSEWHICH"; then
-- POLYTABLE="`$KPSEWHICH polytable.sty`"
--fi
--if test -f "$POLYTABLE"; then
-- { echo "$as_me:$LINENO: result: $POLYTABLE" >&5
--echo "${ECHO_T}$POLYTABLE" >&6; }
-- { echo "$as_me:$LINENO: checking for version of polytable" >&5
--echo $ECHO_N "checking for version of polytable... $ECHO_C" >&6; }
-- POLYTABLE_VERSION=`$GREP " v.* .polytable. package" $POLYTABLE | $SED -e "s/^.*v\(.*\) .polytable. package.*$/\1/"`
-- { echo "$as_me:$LINENO: result: $POLYTABLE_VERSION" >&5
--echo "${ECHO_T}$POLYTABLE_VERSION" >&6; }
--else
-- { echo "$as_me:$LINENO: result: no" >&5
--echo "${ECHO_T}no" >&6; }
--fi
--
-- # does polytable need to be installed?
-- { echo "$as_me:$LINENO: checking whether polytable needs to be installed" >&5
--echo $ECHO_N "checking whether polytable needs to be installed... $ECHO_C" >&6; }
-- POLYTABLE_INSTALL=no
-- if test -n $POLYTABLE; then
-- if ( IFS=".";
-- a="$POLYTABLE_VERSION"; b="0.8.2";
-- while test -n "$a$b"
-- do
-- set -- $a; h1="$1"; shift 2>/dev/null; a="$*"
-- set -- $b; h2="$1"; shift 2>/dev/null; b="$*"
-- test -n "$h1" || h1=0; test -n "$h2" || h2=0
-- test ${h1} -eq ${h2} || break
-- done
-- test ${h1} -lt ${h2}
-- )
--then
-- POLYTABLE_INSTALL=yes
--
--fi
--
-- else
-- POLYTABLE_INSTALL=yes
-- fi
-- { echo "$as_me:$LINENO: result: $POLYTABLE_INSTALL" >&5
--echo "${ECHO_T}$POLYTABLE_INSTALL" >&6; }
--fi
--
- # Extract the first word of "mktexlsr", so it can be a program name with args.
- set dummy mktexlsr; ac_word=$2
- { echo "$as_me:$LINENO: checking for $ac_word" >&5
-@@ -2727,7 +2679,7 @@
-
-
- # docdir and expansion
--docdir="$datadir/doc/$PACKAGE_TARNAME-$PACKAGE_VERSION"
-+#docdir="$datadir/doc/$PACKAGE_TARNAME-$PACKAGE_VERSION"
-
- stydir="$datadir/$PACKAGE_TARNAME-$PACKAGE_VERSION"
-
diff --git a/textproc/hs-lhs2tex/pkg-descr b/textproc/hs-lhs2tex/pkg-descr
deleted file mode 100644
index 9e915cafea0b..000000000000
--- a/textproc/hs-lhs2tex/pkg-descr
+++ /dev/null
@@ -1,4 +0,0 @@
-lhs2TeX is a preprocessor to generate LaTeX code from literate Haskell
-sources. It is released under the GPL.
-
-WWW: http://people.cs.uu.nl/andres/
diff --git a/textproc/hs-lhs2tex/pkg-plist b/textproc/hs-lhs2tex/pkg-plist
deleted file mode 100644
index 3946bfb10d13..000000000000
--- a/textproc/hs-lhs2tex/pkg-plist
+++ /dev/null
@@ -1,18 +0,0 @@
-bin/lhs2TeX
-share/texmf-local/tex/latex/polytable/lazylist.sty
-share/texmf-local/tex/latex/polytable/polytable.sty
-@dirrm share/texmf-local/tex/latex/polytable
-%%DATADIR%%/lhs2tex-1.13/colorcode.fmt
-%%DATADIR%%/lhs2tex-1.13/forall.fmt
-%%DATADIR%%/lhs2tex-1.13/greek.fmt
-%%DATADIR%%/lhs2tex-1.13/jfpcompat.fmt
-%%DATADIR%%/lhs2tex-1.13/lhs2TeX.fmt
-%%DATADIR%%/lhs2tex-1.13/lhs2TeX.sty
-%%DATADIR%%/lhs2tex-1.13/polycode.fmt
-%%DATADIR%%/lhs2tex-1.13/spacing.fmt
-@dirrm %%DATADIR%%/lhs2tex-1.13
-@dirrm %%DATADIR%%
-%%PORTDOCS%%%%DOCSDIR%%/Guide2.pdf
-%%PORTDOCS%%@dirrm %%DOCSDIR%%
-@exec %D/bin/mktexlsr
-@unexec %D/bin/mktexlsr