diff options
author | Andreas Klemm <andreas@FreeBSD.org> | 1997-08-16 16:01:10 +0000 |
---|---|---|
committer | Andreas Klemm <andreas@FreeBSD.org> | 1997-08-16 16:01:10 +0000 |
commit | dbd3f40cc2afbbc680bc2606b94565734fa7c728 (patch) | |
tree | 33fca86bfe4cbcfa6c16c02aff6f7c4f609d7ebb | |
parent | Shame on me ... we need BUILD_DEPEND, not LIB_DEPEND. (diff) |
target post-install informs now about "make certificate"
make certificate creates an own temporary certificate
cd ${WRKSRC}; ${MAKE} ${MAKE_ENV} $@
and installs it into the suitable location:
cp ${WRKSRC}/SSLconf/conf/httpsd.pem ${PREFIX}/certs/cert.pem
Notes
Notes:
svn path=/head/; revision=7608
-rw-r--r-- | www/apache13-ssl/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/www/apache13-ssl/Makefile b/www/apache13-ssl/Makefile index 27e9eba41bad..5efee1aed64a 100644 --- a/www/apache13-ssl/Makefile +++ b/www/apache13-ssl/Makefile @@ -3,7 +3,7 @@ # Date created: 15th August 1997 # Whom: Richard Seaman <dick@tar.com> # -# $Id: Makefile,v 1.37 1997/08/15 15:44:27 markm Exp $ +# $Id: Makefile,v 1.38 1997/08/16 04:45:27 peter Exp $ DISTNAME= apache_1.2.1 PKGNAME= apacheSSL-1.2.1 @@ -38,6 +38,8 @@ post-install: echo "[ -x /usr/local/sbin/httpsd ] && /usr/local/sbin/httpsd && echo -n ' httpsd'" >> ${PREFIX}/etc/rc.d/apache_ssl.sh; \ chmod 751 ${PREFIX}/etc/rc.d/apache_ssl.sh; \ fi + @echo "Please note: in order to install a certificate you have to type:" + @echo " make certificate" .if !defined(USA_RESIDENT) || ${USA_RESIDENT} != YES && ${USA_RESIDENT} != NO pre-fetch: @@ -53,4 +55,8 @@ pre-build: .endif .endif +certificate: + cd ${WRKSRC}; ${MAKE} ${MAKE_ENV} $@ + cp ${WRKSRC}/SSLconf/conf/httpsd.pem ${PREFIX}/certs/cert.pem + .include <bsd.port.mk> |