mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-08 06:48:28 +00:00
9ccfdb25ab
PR: ports/88967 Submitted by: James Bailie <jimmy@jamesbailie.com> (maintainer)
47 lines
1015 B
Makefile
47 lines
1015 B
Makefile
# New ports collection makefile for: munger
|
|
# Date created: Thu, 03 Jul 2003 20:05:06 EDT
|
|
# Whom: James Bailie <jimmy@jamesbailie.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= munger
|
|
PORTVERSION= 4.79
|
|
CATEGORIES= lang
|
|
MASTER_SITES= http://www.jamesbailie.com/
|
|
|
|
MAINTAINER= jimmy@jamesbailie.com
|
|
COMMENT= Static lisp interpreter with text processing abilities
|
|
|
|
DATADIR= ${PREFIX}/share/${PORTNAME}-${PORTVERSION}
|
|
|
|
MAN1= munger.1
|
|
MANCOMPRESSED= yes
|
|
|
|
OPTIONS= FCGI "include FastCGI interface" on \
|
|
SQL "include SQLite interface" on \
|
|
TERM "include character-I/O functions" on
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if !defined(WITHOUT_SQL)
|
|
LIB_DEPENDS+= sqlite3:${PORTSDIR}/databases/sqlite3
|
|
MAKE_ARGS+= -DWITH_SQL
|
|
.endif
|
|
|
|
.if !defined(WITHOUT_FCGI)
|
|
LIB_DEPENDS+= fcgi.0:${PORTSDIR}/www/fcgi
|
|
MAKE_ARGS+= -DWITH_FCGI
|
|
.endif
|
|
|
|
.if !defined(WITHOUT_TERM)
|
|
MAKE_ARGS+= -DWITH_TERM
|
|
.endif
|
|
|
|
post-build:
|
|
.if !defined(WITHOUT_FCGI)
|
|
@${CAT} ${PKGMESSAGE}
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|