source: scripts/scripts/plfs-configs/plfs-packages-20051203-sparcv8 @ 763fed9

clfs-1.2clfs-2.1clfs-3.0.0-systemdclfs-3.0.0-sysvinitsystemdsysvinit
Last change on this file since 763fed9 was 763fed9, checked in by Jim Gifford <clfs@…>, 18 years ago

r1049@server (orig r1047): ryan | 2006-01-12 00:58:01 -0800

r1083@rei: lfs | 2006-01-12 19:20:35 +1100
Update sparcv8 build


  • Property mode set to 100644
File size: 2.7 KB
RevLine 
[53ed05b]1#!/bin/sh
2
3# plfs-packages
4
5# Package Version Information - 20050325 build
6#-----------------------------------------------
7#
8# Last Modified
9#       By     :        $LastChangedBy$
10#       Date   :        $LastChangedDate$
11#       Rev No :        $LastChangedRevision$
12#
13
14# There are 2 binutils listed here.
15# NATIVE_BINUTILS_VER is used only when building a native binutils
16# on a non linux system when BINUTILS_VER is non FSF (ie HJL)
17# This is sorted out at the end of this script.
18
19export AUTOCONF_VER=2.59                # chapter 6
20export AUTOMAKE_VER=1.9.6               # chapter 6
21export BASH_VER=3.0
22export BIN86_VER=0.16.11
23export BINUTILS_VER=2.16.1              # can be either FSF or HJL Binutils
24export BISON_VER=2.1
25export BZIP2_VER=1.0.3
26export COREUTILS_VER=5.93
27export DEJAGNU_VER=1.4.4
28export DIFFUTILS_VER=2.8.7
29export E2FSPROGS_VER=1.38               # chapter 6
30export ED_VER=0.2                       # chapter 6
31export EXPECT_VER=5.43.0
32export FILE_VER=4.16                    # chapter 6
33export FINDUTILS_VER=4.2.26
34export FLEX_VER=2.5.31
35export GAWK_VER=3.1.5
[763fed9]36#export GCC_VER=4.2.0-svn-20051204
37export GCC_VER=3.4.5
[53ed05b]38export GETTEXT_VER=0.14.5
39export GLIBC_VER=2.3.6
40export GREP_VER=2.5.1a
41export GROFF_VER=1.19.2                 # chapter 6
42export GZIP_VER=1.3.5
43export HOTPLUG_VER=2004_09_23
44export IANA_ETC_VER=2.00
45export INETUTILS_VER=1.4.2              # chapter 6
46export IPROUTE2_VER=050816
47export KBD_VER=1.12                     # chapter 6
48export KERNEL_VER=2.6.14.3
49export LESS_VER=385                     # chapter 6
50export LFS_BS_VER=3.2.2                 # chapter 6
51export LIBTOOL_VER=1.5.20               # chapter 6
52export LILO_VER=22.5.1
53export LINUX_LIBC_HDRS_VER=2.6.12.0
54export M4_VER=1.4.3
55export MAKEDEV_VER=1.7
56export MAKE_DEVICES_VER=1.2
57export MAKE_VER=3.80
58export MAN_VER=1.6b                     # chapter 6
59export MKTEMP_VER=1.5                   # chapter 6
60export MODUTILS_VER=2.4.26              # chapter 6
61export MODINITTOOLS_VER=3.2.1           # chapter 6
62export NASM_VER=0.98.38
63export NATIVE_BINUTILS_VER=2.16.1               # FSF binutils versions only
64export NCURSES_VER=5.5
65export NETTOOLS_VER=1.60                # chapter 6
66export NFSUTILS_VER=1.0.6-ptx4
67export PATCH_VER=2.5.9
68export PERL_VER=5.8.7
69export PORTMAP_VER=5beta
70export PROCINFO_VER=18                  # chapter 6
71export PROCPS_VER=3.2.6                 # chapter 6
72export PSMISC_VER=21.8                  # chapter 6
73export READLINE_VER=5.0
74export SED_VER=4.1.4
75export SHADOW_VER=4.0.13                # chapter 6
76#export STRACE_VER=4.5.11
77export SYSKLOGD_VER=1.4.1               # chapter 6
78export SYSVINIT_VER=2.86                # chapter 6
79export TAR_VER=1.15.1
80export TCPWRAP_VER=7.6
81export TCL_VER=8.4.11
82export TEXINFO_VER=4.8
83export UDEV_VER=076
84export UTILLINUX_VER=2.12r
85export VIM_VER=6.4                      # chapter 6
86export ZLIB_VER=1.2.3
87
88# Sort out NATIVE_BINUTILS_VER for native builds
89hostos=`uname`
90if [ ! "${hostos}" = "Linux" ]; then
91   # Not linux, cannot use HJL
92   case ${BINUTILS_VER} in
93      *.9[0-9].[0-9]* )
94      ;;
95      * )
96         export NATIVE_BINUTILS_VER=${BINUTILS_VER}
97      ;;
98   esac
99fi
Note: See TracBrowser for help on using the repository browser.