head	1.6;
access;
symbols
	HRS_XML_CLEANUP:1.5
	HRS_XML_CLEANUP_PRE:1.5
	EMILYBOYD_REDESIGN:1.5
	PRE_REDESIGN:1.5
	XML_XSL_XP:1.5.0.2
	XML_XSL_XP_BP:1.5
	jesusr:1.1.1.1
	ES_WWW:1.1.1;
locks; strict;
comment	@# @;


1.6
date	2008.01.28.23.06.10;	author gabor;	state dead;
branches;
next	1.5;

1.5
date	99.09.06.07.03.04;	author peter;	state Exp;
branches;
next	1.4;

1.4
date	99.05.08.15.40.46;	author jesusr;	state Exp;
branches;
next	1.3;

1.3
date	99.04.24.16.18.35;	author jesusr;	state Exp;
branches;
next	1.2;

1.2
date	99.02.08.19.38.01;	author wosch;	state Exp;
branches;
next	1.1;

1.1
date	99.02.08.19.26.11;	author wosch;	state Exp;
branches
	1.1.1.1;
next	;

1.1.1.1
date	99.02.08.19.26.11;	author wosch;	state Exp;
branches;
next	;


desc
@@


1.6
log
@- Remove another bunch of old, untranslated stuff

Discussed with:	carvay
@
text
@#!/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: www/es/ports/packages,v 1.5 1999/09/06 07:03:04 peter Exp $

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
@


1.5
log
@$Id$,$Date$ -> $FreeBSD$
The jury is out on $Date$, but it's presently not being expanded..
@
text
@d7 1
a7 1
# $FreeBSD$
@


1.4
log
@ports.inc:
 Added trailing slash to directory

packages:
 Upgrade to english 1.6 version
@
text
@d7 1
a7 1
# $Id: packages,v 1.6 1999/05/07 06:59:05 wosch Exp $
@


1.3
log
@packages: Fix exit status
ports.inc: Fix links to new handbook
@
text
@d7 1
a7 1
# $Id: packages,v 1.2 1999/02/08 19:38:01 wosch Exp $
d16 2
a17 1
if lynx -source "$url" > $temp; then
d22 3
a24 3
        rm -f $temp
        exit 1
fi 
@


1.2
log
@Change package paths according to new layout.
@
text
@d7 1
a7 1
# $Id: packages,v 1.1.1.1 1999/02/08 19:26:11 wosch Exp $
d14 1
d16 2
a17 2
lynx -source "$url" | 
    perl -ne 'print $1, "\n" if m%href="([^"]+)"%oi' |
d19 5
a23 1

@


1.1
log
@Initial revision
@
text
@d7 1
a7 1
# $Id: packages,v 1.1.1.1 1999/01/21 14:21:52 jesusr Exp $
d12 1
a12 1
url="ftp://ftp.freebsd.org/pub/FreeBSD/$release/All/"
@


1.1.1.1
log
@Imported the Spanish Web pages, except the

	english sub directories: cgi, commercial, gallery, gifs
	which are redundant and will never be translated

and the

	spanish sub directories: doc-es, docs-es

Submitted by: "Jesus Rodriguez" <jesusr@@ncsa.es>

Fix Makefiles errors. `Make all install' runs fine.

Currently, many the links to the sub directories cgi, commercial,
gallery, gifs are broken. The links should point to the English
orginal files.
@
text
@@
