summaryrefslogblamecommitdiff
path: root/www/mongrel2/Makefile
blob: eff977e56512464f8ce9fb578d2e55a37da39ca9 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                 
           





                                                     
                              


















                                                             
                                
 
                   
                              
 
                             















                                                                              
                      
# Created by: Veniamin Gvozdikov <vg@FreeBSD.org>
# $FreeBSD$

PORTNAME=	mongrel2
PORTVERSION=	1.7.5
CATEGORIES=	www
MASTER_SITES=	http://mongrel2.org/static/downloads/

MAINTAINER=	vg@FreeBSD.org
COMMENT=	Is an application, language, and network arch

LIB_DEPENDS=	zmq.1:${PORTSDIR}/devel/zmq \
		sqlite3.8:${PORTSDIR}/databases/sqlite3

USE_GMAKE=	yes
USE_BZIP2=	yes
MAKE_FLAGS=	freebsd
EXAMPLES_LIST=	bbs \
		chat \
		configs \
		http_0mq \
		kegogi \
		mp3stream \
		procer \
		python \
		tornado \
		zcov

OPTIONS_DEFINE=		EXAMPLES

NO_STAGE=	yes
.include <bsd.port.options.mk>

.if ${PORT_OPTIONS:MEXAMPLES}
PLIST_SUB+=	EXAMPLES=""
.else
PLIST_SUB+=	EXAMPLES="@comment "
.endif

post-patch:
	@${REINPLACE_CMD} -e 's#/usr/local#${LOCALBASE}#g' ${WRKSRC}/Makefile

post-install:
.if defined(WITH_EXAMPLES)
	@${MKDIR} ${EXAMPLESDIR}
.for examples in ${EXAMPLES_LIST}
	@cd ${WRKSRC}/examples && ${COPYTREE_SHARE} ${examples} ${EXAMPLESDIR}
.endfor
.endif

.include <bsd.port.mk>