blob: 5a0b4ea483587287917f19d3f9049ed6fb70e8bf (
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
|
# Created by: James Bailie <jimmy@mammothcheese.ca>
# $FreeBSD$
PORTNAME= munger
PORTVERSION= 4.194
CATEGORIES= lang
MASTER_SITES= http://www.mammothcheese.ca/
MAINTAINER= jimmy@mammothcheese.ca
COMMENT= Static lisp interpreter with text processing abilities
LIB_DEPENDS= tre.5:${PORTSDIR}/textproc/libtre
DATADIR= ${PREFIX}/share/${PORTNAME}-${PORTVERSION}
MAN1= munger.1
MANCOMPRESSED= yes
OPTIONS_DEFINE= SQLITE
OPTIONS_DEFAULT= SQLITE
USE_LDCONFIG= yes
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MSQLITE}
USE_SQLITE= 3
MAKE_ARGS+= -DWITH_SQL
.endif
.if ${ARCH} == "sparc64"
BROKEN= Does not link on sparc64
.endif
.include <bsd.port.mk>
|