diff options
author | dirk <dirk@FreeBSD.org> | 1999-03-26 16:49:50 +0800 |
---|---|---|
committer | dirk <dirk@FreeBSD.org> | 1999-03-26 16:49:50 +0800 |
commit | 0bbf913106898215db6adfac3c4c0d2010b20e0b (patch) | |
tree | a9ddd04116d495c54c4c9ccf9028622ecdf15330 /www/apache13-ssl | |
parent | 2546729c3fe1c6d1963a5d60d79b8e8ffd35d76a (diff) | |
download | freebsd-ports-gnome-0bbf913106898215db6adfac3c4c0d2010b20e0b.tar.gz freebsd-ports-gnome-0bbf913106898215db6adfac3c4c0d2010b20e0b.tar.zst freebsd-ports-gnome-0bbf913106898215db6adfac3c4c0d2010b20e0b.zip |
${PREFIX}/bin/ssleay -> ${PREFIX}/bin/openssl and
${PREFIX}/etc/ssleay.cnf -> ${PREFIX}/lib/openssl.cnf
due to openssl upgrade.
Replaced GNU_CONFIGURE with HAS_CONFIGURE and
CONFIGURE_ARGS+=--prefix=${PREFIX} because GNU_CONFIGURE=yes adds
${CONFIGURE_TARGET} to ${CONFIGURE_ARGS} now.
Diffstat (limited to 'www/apache13-ssl')
-rw-r--r-- | www/apache13-ssl/Makefile | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/www/apache13-ssl/Makefile b/www/apache13-ssl/Makefile index 236ae6b75b69..e596ddad9bca 100644 --- a/www/apache13-ssl/Makefile +++ b/www/apache13-ssl/Makefile @@ -6,7 +6,7 @@ # and apache-ssl port by Mark Murray <mark@grondar.za>. # Oh, and with a little bit of help from Ben :) # -# $Id: Makefile,v 1.53 1999/01/10 14:11:19 dirk Exp $ +# $Id: Makefile,v 1.54 1999/03/13 17:11:04 billf Exp $ APACHE= 1.3.3 APACHE-SSL= 1.28 @@ -50,7 +50,7 @@ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ MAINTAINER= adam@algroup.co.uk -RUN_DEPENDS= ssleay:${PORTSDIR}/security/openssl +RUN_DEPENDS= openssl:${PORTSDIR}/security/openssl EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} @@ -60,8 +60,9 @@ RESTRICTED= "Contains cryptography" # Set APACHE_PERF_TUNING env. variable to YES to get maximum performance # -GNU_CONFIGURE= yes +HAS_CONFIGURE= yes CONFIGURE_ARGS= \ + --prefix=${PREFIX} \ --sysconfdir=${PREFIX}/etc/apache \ --includedir=${PREFIX}/include/apache \ --logfiledir=/var/log \ @@ -106,14 +107,14 @@ post-extract: @cd ${WRKSRC} && tar xzf ${DISTDIR}/apache_${APACHE}+ssl_${APACHE-SSL}${EXTRACT_SUFX} post-patch: - @cd ${WRKSRC} && ./FixPatch + @cd ${WRKSRC} && ./FixPatch ${PREFIX} certificate: - @if [ -f ${PREFIX}/etc/ssleay.cnf ]; then \ + @if [ -f ${PREFIX}/lib/openssl.cnf ]; then \ cd ${WRKSRC}; ${MAKE} ${MAKE_ENV} $@; \ ${CP} ${WRKSRC}/SSLconf/conf/httpsd.pem ${PREFIX}/certs/cert.pem; \ else \ - ${ECHO} "You must create the file ${PREFIX}/etc/ssleay.cnf first."; \ + ${ECHO} "You must create the file ${PREFIX}/lib/openssl.cnf first."; \ fi .include <bsd.port.mk> |