1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-20 00:21:35 +00:00

Time stamping authority module for apache22.

WWW: http://opentsa.org/

PR:		ports/152571
Submitted by:	ubique
This commit is contained in:
Philip M. Gollucci 2010-11-27 00:37:30 +00:00
parent 173c53f8e7
commit deae86cceb
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=265226
5 changed files with 85 additions and 0 deletions

View File

@ -559,6 +559,7 @@
SUBDIR += mod_traf_thief
SUBDIR += mod_transform
SUBDIR += mod_trigger
SUBDIR += mod_tsa
SUBDIR += mod_tsunami
SUBDIR += mod_uid
SUBDIR += mod_vdbh

72
www/mod_tsa/Makefile Normal file
View File

@ -0,0 +1,72 @@
# New ports collection makefile for: mod_tsa
# Date created: 22 November 2010
# Whom: ubique
#
# $FreeBSD$
#
PORTNAME= mod_tsa
PORTVERSION= 1.0
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= MYSQL "Enable support for MySQL storage" Off \
PGSQL "Enable support for PostgreSQL" Off \
FIREBIRD "Enable support for Firebird storage" Off \
DEBUG "Build with debug" Off \
DEBUG_MEMORY "Build with memory debug" Off
MAKE_JOBS_SAFE= yes
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= 20+
AP_EXTRAS+= -DMOD_TSA_VERSION=\\\"mod_tsa/${PORTVERSION}\\\"
AP_FAST_BUILD= yes
AP_GENPLIST= yes
PORTEXAMPLES= *.sql tsa.conf
.include <bsd.port.options.mk>
.if defined(WITH_MYSQL)
USE_MYSQL= yes
CONFIGURE_ARGS+= --enable-mysql=yes
.endif
.if defined(WITH_PGSQL)
USE_PGSQL= yes
CONFIGURE_ARGS+= --enable-pgsql=yes
.endif
.if defined(WITH_FIREBIRD)
USE_FIREBIRD= yes
CONFIGURE_ARGS+= --enable-firebird=yes
.endif
.if defined(WITH_DEBUG)
CONFIGURE_ARGS+= --with-debug=yes
.endif
.if defined(WITH_DEBUG_MEMORY)
CONFIGURE_ARGS+= --with-debug-memory=yes
.endif
post-install:
.if !defined(NOPORTEXAMPLES)
${MKDIR} ${EXAMPLESDIR}/
${INSTALL_DATA} ${WRKSRC}/*.sql ${EXAMPLESDIR}/
${INSTALL_DATA} ${WRKSRC}/tsa.conf ${EXAMPLESDIR}/
.endif
.include <bsd.port.mk>

2
www/mod_tsa/distinfo Normal file
View File

@ -0,0 +1,2 @@
SHA256 (mod_tsa-1.0.tar.gz) = b3f18e6fd59a8096335eae3d41dd8a9784525d6682e68854eaacce6576ea67b7
SIZE (mod_tsa-1.0.tar.gz) = 107162

2
www/mod_tsa/pkg-descr Normal file
View File

@ -0,0 +1,2 @@
Time stamping authority module for apache22.
WWW: http://opentsa.org/

8
www/mod_tsa/pkg-plist Normal file
View File

@ -0,0 +1,8 @@
%%APACHEMODDIR%%/%%AP_MODULE%%
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tsa.conf
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/firebird_create.sql
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/firebird_destroy.sql
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mysql_create.sql
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mysql_destroy.sql
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pgsql_create.sql
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pgsql_destroy.sql