summaryrefslogtreecommitdiffstats
path: root/textproc/hs-citeproc-hs/Makefile
blob: 4bae8c548bd4443732b6eb2de3fcb28120106e89 (plain)
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
42
43
44
45
# $FreeBSD$

PORTNAME=	citeproc-hs
PORTVERSION=	0.3.6
CATEGORIES=	textproc haskell

MAINTAINER=	haskell@FreeBSD.org
COMMENT=	A Citation Style Language implementation in Haskell

LICENSE=	BSD

USE_CABAL=	json mtl pandoc-types>=1.8 parsec syb utf8-string xml

OPTIONS_DEFINE=		BIBUTILS HEXPAT NETWORK
OPTIONS_DEFAULT=	BIBUTILS HEXPAT NETWORK

BIBUTILS_DESC=		Use Chris Putnam's Bibutils
HEXPAT_DESC=		Use hexpat to parse XML
NETWORK_DESC=		Use network and HTTP to retrieve CSL file

.include "${.CURDIR}/../../lang/ghc/bsd.cabal.options.mk"

.if ${PORT_OPTIONS:MBIBUTILS}
CONFIGURE_ARGS+=	--flags="bibutils"
USE_CABAL+=		hs-bibutils>=0.3
.else
CONFIGURE_ARGS+=	--flags="-bibutils"
.endif

.if ${PORT_OPTIONS:MHEXPAT}
CONFIGURE_ARGS+=	--flags="hexpat"
USE_CABAL+=		hexpat>=0.20.2
.else
CONFIGURE_ARGS+=	--flags="-hexpat"
.endif

.if ${PORT_OPTIONS:MNETWORK}
CONFIGURE_ARGS+=	--flags="network"
USE_CABAL+=		HTTP>=4000.0.9 network>=2
.else
CONFIGURE_ARGS+=	--flags="-network"
.endif

.include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk"
.include <bsd.port.mk>
OpenPOWER on IntegriCloud