Author: jhuntwork
Date: 2005-03-30 21:09:33 -0700 (Wed, 30 Mar 2005)
New Revision: 75
Added:
trunk/packages/blfs-bootscripts/blfs-bootscripts-20050313-add-autosshd-1.patch
trunk/scripts/ll
Modified:
trunk/Makefile
trunk/isolinux/isolinux.cfg
trunk/packages/LVM2/Makefile
trunk/packages/automake/Makefile
trunk/packages/binutils/Makefile
trunk/packages/blfs-bootscripts/Makefile
trunk/packages/bzip2/Makefile
trunk/packages/curl/Makefile
trunk/packages/e2fsprogs/Makefile
trunk/packages/expect/Makefile
trunk/packages/file/Makefile
trunk/packages/findutils/Makefile
trunk/packages/firefox/Makefile
trunk/packages/gettext/Makefile
trunk/packages/glib2/Makefile
trunk/packages/glibc/Makefile
trunk/packages/grub/Makefile
trunk/packages/gtk+2/Makefile
trunk/packages/html_tidy/Makefile
trunk/packages/iana-etc/Makefile
trunk/packages/iproute2/Makefile
trunk/packages/lfs-bootscripts/Makefile
trunk/packages/libaal/Makefile
trunk/packages/libol/Makefile
trunk/packages/libtool/Makefile
trunk/packages/linux-libc-headers/Makefile
trunk/packages/linux/Makefile
trunk/packages/pango/Makefile
trunk/packages/psmisc/Makefile
trunk/packages/reiser4progs/Makefile
trunk/packages/samba/Makefile
trunk/packages/subversion/Makefile
trunk/packages/syslog-ng/Makefile
trunk/packages/tcpwrappers/Makefile
trunk/packages/udev/Makefile
trunk/packages/unzip/Makefile
trunk/packages/xchat/Makefile
trunk/packages/zip/Makefile
Log:
Upgraded packages to match current LFS svn. Thanks to Andrew Sanch for patches.
Modified: trunk/Makefile
===================================================================
--- trunk/Makefile 2005-02-22 02:17:37 UTC (rev 74)
+++ trunk/Makefile 2005-03-31 04:09:33 UTC (rev 75)
@@ -1303,7 +1303,7 @@
@-rm $(MP)/etc/rc.d/rc{2,3,5}.d/{K,S}21xprint
@install -m644 etc/issue $(MP)/etc/issue
@sed -i "s/Version:/Version: $(VERSION)/" $(MP)/etc/issue
- @install -m755 scripts/{net-setup,greeting} $(MP)/usr/bin/
+ @install -m755 scripts/{net-setup,greeting,ll} $(MP)/usr/bin/
@-mkdir $(MP)/etc/sysconfig/network-devices/ifconfig.eth0
@-mkdir $(MP)/iso
@for i in bin boot etc lib sbin sources ; do cp -ra $(MP)/$$i $(MP)/iso
; done && \
Modified: trunk/isolinux/isolinux.cfg
===================================================================
--- trunk/isolinux/isolinux.cfg 2005-02-22 02:17:37 UTC (rev 74)
+++ trunk/isolinux/isolinux.cfg 2005-03-31 04:09:33 UTC (rev 75)
@@ -1,5 +1,5 @@
serial 0
-default linux
+default linux-autosshd
prompt 1
timeout 600
display boot.msg
@@ -7,3 +7,6 @@
label linux
kernel linux
+
+label linux-autosshd
+ kernel linux autosshd
Modified: trunk/packages/LVM2/Makefile
===================================================================
--- trunk/packages/LVM2/Makefile 2005-02-22 02:17:37 UTC (rev 74)
+++ trunk/packages/LVM2/Makefile 2005-03-31 04:09:33 UTC (rev 75)
@@ -2,7 +2,7 @@
# Package versions
NM= LVM2
-VRS= 2.01.04
+VRS= 2.01.08
DIR= $(NM).$(VRS)
FILE= $(DIR).tgz
URL= ftp://sources.redhat.com/pub/lvm2/$(FILE)
Modified: trunk/packages/automake/Makefile
===================================================================
--- trunk/packages/automake/Makefile 2005-02-22 02:17:37 UTC (rev 74)
+++ trunk/packages/automake/Makefile 2005-03-31 04:09:33 UTC (rev 75)
@@ -2,10 +2,10 @@
# Package versions
NM= automake
-VRS= 1.9.4
+VRS= 1.9.5
DIR= $(NM)-$(VRS)
FILE= $(DIR).tar.bz2
-URL= $(FTP)/$(NM)/$(FILE)
+URL= http://ftp.gnu.org/gnu/$(NM)/$(FILE)
URL1= $(FTP)/$(NM)/$(PATCH1)
# RULES
Modified: trunk/packages/binutils/Makefile
===================================================================
--- trunk/packages/binutils/Makefile 2005-02-22 02:17:37 UTC (rev 74)
+++ trunk/packages/binutils/Makefile 2005-03-31 04:09:33 UTC (rev 75)
@@ -2,7 +2,7 @@
# Package versions
NM= binutils
-VRS= 2.15.94.0.2
+VRS= 2.15.94.0.2.2
DIR= $(NM)-$(VRS)
FILE= $(DIR).tar.bz2
URL= $(FTP)/$(NM)/$(FILE)
Modified: trunk/packages/blfs-bootscripts/Makefile
===================================================================
--- trunk/packages/blfs-bootscripts/Makefile 2005-02-22 02:17:37 UTC (rev 74)
+++ trunk/packages/blfs-bootscripts/Makefile 2005-03-31 04:09:33 UTC (rev 75)
@@ -2,9 +2,10 @@
# Package versions
NM= blfs-bootscripts
-VRS= 20041227
+VRS= 20050313
DIR= $(NM)-$(VRS)
FILE= $(DIR).tar.bz2
+PATCH=$(DIR)-add-autosshd-1.patch
URL= http://www.linuxfromscratch.org/blfs/downloads/svn/$(FILE)
#RULES
@@ -20,9 +21,11 @@
@echo ""
@if [ ! -f $(FILE) ] ; then $(WGET) $(URL) ; fi
@tar xjvf $(FILE) && cd $(DIR) && \
+ patch -Np1 -i ../$(PATCH) &&
make install-service-dhcpcd && \
make install-service-pppoe && \
make install-gpm && \
+ make install-autosshd && \
install -m754 blfs/init.d/sshd /etc/rc.d/init.d/ && \
install -m754 blfs/init.d/random /etc/rc.d/init.d/ && \
install -m754 blfs/init.d/portmap /etc/rc.d/init.d/ && \
Added:
trunk/packages/blfs-bootscripts/blfs-bootscripts-20050313-add-autosshd-1.patch
===================================================================
---
trunk/packages/blfs-bootscripts/blfs-bootscripts-20050313-add-autosshd-1.patch
2005-02-22 02:17:37 UTC (rev 74)
+++
trunk/packages/blfs-bootscripts/blfs-bootscripts-20050313-add-autosshd-1.patch
2005-03-31 04:09:33 UTC (rev 75)
@@ -0,0 +1,44 @@
+diff -Naur blfs-bootscripts-20050313.orig/blfs/init.d/autosshd
blfs-bootscripts-20050313/blfs/init.d/autosshd
+--- blfs-bootscripts-20050313.orig/blfs/init.d/autosshd 1969-12-31
19:00:00.000000000 -0500
++++ blfs-bootscripts-20050313/blfs/init.d/autosshd 2005-03-30
22:06:02.986977573 -0500
+@@ -0,0 +1,20 @@
++#!/bin/sh
++# Begin $rc_base/init.d/autosshd
++
++. /etc/sysconfig/rc
++. $rc_functions
++
++case "$1" in
++ start)
++ if cat /proc/cmdline | grep -q "autosshd"; then
++ echo "root:lfs" | chpasswd
++ /etc/rc.d/init.d/sshd start
++ fi
++ ;;
++ *)
++ echo "Usage: $0 {start|stop|reload|restart|status}"
++ exit 1
++ ;;
++esac
++
++# End $rc_base/init.d/autosshd
+diff -Naur blfs-bootscripts-20050313.orig/Makefile
blfs-bootscripts-20050313/Makefile
+--- blfs-bootscripts-20050313.orig/Makefile 2005-03-06 22:48:33.000000000
-0500
++++ blfs-bootscripts-20050313/Makefile 2005-03-30 22:06:02.988977310 -0500
+@@ -54,6 +54,16 @@
+ install -m $(CONFMODE) blfs/sysconfig/autofs.conf $(EXTDIR)/sysconfig/
+ ln -sf ../init.d/autofs $(EXTDIR)/rc.d/rcsysinit.d/S45autofs
+
++install-autosshd: create-dirs
++ install -m ${MODE} blfs/init.d/autosshd ${EXTDIR}/rc.d/init.d/
++ ln -sf ../init.d/autosshd ${EXTDIR}/rc.d/rc0.d/K40autosshd
++ ln -sf ../init.d/autosshd ${EXTDIR}/rc.d/rc1.d/K40autosshd
++ ln -sf ../init.d/autosshd ${EXTDIR}/rc.d/rc2.d/K40autosshd
++ ln -sf ../init.d/autosshd ${EXTDIR}/rc.d/rc3.d/S40autosshd
++ ln -sf ../init.d/autosshd ${EXTDIR}/rc.d/rc4.d/S40autosshd
++ ln -sf ../init.d/autosshd ${EXTDIR}/rc.d/rc5.d/S40autosshd
++ ln -sf ../init.d/autosshd ${EXTDIR}/rc.d/rc6.d/K40autosshd
++
+ install-bind: create-dirs
+ install -m ${MODE} blfs/init.d/bind ${EXTDIR}/rc.d/init.d/
+ ln -sf ../init.d/bind ${EXTDIR}/rc.d/rc0.d/K49bind
Modified: trunk/packages/bzip2/Makefile
===================================================================
--- trunk/packages/bzip2/Makefile 2005-02-22 02:17:37 UTC (rev 74)
+++ trunk/packages/bzip2/Makefile 2005-03-31 04:09:33 UTC (rev 75)
@@ -2,7 +2,7 @@
# Package versions
NM= bzip2
-VRS= 1.0.2
+VRS= 1.0.3
DIR= $(NM)-$(VRS)
FILE= $(DIR).tar.bz2
URL= $(FTP)/$(NM)/$(FILE)
Modified: trunk/packages/curl/Makefile
===================================================================
--- trunk/packages/curl/Makefile 2005-02-22 02:17:37 UTC (rev 74)
+++ trunk/packages/curl/Makefile 2005-03-31 04:09:33 UTC (rev 75)
@@ -2,7 +2,7 @@
# Package versions
NM= curl
-VRS= 7.12.3
+VRS= 7.13.1
DIR= $(NM)-$(VRS)
FILE= $(DIR).tar.bz2
URL= http://curl.haxx.se/download/$(FILE)
Modified: trunk/packages/e2fsprogs/Makefile
===================================================================
--- trunk/packages/e2fsprogs/Makefile 2005-02-22 02:17:37 UTC (rev 74)
+++ trunk/packages/e2fsprogs/Makefile 2005-03-31 04:09:33 UTC (rev 75)
@@ -2,7 +2,7 @@
# Package versions
NM= e2fsprogs
-VRS= 1.35
+VRS= 1.36
DIR= $(NM)-$(VRS)
FILE= $(DIR).tar.bz2
URL= $(FTP)/$(NM)/$(FILE)
Modified: trunk/packages/expect/Makefile
===================================================================
--- trunk/packages/expect/Makefile 2005-02-22 02:17:37 UTC (rev 74)
+++ trunk/packages/expect/Makefile 2005-03-31 04:09:33 UTC (rev 75)
@@ -2,8 +2,8 @@
# Package versions
NM= expect
-VRS= 5.42.1
-DIR= $(NM)-5.42
+VRS= 5.43.0
+DIR= $(NM)-5.43
FILE= $(NM)-$(VRS).tar.bz2
PATCH= $(NM)-$(VRS)-spawn-1.patch
URL= $(FTP)/$(NM)/$(FILE)
Modified: trunk/packages/file/Makefile
===================================================================
--- trunk/packages/file/Makefile 2005-02-22 02:17:37 UTC (rev 74)
+++ trunk/packages/file/Makefile 2005-03-31 04:09:33 UTC (rev 75)
@@ -2,7 +2,7 @@
# Package versions
NM= file
-VRS= 4.12
+VRS= 4.13
DIR= $(NM)-$(VRS)
FILE= $(DIR).tar.bz2
URL= $(FTP)/$(NM)/$(FILE)
Modified: trunk/packages/findutils/Makefile
===================================================================
--- trunk/packages/findutils/Makefile 2005-02-22 02:17:37 UTC (rev 74)
+++ trunk/packages/findutils/Makefile 2005-03-31 04:09:33 UTC (rev 75)
@@ -2,7 +2,7 @@
# Package versions
NM= findutils
-VRS= 4.2.3
+VRS= 4.2.20
DIR= $(NM)-$(VRS)
FILE= $(DIR).tar.bz2
URL= $(FTP)/$(NM)/$(FILE)
Modified: trunk/packages/firefox/Makefile
===================================================================
--- trunk/packages/firefox/Makefile 2005-02-22 02:17:37 UTC (rev 74)
+++ trunk/packages/firefox/Makefile 2005-03-31 04:09:33 UTC (rev 75)
@@ -2,10 +2,10 @@
# Package versions
NM= firefox
-VRS= 1.0
+VRS= 1.0.2
DIR= mozilla
FILE= $(NM)-$(VRS)-source.tar.bz2
-URL= http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/1.0/source/$(FILE)
+URL=
http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/$(VRS)/source/$(FILE)
#RULES
@@ -23,7 +23,7 @@
export MOZILLA_OFFICIAL="1" && \
export BUILD_OFFICIAL="1" && \
export MOZ_PHOENIX="1" && \
- ./configure --prefix=/usr
--with-default-mozilla-five-home=/usr/lib/firefox-1.0 \
+ ./configure --prefix=/usr
--with-default-mozilla-five-home=/usr/lib/firefox-$(VRS) \
--with-user-appdir=.firefox --with-system-zlib --with-system-jpeg
--with-system-png \
--enable-application=browser --enable-default-toolkit=gtk2
--enable-extensions=all,-typeaheadfind \
--enable-crypto --enable-xft --enable-xinerama --enable-optimize
--enable-reorder --enable-strip \
@@ -31,8 +31,8 @@
--disable-tests --disable-logging --disable-pedantic
--disable-installer --disable-mailnews \
--disable-ldap --disable-composer --disable-profilesharing && \
make -j3 && make install && \
- install -d /usr/include/firefox-1.0/nss && \
- cp -Lf dist/private/nss/*.h dist/public/nss/*.h
/usr/include/firefox-1.0/nss ; fi
+ install -d /usr/include/firefox-$(VRS)/nss && \
+ cp -Lf dist/private/nss/*.h dist/public/nss/*.h
/usr/include/firefox-$(VRS)/nss ; fi
@cp -ra $(ROOT)/root/.firefox /root
@cp -ra $(ROOT)/root/.mozilla /root
@make clean
Modified: trunk/packages/gettext/Makefile
===================================================================
--- trunk/packages/gettext/Makefile 2005-02-22 02:17:37 UTC (rev 74)
+++ trunk/packages/gettext/Makefile 2005-03-31 04:09:33 UTC (rev 75)
@@ -2,7 +2,7 @@
# Package versions
NM= gettext
-VRS= 0.14.1
+VRS= 0.14.3
DIR= $(NM)-$(VRS)
FILE= $(DIR).tar.bz2
URL= $(FTP)/$(NM)/$(FILE)
Modified: trunk/packages/glib2/Makefile
===================================================================
--- trunk/packages/glib2/Makefile 2005-02-22 02:17:37 UTC (rev 74)
+++ trunk/packages/glib2/Makefile 2005-03-31 04:09:33 UTC (rev 75)
@@ -2,7 +2,7 @@
# Package versions
NM= glib
-VRS= 2.6.0
+VRS= 2.6.3
DIR= $(NM)-$(VRS)
FILE= $(DIR).tar.bz2
URL= ftp://ftp.gtk.org/pub/gtk/v2.6/$(FILE)
Modified: trunk/packages/glibc/Makefile
===================================================================
--- trunk/packages/glibc/Makefile 2005-02-22 02:17:37 UTC (rev 74)
+++ trunk/packages/glibc/Makefile 2005-03-31 04:09:33 UTC (rev 75)
@@ -2,7 +2,7 @@
# Package versions
NM= glibc
-VRS= 20041011
+VRS= 2.3.4
DIR= $(NM)-$(VRS)
FILE= $(DIR).tar.bz2
URL= $(FTP)/$(NM)/$(FILE)
Modified: trunk/packages/grub/Makefile
===================================================================
--- trunk/packages/grub/Makefile 2005-02-22 02:17:37 UTC (rev 74)
+++ trunk/packages/grub/Makefile 2005-03-31 04:09:33 UTC (rev 75)
@@ -2,7 +2,7 @@
# Package versions
NM= grub
-VRS= 0.95
+VRS= 0.96
DIR= $(NM)-$(VRS)
FILE= $(DIR).tar.bz2
URL= $(FTP)/$(NM)/$(FILE)
Modified: trunk/packages/gtk+2/Makefile
===================================================================
--- trunk/packages/gtk+2/Makefile 2005-02-22 02:17:37 UTC (rev 74)
+++ trunk/packages/gtk+2/Makefile 2005-03-31 04:09:33 UTC (rev 75)
@@ -2,7 +2,7 @@
# Package versions
NM= gtk+
-VRS= 2.6.0
+VRS= 2.6.4
DIR= $(NM)-$(VRS)
FILE= $(DIR).tar.bz2
URL= ftp://ftp.gtk.org/pub/gtk/v2.6/$(FILE)
Modified: trunk/packages/html_tidy/Makefile
===================================================================
--- trunk/packages/html_tidy/Makefile 2005-02-22 02:17:37 UTC (rev 74)
+++ trunk/packages/html_tidy/Makefile 2005-03-31 04:09:33 UTC (rev 75)
@@ -2,7 +2,7 @@
# Package versions
NM= tidy
-VRS= 050120
+VRS= 050321
DIR= $(NM)
FILE= $(NM)_src_$(VRS).tgz
FILE2= $(NM)_docs.tgz
Modified: trunk/packages/iana-etc/Makefile
===================================================================
--- trunk/packages/iana-etc/Makefile 2005-02-22 02:17:37 UTC (rev 74)
+++ trunk/packages/iana-etc/Makefile 2005-03-31 04:09:33 UTC (rev 75)
@@ -2,7 +2,7 @@
# Package versions
NM= iana-etc
-VRS= 1.03
+VRS= 1.04
DIR= $(NM)-$(VRS)
FILE= $(DIR).tar.bz2
URL= $(FTP)/$(NM)/$(FILE)
Modified: trunk/packages/iproute2/Makefile
===================================================================
--- trunk/packages/iproute2/Makefile 2005-02-22 02:17:37 UTC (rev 74)
+++ trunk/packages/iproute2/Makefile 2005-03-31 04:09:33 UTC (rev 75)
@@ -2,8 +2,8 @@
# Package versions
NM= iproute2
-VRS= 2.6.9
-DATE= 041019
+VRS= 2.6.11
+DATE= 050314
DIR= $(NM)-$(VRS)
FILE= $(NM)-$(VRS)-$(DATE).tar.bz2
PATCH= $(NM)-$(VRS)_$(DATE)-remove_db-1.patch
Modified: trunk/packages/lfs-bootscripts/Makefile
===================================================================
--- trunk/packages/lfs-bootscripts/Makefile 2005-02-22 02:17:37 UTC (rev 74)
+++ trunk/packages/lfs-bootscripts/Makefile 2005-03-31 04:09:33 UTC (rev 75)
@@ -2,7 +2,7 @@
# Package versions
NM= lfs-bootscripts
-VRS= 2.2.3
+VRS= 3.1.0
DIR= $(NM)-$(VRS)
FILE= $(DIR).tar.bz2
URL= $(FTP)/$(NM)/$(FILE)
Modified: trunk/packages/libaal/Makefile
===================================================================
--- trunk/packages/libaal/Makefile 2005-02-22 02:17:37 UTC (rev 74)
+++ trunk/packages/libaal/Makefile 2005-03-31 04:09:33 UTC (rev 75)
@@ -2,7 +2,7 @@
# Package versions
NM= libaal
-VRS= 1.0.3
+VRS= 1.0.4
DIR= $(NM)-$(VRS)
FILE= $(DIR).tar.gz
URL= http://linuxberg.vc-graz.ac.at/mirror/reiserfs/reiser4progs/$(FILE)
Modified: trunk/packages/libol/Makefile
===================================================================
--- trunk/packages/libol/Makefile 2005-02-22 02:17:37 UTC (rev 74)
+++ trunk/packages/libol/Makefile 2005-03-31 04:09:33 UTC (rev 75)
@@ -2,7 +2,7 @@
# Package versions
NM= libol
-VRS= 0.3.14
+VRS= 0.3.15
DIR= $(NM)-$(VRS)
FILE= $(DIR).tar.bz2
URL= $(FTP)/$(NM)/$(FILE)
Modified: trunk/packages/libtool/Makefile
===================================================================
--- trunk/packages/libtool/Makefile 2005-02-22 02:17:37 UTC (rev 74)
+++ trunk/packages/libtool/Makefile 2005-03-31 04:09:33 UTC (rev 75)
@@ -2,7 +2,7 @@
# Package versions
NM= libtool
-VRS= 1.5.10
+VRS= 1.5.14
DIR= $(NM)-$(VRS)
FILE= $(DIR).tar.bz2
URL= $(FTP)/$(NM)/$(FILE)
Modified: trunk/packages/linux/Makefile
===================================================================
--- trunk/packages/linux/Makefile 2005-02-22 02:17:37 UTC (rev 74)
+++ trunk/packages/linux/Makefile 2005-03-31 04:09:33 UTC (rev 75)
@@ -2,12 +2,12 @@
# Package versions
NM= linux
-VRS= 2.6.10
+VRS= 2.6.11.6
DIR= $(NM)-$(VRS)
FILE= $(DIR).tar.bz2
FILE1= $(PATCH2).gz
PATCH1= $(DIR)-security_fix-1.patch
-PATCH2= reiser4-for-2.6.10-1
+PATCH2= reiser4-for-2.6.11-1
PATCH3= squashfs2.1-patch
PATCH4= $(DIR)-reiser4_missing_export-1.patch
URL= http://www.kernel.org/pub/linux/kernel/v2.6/$(FILE)
Modified: trunk/packages/linux-libc-headers/Makefile
===================================================================
--- trunk/packages/linux-libc-headers/Makefile 2005-02-22 02:17:37 UTC (rev 74)
+++ trunk/packages/linux-libc-headers/Makefile 2005-03-31 04:09:33 UTC (rev 75)
@@ -2,7 +2,7 @@
# Package versions
NM= linux-libc-headers
-VRS= 2.6.10.0
+VRS= 2.6.11.0
DIR= $(NM)-$(VRS)
FILE= $(DIR).tar.bz2
URL= $(FTP)/$(NM)/$(FILE)
Modified: trunk/packages/pango/Makefile
===================================================================
--- trunk/packages/pango/Makefile 2005-02-22 02:17:37 UTC (rev 74)
+++ trunk/packages/pango/Makefile 2005-03-31 04:09:33 UTC (rev 75)
@@ -2,7 +2,7 @@
# Package versions
NM= pango
-VRS= 1.8.0
+VRS= 1.8.1
DIR= $(NM)-$(VRS)
FILE= $(DIR).tar.bz2
URL= http://ftp.gnome.org/pub/GNOME/sources/pango/1.8/$(FILE)
Modified: trunk/packages/psmisc/Makefile
===================================================================
--- trunk/packages/psmisc/Makefile 2005-02-22 02:17:37 UTC (rev 74)
+++ trunk/packages/psmisc/Makefile 2005-03-31 04:09:33 UTC (rev 75)
@@ -2,11 +2,10 @@
# Package versions
NM= psmisc
-VRS= 21.5
+VRS= 21.6
DIR= $(NM)-$(VRS)
FILE= $(DIR).tar.bz2
URL= $(FTP)/$(NM)/$(FILE)
-URL1= $(FTP)/$(NM)/$(PATCH1)
# RULES
Modified: trunk/packages/reiser4progs/Makefile
===================================================================
--- trunk/packages/reiser4progs/Makefile 2005-02-22 02:17:37 UTC (rev 74)
+++ trunk/packages/reiser4progs/Makefile 2005-03-31 04:09:33 UTC (rev 75)
@@ -2,7 +2,7 @@
# Package versions
NM= reiser4progs
-VRS= 1.0.3
+VRS= 1.0.4
DIR= $(NM)-$(VRS)
FILE= $(DIR).tar.gz
URL= http://linuxberg.vc-graz.ac.at/mirror/reiserfs/reiser4progs/$(FILE)
Modified: trunk/packages/samba/Makefile
===================================================================
--- trunk/packages/samba/Makefile 2005-02-22 02:17:37 UTC (rev 74)
+++ trunk/packages/samba/Makefile 2005-03-31 04:09:33 UTC (rev 75)
@@ -2,7 +2,7 @@
# Package versions
NM= samba
-VRS= 3.0.11
+VRS= 3.0.12
DIR= $(NM)-$(VRS)
FILE= $(DIR).tar.gz
URL= http://us2.samba.org/samba/ftp/$(FILE)
Modified: trunk/packages/subversion/Makefile
===================================================================
--- trunk/packages/subversion/Makefile 2005-02-22 02:17:37 UTC (rev 74)
+++ trunk/packages/subversion/Makefile 2005-03-31 04:09:33 UTC (rev 75)
@@ -2,7 +2,7 @@
# Package versions
NM= subversion
-VRS= 1.1.2
+VRS= 1.1.3
DIR= $(NM)-$(VRS)
FILE= $(DIR).tar.bz2
URL= http://subversion.tigris.org/tarballs/$(FILE)
Modified: trunk/packages/syslog-ng/Makefile
===================================================================
--- trunk/packages/syslog-ng/Makefile 2005-02-22 02:17:37 UTC (rev 74)
+++ trunk/packages/syslog-ng/Makefile 2005-03-31 04:09:33 UTC (rev 75)
@@ -2,7 +2,7 @@
# Package versions
NM= syslog-ng
-VRS= 1.6.5
+VRS= 1.6.6
DIR= $(NM)-$(VRS)
FILE= $(DIR).tar.bz2
URL= $(FTP)/$(NM)/$(FILE)
Modified: trunk/packages/tcpwrappers/Makefile
===================================================================
--- trunk/packages/tcpwrappers/Makefile 2005-02-22 02:17:37 UTC (rev 74)
+++ trunk/packages/tcpwrappers/Makefile 2005-03-31 04:09:33 UTC (rev 75)
@@ -8,8 +8,8 @@
PATCH1= tcp_wrappers-$(VRS)-shared_lib_plus_plus-1.patch
PATCH2= tcp_wrappers-$(VRS)-gcc34-1.patch
URL= http://files.ichilton.co.uk/nfs/$(FILE)
-URL1= http://www.linuxfromscratch.org/blfs/downloads/svn/$(PATCH1)
-URL2= http://www.linuxfromscratch.org/blfs/downloads/svn/$(PATCH2)
+URL1= http://www.linuxfromscratch.org/patches/downloads/tcp_wrappers/$(PATCH1)
+URL2= http://www.linuxfromscratch.org/patches/downloads/tcp_wrappers/$(PATCH2)
#RULES
Modified: trunk/packages/udev/Makefile
===================================================================
--- trunk/packages/udev/Makefile 2005-02-22 02:17:37 UTC (rev 74)
+++ trunk/packages/udev/Makefile 2005-03-31 04:09:33 UTC (rev 75)
@@ -2,14 +2,12 @@
# Package versions
NM= udev
-VRS= 050
+VRS= 056
DIR= $(NM)-$(VRS)
FILE= $(DIR).tar.bz2
-FILE1= $(NM)-config-2.permissions
-FILE2= $(NM)-config-1.rules
+FILE1= $(NM)-config-3.rules
URL= $(FTP)/$(NM)/$(FILE)
URL1= $(FTP)/$(NM)/$(FILE1)
-URL2= $(FTP)/$(NM)/$(FILE2)
# RULES
@@ -26,12 +24,9 @@
mv $(FILE) $(SRC) ; fi
@if [ ! -f $(SRC)/$(FILE1) ] ; then $(WGET) $(URL1) && \
mv $(FILE1) $(SRC) ; fi
- @if [ ! -f $(SRC)/$(FILE2) ] ; then $(WGET) $(URL2) && \
- mv $(FILE2) $(SRC) ; fi
@if [ ! -f /sbin/udevstart ] ; then tar xjvf $(SRC)/$(FILE) && cd
$(DIR) && \
make udevdir=/dev && make udevdir=/dev install && \
- cp $(SRC)/$(FILE1) /etc/udev/permissions.d/25-lfs.permissions && \
- cp $(SRC)/$(FILE2) /etc/udev/rules.d/25-lfs.rules && \
+ cp $(SRC)/$(FILE1) /etc/udev/rules.d/25-lfs.rules && \
/sbin/udevstart ; fi
@make clean
Modified: trunk/packages/unzip/Makefile
===================================================================
--- trunk/packages/unzip/Makefile 2005-02-22 02:17:37 UTC (rev 74)
+++ trunk/packages/unzip/Makefile 2005-03-31 04:09:33 UTC (rev 75)
@@ -2,9 +2,9 @@
# Package versions
NM= unzip
-VRS= 5.51
+VRS= 5.52
DIR= $(NM)-$(VRS)
-FILE= $(NM)551.tar.gz
+FILE= $(NM)552.tar.gz
PATCH1= $(DIR)-fix_Makefile-1.patch
PATCH2= $(DIR)-fix_libz-1.patch
PATCH3= $(DIR)-dont_make_noise-1.patch
Modified: trunk/packages/xchat/Makefile
===================================================================
--- trunk/packages/xchat/Makefile 2005-02-22 02:17:37 UTC (rev 74)
+++ trunk/packages/xchat/Makefile 2005-03-31 04:09:33 UTC (rev 75)
@@ -2,7 +2,7 @@
# Package versions
NM= xchat
-VRS= 2.4.1
+VRS= 2.4.2
DIR= $(NM)-$(VRS)
FILE= $(DIR).tar.bz2
URL= http://xchat.org/files/source/2.4/$(FILE)
Modified: trunk/packages/zip/Makefile
===================================================================
--- trunk/packages/zip/Makefile 2005-02-22 02:17:37 UTC (rev 74)
+++ trunk/packages/zip/Makefile 2005-03-31 04:09:33 UTC (rev 75)
@@ -2,9 +2,9 @@
# Package versions
NM= zip
-VRS= 2.3
+VRS= 2.31
DIR= $(NM)-$(VRS)
-FILE= $(NM)23.tar.gz
+FILE= $(NM)231.tar.gz
URL=
http://www.mirrorservice.org/sites/ftp.info-zip.org/pub/infozip/src/$(FILE)
#RULES
Added: trunk/scripts/ll
===================================================================
--- trunk/scripts/ll 2005-02-22 02:17:37 UTC (rev 74)
+++ trunk/scripts/ll 2005-03-31 04:09:33 UTC (rev 75)
@@ -0,0 +1,3 @@
+#!/bin/bash
+/bin/ls --color=always --almost-all --format=long --time-style=+"%Y.%m.%d %T"
--block-size=1K $@ | grep -e^d
+/bin/ls --color=always --almost-all --format=long --time-style=+"%Y.%m.%d %T"
--block-size=1K $@ | grep -e^[-lbc]
--
http://linuxfromscratch.org/mailman/listinfo/livecd
FAQ: http://www.linuxfromscratch.org/faq/
Unsubscribe: See the above information page