mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-01 05:45:45 +00:00
439d18c040
<yar@FreeBSD.org>: host hub.freebsd.org[8.8.178.136] said: 550 5.1.1 <yar@FreeBSD.org>: Recipient address rejected: User unknown in local <rud@cs.uni-magdeburg.de>: host mail.cs.uni-magdeburg.de[141.44.21.48] said: 550 5.1.1 <rud@cs.uni-magdeburg.de>... User unknown (in reply to RCPT TO <stefan@fh-mainz.de>: host srv-eml-pmva-02.fh-mainz.de[143.93.114.189] said: 550 5.1.1 <stefan@fh-mainz.de>: Recipient address rejected: undeliverable <ocaml-ounit-port@kotka.de>: host kotka.de[62.75.247.120] said: 550 5.1.1 <ocaml-ounit-port@kotka.de>: Recipient address rejected: User unknown in <toru@tenchi.ne.jp>: host tuna.tenchi.ne.jp[49.212.63.105] said: 550 5.1.1 <toru@tenchi.ne.jp>... User unknown (in reply to RCPT TO command) <nehe@cruzinternet.com>: host inbound.platinum.ca[69.31.192.27] said: 550 cuda_nsu User [nehe@cruzinternet.com] does not exist (in reply to RCPT TO <ports@emorific.com>: Host or domain name not found. Name service error for name=emorific.com type=AAAA: Host not found <ubique@peterhost.ru>: host mx.mail.corp.hostcomm.ru[89.111.166.49] said: 550 Sorry, no mailbox here by that name (in reply to RCPT TO command) <ports@brandon.dvalentine.com>: host ASPMX.L.GOOGLE.com[2607:f8b0:400c:c01::1a] said: 550-5.1.1 The email account that you tried to reach does not exist. With hat: portmgr
77 lines
1.6 KiB
Makefile
77 lines
1.6 KiB
Makefile
# 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= ports@FreeBSD.org
|
|
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
|
|
|
|
NO_STAGE= yes
|
|
.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>
|