From 2f28c8ba9ebe35f3e89f2eb87d0aa052600d1ad4 Mon Sep 17 00:00:00 2001 From: Sascha Wildner Date: Sat, 1 Jul 2006 08:52:40 +0000 Subject: [PATCH] Remove ports specific portsinfo script. --- tools/tools/portsinfo/portsinfo.sh | 85 ------------------------------ 1 file changed, 85 deletions(-) delete mode 100644 tools/tools/portsinfo/portsinfo.sh diff --git a/tools/tools/portsinfo/portsinfo.sh b/tools/tools/portsinfo/portsinfo.sh deleted file mode 100644 index 3b186cd3f2..0000000000 --- a/tools/tools/portsinfo/portsinfo.sh +++ /dev/null @@ -1,85 +0,0 @@ -#!/bin/sh -# Copyright (c) April 1997 Wolfram Schneider , Berlin. -# -# portsinfo - Generate list of new ports for last two weeks. -# -# $FreeBSD: src/tools/tools/portsinfo/portsinfo.sh,v 1.5 1999/08/28 00:54:32 peter Exp $ -# $DragonFly: src/tools/tools/portsinfo/Attic/portsinfo.sh,v 1.2 2003/06/17 04:29:11 dillon Exp $ - -PATH=/bin:/usr/bin:/usr/local/bin:$PATH; export PATH - -host=http://www.freebsd.org -url=$host/cgi/ports.cgi -time='?type=new&time=2+week+ago&sektion=all' -time2='?type=changed&time=2+week+ago&sektion=all' -info=yes - -if [ x"$info" = xyes ]; then - -cat <<'EOF' -Introduction ------------- - -The FreeBSD Ports Collection offers a simple way for users and -administrators to install applications. Each "port" listed here -contains any patches necessary to make the original application source -code compile and run on FreeBSD. Installing an application is as -simple as downloading the port, unpacking it and typing make in the -port directory. The Makefile automatically fetches the application -source code, either from a local disk or via ftp, unpacks it on your -system, applies the patches, and compiles. If all goes well, simply -type make install to install the application. - -For more information about using ports, see the ports collection - - http://www.freebsd.org/handbook/ports.html -and - http://www.freebsd.org/ports/ - -EOF - - lynx -dump $host/ports/ | - perl -ne '/^[ ]*There are currently/ && s/^\s+// && print && exit' - -cat <