diff options
author | jkh <jkh@FreeBSD.org> | 1996-06-16 00:58:09 +0800 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1996-06-16 00:58:09 +0800 |
commit | 634cb784a969fe318c4ea6676b13a8849ec23005 (patch) | |
tree | e9b02142d08b64158ef966a3639f9bfe06acee08 /www/apache22/Makefile | |
parent | b8c2d0dd22bf06a58f74407959e43ae7fa27ee70 (diff) | |
download | freebsd-ports-gnome-634cb784a969fe318c4ea6676b13a8849ec23005.tar.gz freebsd-ports-gnome-634cb784a969fe318c4ea6676b13a8849ec23005.tar.zst freebsd-ports-gnome-634cb784a969fe318c4ea6676b13a8849ec23005.zip |
Install an apache.sh startup file in /usr/local/etc/rc.d/
Now that apache_httpd is gone from /etc/sysconfig, this is the canonical
way to make apache start automatically in a new system installation.
Diffstat (limited to 'www/apache22/Makefile')
-rw-r--r-- | www/apache22/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/www/apache22/Makefile b/www/apache22/Makefile index f527a3d7112c..0804ca7b31f2 100644 --- a/www/apache22/Makefile +++ b/www/apache22/Makefile @@ -3,7 +3,7 @@ # Date created: Fri Aug 25 16:42:36 CDT 1995 # Whom: erich@rrnet.com # -# $Id: Makefile,v 1.10 1996/05/19 22:21:42 ache Exp $ +# $Id: Makefile,v 1.11 1996/05/20 07:37:06 asami Exp $ # DISTNAME= apache_1.0.5 @@ -20,4 +20,10 @@ EXTRACT_ONLY= ${DISTNAME}.tar.gz post-extract: cp ${DISTDIR}/mod_env.c ${WRKSRC}/src +post-install: + @echo "Installing ${PREFIX}/etc/rc.d/apache.sh startup file." + @echo "#!/bin/sh" > ${PREFIX}/etc/rc.d/apache.sh + @echo "[ -x /usr/local/sbin/httpd ] && /usr/local/sbin/httpd && echo -n ' httpd'" >> ${PREFIX}/etc/rc.d/apache.sh + @chmod 751 ${PREFIX}/etc/rc.d/apache.sh + .include <bsd.port.mk> |