diff options
author | andreas <andreas@FreeBSD.org> | 1997-01-20 11:46:02 +0000 |
---|---|---|
committer | andreas <andreas@FreeBSD.org> | 1997-01-20 11:46:02 +0000 |
commit | b12534b27f6422144038307f95369161d3ef6f42 (patch) | |
tree | 5537f1aa9c56a4172c275a4f94e5ea7898f3aac1 /net/bb | |
parent | d52c4be35bec48f52f21ad2d206b9ec71da5164c (diff) | |
download | FreeBSD-ports-b12534b27f6422144038307f95369161d3ef6f42.zip FreeBSD-ports-b12534b27f6422144038307f95369161d3ef6f42.tar.gz |
Some bugfixes and enhancements:
a) The link created in /usr/local/www to the bb is relative, so it
does not work if the ${PREFIX}/www is itself a symlink. Fixed that
by using full paths.
b) Added a symlink bb/index.html to bb/bb.html so that the URL can
just be http://hostname/bb
c) Added 3 files (two of them were very important) to PLIST which
were missing (bb.html, bb2.html and the new index.html). So I think
nobody tried to install bb from a package since now.
Reviewed by:
Partially submitted by: Mikhail Teterin <mi@www.video-collage.com>
Obtained from:
Diffstat (limited to 'net/bb')
-rw-r--r-- | net/bb/Makefile | 7 | ||||
-rw-r--r-- | net/bb/pkg-plist | 3 |
2 files changed, 7 insertions, 3 deletions
diff --git a/net/bb/Makefile b/net/bb/Makefile index 5d6c420..bb89093 100644 --- a/net/bb/Makefile +++ b/net/bb/Makefile @@ -3,7 +3,7 @@ # Date created: So 17 Nov 1996 16:59:23 MET # Whom: Andreas Klemm <andreas@klemm.gtn.com> # -# $Id: Makefile,v 1.8 1997/01/06 13:54:53 asami Exp $ +# $Id: Makefile,v 1.9 1997/01/20 09:59:33 andreas Exp $ # DISTNAME= bb @@ -124,7 +124,8 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/www/logs/later \ ${PREFIX}/${DISTNAME}/www/logs/later @${RM} -f ${PREFIX}/www/data/bb - @ln -s ../../${DISTNAME}/www ${PREFIX}/www/data/bb + @ln -s ${PREFIX}/${DISTNAME}/www ${PREFIX}/www/data/bb + @ln -s bb.html ${PREFIX}/${DISTNAME}/www/index.html @echo "" @echo "================================================================" @echo "==== Configuration Notes: ===" @@ -144,7 +145,7 @@ do-install: @echo "" @echo "and watching your systems status by viewing this URL with" @echo "Netscape or another WWW browser" - @echo " http://localhost/bb/bb.html" + @echo " http://localhost/bb" @echo "" @echo "Look here for a life sample:" @echo " http://www.menet.umn.edu/~clolson/bb/bb.html" diff --git a/net/bb/pkg-plist b/net/bb/pkg-plist index 129dad2..4ef66cc 100644 --- a/net/bb/pkg-plist +++ b/net/bb/pkg-plist @@ -24,6 +24,9 @@ bb/web/mkbb.bkg bb/web/mkbb.cols bb/web/mkbb.sh bb/web/mkbb2.sh +bb/www/bb.html +bb/www/bb2.html +bb/www/index.html bb/www/bb-help.html bb/www/bb-info.html bb/www/bb-page.html |