summaryrefslogtreecommitdiff
path: root/www/mod_tsa/Makefile
blob: e8872767fcd6ed8b4511ff45a5beaa38f8f64248 (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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# Created by: ubique
# $FreeBSD$

PORTNAME=	mod_tsa
PORTVERSION=	1.0
PORTREVISION=	3
CATEGORIES=	www
MASTER_SITES=	http://am.nesiac.org/static/ \
		http://ubique.spb.ru/src/

MAINTAINER=	ubique@peterhost.ru
COMMENT=	Time stamping authority (RFC 3161) module for apache

OPTIONS_DEFINE=	MYSQL PGSQL FIREBIRD DEBUG DEBUG_MEMORY
DEBUG_MEMORY_DESC=	Memory debug


GNU_CONFIGURE=	yes
CONFIGURE_ARGS=	--with-openssl-incdir=${OPENSSLINC} \
				--with-openssl-libdir=${OPENSSLLIB} \
				--with-apxs=${APXS}
MAKE_ARGS+=	APXS=${APXS}

USE_OPENSSL=	yes
WITH_OPENSSL_PORT=	yes
USE_APACHE=	22+
AP_EXTRAS+=	-DMOD_TSA_VERSION=\\\"mod_tsa/${PORTVERSION}\\\"
AP_FAST_BUILD=	yes
AP_GENPLIST=	yes
SRC_FILE=	mod_tsa.c tsa_util.c
AP_INC=	${LOCALBASE}/include
AP_LIB=	${LOCALBASE}/lib

PORTEXAMPLES=	*.sql tsa.conf

.include <bsd.port.options.mk>

.if ${PORT_OPTIONS:MMYSQL}
USE_MYSQL=	yes
CONFIGURE_ARGS+=	--enable-mysql=yes
SRC_FILE+=	db_mysql.c
AP_INC+=	-I${LOCALBASE}/include/mysql
AP_LIB+=	-L${LOCALBASE}/lib/mysql -lmysqlclient
.endif

.if ${PORT_OPTIONS:MPGSQL}
USE_PGSQL=	yes
CONFIGURE_ARGS+=	--enable-pgsql=yes
SRC_FILE+=	db_postgresql.c
AP_LIB+=	-lpq
.endif

.if ${PORT_OPTIONS:MFIREBIRD}
USE_FIREBIRD=	yes
CONFIGURE_ARGS+=	--enable-firebird=yes
SRC_FILE+=	db_firebird.c	
AP_LIB+=	-lgds
.endif

.if ${PORT_OPTIONS:MDEBUG}
CONFIGURE_ARGS+=	--with-debug=yes
.endif

.if ${PORT_OPTIONS:MDEBUG_MEMORY}
CONFIGURE_ARGS+=	--with-debug-memory=yes
.endif

post-install:
.if ${PORT_OPTIONS:MEXAMPLES}
	${MKDIR} ${EXAMPLESDIR}/
	${INSTALL_DATA} ${WRKSRC}/*.sql ${EXAMPLESDIR}/
	${INSTALL_DATA} ${WRKSRC}/tsa.conf ${EXAMPLESDIR}/
.endif

.include <bsd.port.mk>