aboutsummaryrefslogtreecommitdiffstats
path: root/www/tntnet/Makefile
blob: 320e74bacf58e8d39c99604bc3a207c07c8fa9cb (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# New ports collection makefile for:    tntnet
# Date created:     Wed Apr 14 18:11:42 CEST 2010
# Whom:         Juergen Lock <nox@freebsd.org>
#
# $FreeBSD$
#

PORTNAME=   tntnet
PORTVERSION=    2.1
PORTREVISION=   1
CATEGORIES= www devel
MASTER_SITES=   http://www.tntnet.org/download/

MAINTAINER= nox@FreeBSD.org
COMMENT=    Webapplicationserver for C++

LIB_DEPENDS=    cxxtools:${PORTSDIR}/devel/cxxtools
BUILD_DEPENDS+= zip:${PORTSDIR}/archivers/zip

USES=       iconv
USE_CSTD=   gnu89
PATCH_STRIP=    -p1
GNU_CONFIGURE=  yes
CPPFLAGS+=  -I${LOCALBASE}/include
LDFLAGS+=   -L${LOCALBASE}/lib -pthread
CONFIGURE_ARGS+=    --localstatedir=/var

.if defined(WITH_GNUTLS)
LDFLAGS+=   -lgnutls
CONFIGURE_ARGS+=    --with-ssl=gnutls
LIB_DEPENDS+=   gnutls:${PORTSDIR}/security/gnutls
.else
CONFIGURE_ARGS+=    --with-ssl=openssl
.endif

MAKE_JOBS_SAFE= yes
MAN1=       ecppc.1 ecppl.1 ecppll.1 tntnet-config.1
MAN7=       ecpp.7 tntnet.conf.7 tntnet.properties.7
MAN8=       tntnet.8

USERS=      www
GROUPS=     www

post-configure:
    ${REINPLACE_CMD} 's/^\(#define[[:space:]]*HAVE_SENDFILE[[:space:]]*\).*/\1\0/' ${WRKSRC}/framework/common/config.h

post-install:
    @if [ ! -f ${ETCDIR}/tntnet.conf ]; then \
        ${CP} -p ${ETCDIR}/tntnet.conf.sample ${ETCDIR}/tntnet.conf ; \
    fi
    @if [ ! -f ${ETCDIR}/mime.conf ]; then \
        ${CP} -p ${ETCDIR}/mime.conf.sample ${ETCDIR}/mime.conf ; \
    fi
    @if [ ! -f ${ETCDIR}/tntnet.properties ]; then \
        ${CP} -p ${ETCDIR}/tntnet.properties.sample ${ETCDIR}/tntnet.properties ; \
    fi

.include <bsd.port.mk>