diff options
author | kris <kris@FreeBSD.org> | 2003-08-08 12:01:20 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2003-08-08 12:01:20 +0800 |
commit | 04a8f8d6604657c3ecb2724e09944c32f6d28e36 (patch) | |
tree | df147ec9fe8bbe597f45189d87bef9ee3f5ebd9d /www/slash/files | |
parent | 1b45f625f40f9b796b72cacbb49f340a0f7b4aaf (diff) | |
download | freebsd-ports-gnome-04a8f8d6604657c3ecb2724e09944c32f6d28e36.tar.gz freebsd-ports-gnome-04a8f8d6604657c3ecb2724e09944c32f6d28e36.tar.zst freebsd-ports-gnome-04a8f8d6604657c3ecb2724e09944c32f6d28e36.zip |
As announced on May 6, remove the broken www/slash port.
Diffstat (limited to 'www/slash/files')
-rw-r--r-- | www/slash/files/patch-Makefile | 21 | ||||
-rw-r--r-- | www/slash/files/patch-install-slashsite | 30 | ||||
-rw-r--r-- | www/slash/files/patch-slash | 11 |
3 files changed, 0 insertions, 62 deletions
diff --git a/www/slash/files/patch-Makefile b/www/slash/files/patch-Makefile deleted file mode 100644 index 0542de396887..000000000000 --- a/www/slash/files/patch-Makefile +++ /dev/null @@ -1,21 +0,0 @@ ---- Makefile.old Mon Mar 18 19:22:59 2002 -+++ Makefile Mon Mar 18 19:22:25 2002 -@@ -167,15 +167,11 @@ - if [ -d $(INIT) ]; then \ - init=$(INIT); \ - fi; \ -- elif [ -d /etc/init.d ]; then \ -- init=/etc; \ -- elif [ -d /etc/rc.d/init.d ]; then \ -- init=/etc/rc.d; \ -+ elif [ -d /usr/local/etc/rc.d ]; then \ -+ init=/usr/local/etc/rc.d; \ - fi; \ - if [ $$init ]; then \ -- $(INSTALL) utils/slash $$init/init.d/; \ -- ln -s -f ../init.d/slash $$init/rc3.d/S99slash; \ -- ln -s -f ../init.d/slash $$init/rc6.d/K99slash; \ -+ $(INSTALL) utils/slash $$init/slash.sh; \ - else \ - echo "*** Makefile can't determine where your init scripts live."; \ - if [ $$init ]; then \ diff --git a/www/slash/files/patch-install-slashsite b/www/slash/files/patch-install-slashsite deleted file mode 100644 index 975db92663ed..000000000000 --- a/www/slash/files/patch-install-slashsite +++ /dev/null @@ -1,30 +0,0 @@ ---- bin/install-slashsite.old Mon Mar 18 18:35:35 2002 -+++ bin/install-slashsite Mon Mar 18 18:42:08 2002 -@@ -89,7 +89,7 @@ - - # THIS IS DANGEROUS ... when run as root on a non-GNU - # system, it can blank out the hostname entirely --chomp($hostname_f = `hostname -f`); -+chomp($hostname_f = `hostname -f 2> /dev/null` || `hostname 2> /dev/null`); - unless ($opts{'H'}) { - print " - What is hostname of your Slash site -@@ -431,6 +431,7 @@ - sub apache_site_conf { - my $host_port = $hostname; - $host_port .= ":80" unless $host_port =~ /:/; -+ my $log_path = (-d '/usr/local/logs' ? "logs" : "/var/log"); - my $text = qq| - # note that if your site's path is a symlink, the - # path listed here is most likely the actual path; -@@ -446,8 +447,8 @@ - ServerAdmin $email - DocumentRoot $prefix_site/$sitename/htdocs - ServerName $host_noport -- ErrorLog logs/${sitename}_error_log -- CustomLog logs/${sitename}_access_log common -+ ErrorLog $log_path/${sitename}_error_log -+ CustomLog $log_path/${sitename}_access_log common - - PerlSetupEnv On - PerlSetEnv TZ GMT diff --git a/www/slash/files/patch-slash b/www/slash/files/patch-slash deleted file mode 100644 index 07a6710b4e2f..000000000000 --- a/www/slash/files/patch-slash +++ /dev/null @@ -1,11 +0,0 @@ ---- utils/slash.old Thu Nov 1 01:13:59 2001 -+++ utils/slash Mon Mar 18 20:01:37 2002 -@@ -66,7 +66,7 @@ - # if you aren't using GMT for internal dates, please change - # the appropriate lines, below. - if [ "$OS" = "FreeBSD" ] ; then -- su - $USERNAME "-c 'TZ=GMT $SLASHD $SERVER_NAME'" & -+ TZ=GMT su $USERNAME -c "$SLASHD $SERVER_NAME" & - elif [ "$OS" = "Linux" ] ; then - su - $USERNAME -c "TZ=GMT $SLASHD $SERVER_NAME" & - else |