mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-26 05:02:18 +00:00
41 lines
824 B
Makefile
41 lines
824 B
Makefile
# Created by: Qing Feng <qingfeng@douban.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= tokyopromenade
|
|
PORTVERSION= 0.9.22
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://fallabs.com/${PORTNAME}/
|
|
|
|
MAINTAINER= qingfeng@douban.com
|
|
COMMENT= A content management system
|
|
|
|
BUILD_DEPENDS= tokyocabinet>=1.4.31:${PORTSDIR}/databases/tokyocabinet \
|
|
fcgi-devkit>=0:${PORTSDIR}/www/fcgi
|
|
LIB_DEPENDS= tokyocabinet:${PORTSDIR}/databases/tokyocabinet
|
|
RUN_DEPENDS= spawn-fcgi>=0:${PORTSDIR}/www/spawn-fcgi
|
|
|
|
OPTIONS_DEFINE= LUA
|
|
|
|
CONFIGURE_ARGS= --enable-fcgi
|
|
GNU_CONFIGURE= yes
|
|
USES= gmake
|
|
|
|
SUB_FILES= pkg-message
|
|
|
|
MAN1= prommgr.1
|
|
|
|
NO_STAGE= yes
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MLUA}
|
|
CONFIGURE_ARGS+= --enable-lua
|
|
LDFLAGS+= -L${LUA_LIBDIR}
|
|
CFLAGS+= -I${LUA_INCDIR}
|
|
USE_LUA= yes
|
|
.endif
|
|
|
|
post-install:
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|