blob: 7543057ac853eb28dcf48b76aa12a986f5caa385 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# 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>
|