mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
421cdfa1b3
- Correct macro to check for is OPENSSL_NO_SSL3_METHOD, not OPENSSL_NO_SSL3 - While no-op, be formally correct and run the tests from the $TEST_WRKSRC
44 lines
1.1 KiB
Makefile
44 lines
1.1 KiB
Makefile
# Created by: Marcel Prisi <marcel.prisi@virtua.ch>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= distcache
|
|
DISTVERSION= 1.5.1
|
|
CATEGORIES= security www
|
|
MASTER_SITES= SF/distcache/1.%20distcache-devel/1.5.1
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Distributed OpenSSL session caching tools
|
|
|
|
LICENSE= LGPL21
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USES= libtool ssl tar:bzip2
|
|
USE_RC_SUBR= dc_server
|
|
USE_LDCONFIG= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --enable-shared --with-ssl=${OPENSSLBASE}
|
|
INSTALL_TARGET= install-strip
|
|
|
|
SUB_LIST= NAME=dc_server
|
|
PORTDOCS= ANNOUNCE BUGS CHANGES FAQ README
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-patch:
|
|
@${GREP} -q 'define SSLeay_version' /usr/include/openssl/crypto.h \
|
|
&& ${REINPLACE_CMD} -e 's,SSLeay_version,OpenSSL_version,' \
|
|
${WRKSRC}/ssl/configure || :
|
|
|
|
post-install:
|
|
# INSTALL_TARGET=install-strip isn't working! Brute force it
|
|
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/*.so
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
(cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR})
|
|
|
|
do-test:
|
|
@cd ${TEST_WRKSRC} && ${SH} devel/test.sh
|
|
|
|
.include <bsd.port.mk>
|