diff options
author | andreas <andreas@FreeBSD.org> | 1997-08-16 16:01:10 +0000 |
---|---|---|
committer | andreas <andreas@FreeBSD.org> | 1997-08-16 16:01:10 +0000 |
commit | fde80dbe05dd328ec051dd6d89d008eb56ab2362 (patch) | |
tree | a5812acb8fe03d8202b9398daa1c734ad771209e | |
parent | ddd81d3685c293458592d0c119f11e3893fe7228 (diff) | |
download | FreeBSD-ports-fde80dbe05dd328ec051dd6d89d008eb56ab2362.zip FreeBSD-ports-fde80dbe05dd328ec051dd6d89d008eb56ab2362.tar.gz |
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
-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 27e9eba..5efee1a 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> |