diff options
author | Mark Linimon <linimon@FreeBSD.org> | 2010-06-22 23:55:31 +0000 |
---|---|---|
committer | Mark Linimon <linimon@FreeBSD.org> | 2010-06-22 23:55:31 +0000 |
commit | 0f99ddce2e01b9fee552af3bb3d35f1d1eefa899 (patch) | |
tree | 89e2bb9bfa41e62dfab8d498b5b61d2a663238b2 /Tools | |
parent | e8f9e57ecaa9dd75b0463a28e9dd468ce0d43c93 (diff) | |
download | ports-0f99ddce2e01b9fee552af3bb3d35f1d1eefa899.tar.gz ports-0f99ddce2e01b9fee552af3bb3d35f1d1eefa899.zip |
Notes
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/portbuild/4/bindist/README | 31 | ||||
-rw-r--r-- | Tools/portbuild/4/bindist/delete | 64 | ||||
-rw-r--r-- | Tools/portbuild/4/bindist/dirlist | 9 | ||||
-rwxr-xr-x | Tools/portbuild/4/bindist/files/usr/bin/uname | 73 | ||||
-rw-r--r-- | Tools/portbuild/4/mkbindist.conf | 6 | ||||
-rwxr-xr-x | Tools/portbuild/5/bindist/files/usr/bin/uname | 67 | ||||
-rw-r--r-- | Tools/portbuild/5/mkbindist.conf | 6 |
7 files changed, 0 insertions, 256 deletions
diff --git a/Tools/portbuild/4/bindist/README b/Tools/portbuild/4/bindist/README deleted file mode 100644 index 4fad39d16e12..000000000000 --- a/Tools/portbuild/4/bindist/README +++ /dev/null @@ -1,31 +0,0 @@ -(1) Copy the following files to under the "files" subdirectory: - - Copy the following files from a running 4.0 system: - - /dev/{bpf0,kmem,lkm,mem,null,random,stderr,stdin,stdout,tty,zero} - /dev/fd/[0-9] - /etc/resolv.conf - - /usr/bin/openssl - /usr/include/openssl/evp.h - /usr/include/openssl/rsa.h - /usr/include/openssl/rsaref.h - /usr/lib/libRSAglue.a - /usr/lib/libRSAglue.so.1 - /usr/lib/libcrypto.a - /usr/lib/libcrypto.so.1 - /usr/lib/libssl.a - /usr/lib/libssl.so.1 - - Copy the following files from a running 4-current system or a - 2.2-stable system. In the latter case, it will be in /usr/lib. - - /usr/lib/aout/c++rt0.o - - Copy the following files from a very recent 4.0 system or source tree: - - /usr/share/info/dir - -(2) Run "sh mkbindist". Note the first time you should set "ftp=1". - -(3) Copy "tarballs/bindist.tar" to the same directory in all the build machines. diff --git a/Tools/portbuild/4/bindist/delete b/Tools/portbuild/4/bindist/delete deleted file mode 100644 index 8e4c4d4d1d3b..000000000000 --- a/Tools/portbuild/4/bindist/delete +++ /dev/null @@ -1,64 +0,0 @@ -compat -dev -tmp -usr/games/adventure -usr/games/arithmetic -usr/games/atc -usr/games/backgammon -usr/games/battlestar -usr/games/bcd -usr/games/bs -usr/games/caesar -usr/games/canfield -usr/games/cfscores -usr/games/cribbage -usr/games/dm -usr/games/factor -usr/games/fish -usr/games/fortune -usr/games/grdc -usr/games/hack -usr/games/hangman -usr/games/hide -usr/games/larn -usr/games/mille -usr/games/morse -usr/games/number -usr/games/phantasia -usr/games/piano -usr/games/pig -usr/games/pom -usr/games/ppt -usr/games/primes -usr/games/quiz -usr/games/rain -usr/games/random -usr/games/robots -usr/games/rogue -usr/games/rot13 -usr/games/sail -usr/games/snake -usr/games/snscore -usr/games/teachgammon -usr/games/trek -usr/games/unstr -usr/games/wargames -usr/games/worm -usr/games/worms -usr/games/wump -usr/lib/lib*_p.a -usr/lib/aout/lib*_p.a -usr/share/calendar -usr/share/doc -usr/share/examples -usr/share/games -usr/share/info/*.info.gz -usr/share/isdn -usr/share/locale -usr/share/man -usr/share/nls -usr/share/perl/man -usr/share/zoneinfo -usr/sbin/sysctl -var/games -var/run diff --git a/Tools/portbuild/4/bindist/dirlist b/Tools/portbuild/4/bindist/dirlist deleted file mode 100644 index d6b2cbef8f64..000000000000 --- a/Tools/portbuild/4/bindist/dirlist +++ /dev/null @@ -1,9 +0,0 @@ -tmp/depends -tmp/distfiles -tmp/packages -usr/X11R6 -usr/local -usr/opt/doc -usr/opt/www -usr/ports -usr/src diff --git a/Tools/portbuild/4/bindist/files/usr/bin/uname b/Tools/portbuild/4/bindist/files/usr/bin/uname deleted file mode 100755 index 2a241f49f8fe..000000000000 --- a/Tools/portbuild/4/bindist/files/usr/bin/uname +++ /dev/null @@ -1,73 +0,0 @@ -#!/bin/sh - -# "sed -e 's/\(.\)/ -\1/g'" can be used to convert "abc" to "-a -b -c" - -a=0 -m=0 -n=0 -r=0 -s=0 -v=0 - -if [ $# = 0 ]; then - s=1 -else - set $(printf "%s\n" "$*" | sed -e 's/-//g' -e 's/\([a-z]\)/ \1/g') - while [ $# -gt 0 ]; do - eval $1=1 - shift - done -fi - -if [ "$a" = 1 ]; then - m=1 - n=1 - r=1 - s=1 - v=1 -fi - -printed=0 - -if [ -f /usr/bin/UNAME_VERSION ]; then - VERSION=$(cat /usr/bin/UNAME_VERSION) -else - VERSION=4.5-RELEASE #XXX Perhaps make it the same as the host version? -fi - -if [ "$s" = 1 ]; then - echo -n "FreeBSD" - printed=1 -fi - -printsp () { - if [ $1 = 1 ]; then - echo -n " " - fi -} - -if [ "$n" = 1 ]; then - printsp $printed - echo -n $(hostname) - printed=1 -fi - -if [ "$r" = 1 ]; then - printsp $printed - echo -n "${VERSION}" - printed=1 -fi - -if [ "$v" = 1 ]; then - printsp $printed - echo -n "FreeBSD ${VERSION} #0: Sun Apr 1 02:34:56 PST 2002 asami@bento.freebsd.org:/usr/src/sys/compile/BENTO" - printed=1 -fi - -if [ "$m" = 1 ]; then - printsp $printed - echo -n "i386" - printed=1 -fi - -echo diff --git a/Tools/portbuild/4/mkbindist.conf b/Tools/portbuild/4/mkbindist.conf deleted file mode 100644 index cb5af460287e..000000000000 --- a/Tools/portbuild/4/mkbindist.conf +++ /dev/null @@ -1,6 +0,0 @@ -rel=4-LATEST -ftpserver=current.jp.freebsd.org -ftpdists="bin/bin dict/dict games/games manpages/manpages compat22/compat22 compat3x/compat3x crypto/crypto crypto/krb4" -kernel=CLUSTER -ftp=1 -useworld=0 diff --git a/Tools/portbuild/5/bindist/files/usr/bin/uname b/Tools/portbuild/5/bindist/files/usr/bin/uname deleted file mode 100755 index a71ec89abd1b..000000000000 --- a/Tools/portbuild/5/bindist/files/usr/bin/uname +++ /dev/null @@ -1,67 +0,0 @@ -#!/bin/sh - -# "sed -e 's/\(.\)/ -\1/g'" can be used to convert "abc" to "-a -b -c" - -a=0 -m=0 -n=0 -r=0 -s=0 -v=0 - -if [ $# = 0 ]; then - s=1 -else - set $(printf "%s\n" "$*" | sed -e 's/-//g' -e 's/\([a-z]\)/ \1/g') - while [ $# -gt 0 ]; do - eval $1=1 - shift - done -fi - -if [ "$a" = 1 ]; then - m=1 - n=1 - r=1 - s=1 - v=1 -fi - -printed=0 - -if [ "$s" = 1 ]; then - echo -n "FreeBSD" - printed=1 -fi - -printsp () { - if [ $1 = 1 ]; then - echo -n " " - fi -} - -if [ "$n" = 1 ]; then - printsp $printed - echo -n $(hostname) - printed=1 -fi - -if [ "$r" = 1 ]; then - printsp $printed - echo -n "5.0-CURRENT" - printed=1 -fi - -if [ "$v" = 1 ]; then - printsp $printed - echo -n "FreeBSD 5.0-CURRENT #0: Sun Mar 18 03:47:56 PST 2000 asami@bento.freebsd.org:/usr/src/sys/compile/BENTO" - printed=1 -fi - -if [ "$m" = 1 ]; then - printsp $printed - echo -n "i386" - printed=1 -fi - -echo diff --git a/Tools/portbuild/5/mkbindist.conf b/Tools/portbuild/5/mkbindist.conf deleted file mode 100644 index f8e0cf6f81e4..000000000000 --- a/Tools/portbuild/5/mkbindist.conf +++ /dev/null @@ -1,6 +0,0 @@ -rel=5-LATEST -ftpserver=snapshots.jp.freebsd.org -ftpdists="bin/bin dict/dict games/games compat22/compat22 compat3x/compat3x compat4x/compat4x crypto/crypto crypto/krb4" -kernel=CLUSTER -ftp=1 -useworld=0 |