source: scripts/scripts/plfs-configs/plfs-packages-20060112 @ c7ec163

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

r2473@server (orig r1230): ryan | 2006-03-06 23:56:13 -0800

r1232@rei: lfs | 2006-03-07 18:03:13 +1100
Gah, push in long forgotten changes (must sync more often)


  • Property mode set to 100644
File size: 2.7 KB
Line 
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.91.0.5         # 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
36export GCC_VER=4.1.0-svn-20060112
37export GETTEXT_VER=0.14.5
38export GLIBC_VER=2.3.90-20060112
39export GREP_VER=2.5.1a
40export GROFF_VER=1.19.2                 # chapter 6
41export GZIP_VER=1.3.5
42export HOTPLUG_VER=2004_09_23
43export IANA_ETC_VER=2.00
44export INETUTILS_VER=1.4.2              # chapter 6
45export IPROUTE2_VER=050816
46export KBD_VER=1.12                     # chapter 6
47export KERNEL_VER=2.6.15
48export LESS_VER=385                     # chapter 6
49export LFS_BS_VER=3.2.2                 # chapter 6
50export LIBTOOL_VER=1.5.20               # chapter 6
51export LILO_VER=22.5.1
52export LINUX_LIBC_HDRS_VER=2.6.12.0
53export M4_VER=1.4.3
54export MAKEDEV_VER=1.7
55export MAKE_DEVICES_VER=1.2
56export MAKE_VER=3.80
57export MAN_VER=1.6b                     # chapter 6
58export MKTEMP_VER=1.5                   # chapter 6
59export MODUTILS_VER=2.4.26              # chapter 6
60export MODINITTOOLS_VER=3.2.1           # chapter 6
61export NASM_VER=0.98.38
62export NATIVE_BINUTILS_VER=2.16.1       # FSF binutils versions only
63export NCURSES_VER=5.5
64export NETTOOLS_VER=1.60                # chapter 6
65export NFSUTILS_VER=1.0.6-ptx4
66export PATCH_VER=2.5.9
67export PERL_VER=5.8.7
68export PORTMAP_VER=5beta
69export PROCINFO_VER=18                  # chapter 6
70export PROCPS_VER=3.2.6                 # chapter 6
71export PSMISC_VER=21.8                  # chapter 6
72export READLINE_VER=5.0
73export SED_VER=4.1.4
74export SHADOW_VER=4.0.14                # chapter 6
75#export STRACE_VER=4.5.11
76export SYSKLOGD_VER=1.4.1               # chapter 6
77export SYSVINIT_VER=2.86                # chapter 6
78export TAR_VER=1.15.1
79export TCPWRAP_VER=7.6
80export TCL_VER=8.4.12
81export TEXINFO_VER=4.8
82export UDEV_VER=080
83export UTILLINUX_VER=2.12r
84export VIM_VER=6.4                      # chapter 6
85export ZLIB_VER=1.2.3
86
87# Sort out NATIVE_BINUTILS_VER for native builds
88hostos=`uname`
89if [ ! "${hostos}" = "Linux" ]; then
90   # Not linux, cannot use HJL
91   case ${BINUTILS_VER} in
92      *.9[0-9].[0-9]* )
93      ;;
94      * )
95         export NATIVE_BINUTILS_VER=${BINUTILS_VER}
96      ;;
97   esac
98fi
Note: See TracBrowser for help on using the repository browser.