d4f0d0048a
- Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}. - Bump PORTREVISION for ports intalling files in ${X11BASE}.
37 lines
774 B
Makefile
37 lines
774 B
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: lhs2TeX
|
|
# Date created: April 24, 2007
|
|
# Whom: mainland@apeiron.net
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= lhs2tex
|
|
PORTVERSION= 1.12
|
|
PORTREVISION= 1
|
|
CATEGORIES= devel haskell
|
|
MASTER_SITES= http://www.informatik.uni-bonn.de/~loeh/${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_BZIP2= yes
|
|
USE_GMAKE= yes
|
|
HAS_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --prefix=${PREFIX} \
|
|
--datadir=${DATADIR} \
|
|
--docdir=${DOCSDIR} \
|
|
--mandir=${MANPREFIX}/man
|
|
|
|
.if defined(NOPORTDOCS)
|
|
INSTALL_TARGET=install
|
|
.else
|
|
INSTALL_TARGET=install install-doc
|
|
.endif
|
|
|
|
MAN1= lhs2TeX.1
|
|
|
|
.include <bsd.port.mk>
|