doc/en_US.ISO8859-1/htdocs/ports/packages
Hiroki Sato 35babe0ae5 - Set svn:ketwords and svn:mime-type. Note that application/octet-stream is
set on some files as a workaround for binary check.
- Fix pathname for svn co in the webupdate script.

Approved by:	doceng (implicit)
2012-05-17 19:12:14 +00:00

24 lines
660 B
Bash
Executable file

#!/bin/sh
# Copyright (c) June 1998 Wolfram Schneider <wosch@FreeBSD.ORG>, Berlin.
#
# packages - create a sorted list of precompiled packages which
# are available at the FreeBSD FTP Server.
#
# $FreeBSD$
PATH=/bin:/usr/bin:/usr/local/bin; export PATH
release='packages-stable';
url="ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/i386/$release/All/"
temp=_lynx$$
if lynx -source "$url" > $temp || ( sleep 300; lynx -source "$url" > $temp ) || ( sleep 300; lynx -source "$url" > $temp )
then
perl -ne 'print $1, "\n" if m%href="([^"]+)"%oi' < $temp |
perl -npe 's%.*/%%' | sort | grep -v '^\.\.$'
rm -f $temp
else
rm -f $temp
exit 1
fi