You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(202) |
Nov
(201) |
Dec
(280) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(493) |
Feb
(106) |
Mar
(215) |
Apr
(163) |
May
(79) |
Jun
(193) |
Jul
(47) |
Aug
(71) |
Sep
(127) |
Oct
(41) |
Nov
(49) |
Dec
(120) |
2005 |
Jan
(147) |
Feb
(45) |
Mar
(26) |
Apr
(71) |
May
(52) |
Jun
(28) |
Jul
(92) |
Aug
(50) |
Sep
(35) |
Oct
(193) |
Nov
(106) |
Dec
(52) |
2006 |
Jan
(51) |
Feb
(38) |
Mar
(33) |
Apr
(79) |
May
(107) |
Jun
(67) |
Jul
(21) |
Aug
(65) |
Sep
(44) |
Oct
(87) |
Nov
(12) |
Dec
(56) |
2007 |
Jan
(48) |
Feb
(58) |
Mar
(63) |
Apr
(31) |
May
(25) |
Jun
(20) |
Jul
(72) |
Aug
(54) |
Sep
(30) |
Oct
(76) |
Nov
(74) |
Dec
(25) |
2008 |
Jan
(39) |
Feb
(39) |
Mar
(62) |
Apr
(64) |
May
(59) |
Jun
(31) |
Jul
(25) |
Aug
(25) |
Sep
(17) |
Oct
(24) |
Nov
|
Dec
(1) |
2009 |
Jan
(60) |
Feb
(39) |
Mar
(16) |
Apr
(30) |
May
(52) |
Jun
(35) |
Jul
(15) |
Aug
(15) |
Sep
(21) |
Oct
(32) |
Nov
(39) |
Dec
(52) |
2010 |
Jan
(42) |
Feb
(40) |
Mar
(23) |
Apr
(20) |
May
(27) |
Jun
(10) |
Jul
(30) |
Aug
(30) |
Sep
(66) |
Oct
(12) |
Nov
(35) |
Dec
(60) |
2011 |
Jan
(16) |
Feb
(1) |
Mar
(3) |
Apr
(28) |
May
(21) |
Jun
|
Jul
(12) |
Aug
(6) |
Sep
(10) |
Oct
(14) |
Nov
(40) |
Dec
(60) |
2012 |
Jan
(23) |
Feb
(17) |
Mar
(24) |
Apr
(18) |
May
(13) |
Jun
(1) |
Jul
|
Aug
(5) |
Sep
|
Oct
(5) |
Nov
(5) |
Dec
(15) |
2013 |
Jan
(2) |
Feb
(5) |
Mar
(1) |
Apr
(2) |
May
(2) |
Jun
(3) |
Jul
|
Aug
(3) |
Sep
(5) |
Oct
(3) |
Nov
(1) |
Dec
(1) |
2014 |
Jan
(3) |
Feb
(5) |
Mar
(8) |
Apr
(3) |
May
(1) |
Jun
(1) |
Jul
(2) |
Aug
|
Sep
(4) |
Oct
(10) |
Nov
|
Dec
(9) |
2015 |
Jan
(18) |
Feb
(17) |
Mar
(5) |
Apr
(2) |
May
|
Jun
(5) |
Jul
(1) |
Aug
(2) |
Sep
(1) |
Oct
(24) |
Nov
(20) |
Dec
(41) |
2016 |
Jan
(9) |
Feb
(3) |
Mar
(2) |
Apr
(7) |
May
(8) |
Jun
(1) |
Jul
(6) |
Aug
(5) |
Sep
(2) |
Oct
(6) |
Nov
(1) |
Dec
(6) |
2017 |
Jan
(6) |
Feb
(1) |
Mar
|
Apr
(4) |
May
(1) |
Jun
(1) |
Jul
(2) |
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
|
From: <smi...@us...> - 2003-10-14 02:04:36
|
Update of /cvsroot/devil-linux/build/scripts/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv26230/scripts Added Files: httpd Log Message: initial checkin of apache2 and expat --- NEW FILE: httpd --- #!/bin/bash # # $Source: /cvsroot/devil-linux/build/scripts/scripts/httpd,v $ # $Revision: 1.1 $ # $Date: 2003/10/14 02:04:32 $ # # http://www.devil-linux.org # ### BEGIN INIT INFO # Provides: apache2 # Required-Start: $network $syslog # Required-Stop: $network $syslog # Default-Start: 3 5 # Default-Stop: 0 6 # Description: starts the Apache webserver ### END INIT INFO # settings source /etc/sysconfig/config # parameters NAME="Apache2" CONFIGNAME=APACHE2 DAEMON=/usr/sbin/httpd PARAMETER="-f /etc/apache2/httpd.conf" # source function library source /etc/init.d/functions eval START=\$START_$CONFIGNAME # Determine the base and follow a runlevel link name. base=${0##*/} link=${base#*[SK][0-9][0-9]} # Force execution if not called by a runlevel directory. test $link = $base && START=yes test "$START" = "yes" || exit 0 if [ ! -e $DAEMON ]; then echo echo "$DAEMON not found. Did you install the package?" exit 1 fi case "$1" in start) echo -n "Starting $NAME: " loadproc $DAEMON $PARAMETER ;; stop) echo -n "Shutting down $NAME: " killproc $DAEMON ;; restart) $0 stop sleep 1 $0 start ;; *) echo "Usage: $0 {start|stop|restart}" exit 1 ;; esac |
From: <smi...@us...> - 2003-10-14 02:04:36
|
Update of /cvsroot/devil-linux/build/scripts/configuration/help In directory sc8-pr-cvs1:/tmp/cvs-serv26230/configuration/help Added Files: httpd.help Log Message: initial checkin of apache2 and expat --- NEW FILE: httpd.help --- CONFIG_HTTPD The Apache HTTP Server Project is an effort to develop and maintain an open-source HTTP server for modern operating systems including UNIX and Windows NT. The goal of this project is to provide a secure, efficient and extensible server that provides HTTP services in sync with the current HTTP standards. |
From: <smi...@us...> - 2003-10-14 02:04:36
|
Update of /cvsroot/devil-linux/build/scripts/configuration In directory sc8-pr-cvs1:/tmp/cvs-serv26230/configuration Added Files: httpd.config Log Message: initial checkin of apache2 and expat --- NEW FILE: httpd.config --- #!/bin/bash # $Source: /cvsroot/devil-linux/build/scripts/configuration/httpd.config,v $ # $Revision: 1.1 $ # $Date: 2003/10/14 02:04:31 $ # # http://www.devil-linux.org menu_add "Networking|Services" bool "Apache Webserver" CONFIG_HTTPD |
From: <smi...@us...> - 2003-10-13 17:39:10
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv25706/scripts Removed Files: netkit-base Log Message: we don't need this anymore --- netkit-base DELETED --- |
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv24889/scripts Modified Files: LVM Libnet MOSIX MOSKRN Mail-SpamAssassin Python acl arpwatch attr bash beep bind binutils bison bridge-utils build-iso build.sh busybox bzip2 camsource cd_cleanup cdrtools cfg_runlevel chpax cipe clamav compartment copy_base copy_libs coreutils cpio cpqarrayd cramfs create_cd_dirs create_etc cron cutter cvs cyrus-imapd cyrus-sasl daemontools db-4 ddt ddup devfsd devildoc dhcp dhcpcd dialog diffutils distcc djbdns dosfstools dovecot e100 e1000 e2fsprogs ethtool ez-ipupdate fam fetchmail file finalize findutils freeramdisk freeswan fwlogwatch gawk gcc gdbm glib glibc gmp gnupg groff grsecurity grub gzip hdparm hostap hotplug i2c iANS insserv ipac-ng iproute2 iptables iptraf iptstate iputils jfsutils jftpgw joe jpeg krb5 less lftp lha libgcrypt libmcrypt libol libpcap libstdc++-compat libtool libusb libxml2 lilo linux linux-wlan-ng lm_sensors loadlin logrotate lsof lynx lzo makedepend man man-pages mc mcrypt mdadm memtest86 mgetty mhash minicom mk_devices modutils mtools mysql nail nano nasm ncftp ncurses net-snmp net-tools netacct-mysql noip_updater ntp oidentd openh323 openh323gk openldap openssh openssl openvpn opt passwdgen patch-o-matic pciutils pcmcia-cs pcwd pd-cvs perl pkgconfig popt portmap portslave postfix postgresql ppp pppoe-patch4 pptp-linux pptp-patches pptpd prepare procinfo procps psmisc pwlib python-ldap qadsl raidtools rcs readline reiserfsprogs rp-pppoe rpm rrlogind sagator samba setfiledates setserial sg3_utils shadow snort squid strace stunnel sysklogd syslinux syslog-ng sysstat sysvinit tar tcp_wrappers tcpdump telnet-bsd thttpd traceroute uClibc ucspi-tcp unarj unrar unzip usbutils util-linux vim vlan vsftpd vtun watchdog wget which whois wireless_tools wvdial wvstreams x509patch xfsprogs xinetd yp-tools ypbind-mt ypserv zebra zip zlib Removed Files: doc_html killproc showconsole Log Message: updated for build system v3 Index: LVM =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/LVM,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- LVM 4 Aug 2003 03:00:09 -0000 1.12 +++ LVM 13 Oct 2003 17:36:07 -0000 1.13 @@ -5,6 +5,18 @@ # # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: LVM +# Required-Start: $basebuildtools $libs +# Required-Stop: +# Default-Start: 1 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: Libnet =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/Libnet,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- Libnet 21 Apr 2003 20:53:35 -0000 1.4 +++ Libnet 13 Oct 2003 17:36:07 -0000 1.5 @@ -5,6 +5,18 @@ # # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: Libnet +# Required-Start: $basebuildtools glibc +# Required-Stop: +# Default-Start: 1 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: MOSIX =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/MOSIX,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- MOSIX 2 Oct 2003 12:28:41 -0000 1.6 +++ MOSIX 13 Oct 2003 17:36:07 -0000 1.7 @@ -4,6 +4,18 @@ # $Date$ # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: MOSIX +# Required-Start: $basebuildtools $libs MOSKRN +# Required-Stop: +# Default-Start: 1 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: MOSKRN =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/MOSKRN,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- MOSKRN 21 Apr 2003 20:53:35 -0000 1.3 +++ MOSKRN 13 Oct 2003 17:36:07 -0000 1.4 @@ -5,6 +5,18 @@ # # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: MOSKRN +# Required-Start: $basebuildtools $libs +# Required-Stop: +# Default-Start: 1 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: Mail-SpamAssassin =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/Mail-SpamAssassin,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- Mail-SpamAssassin 21 Sep 2003 15:56:29 -0000 1.6 +++ Mail-SpamAssassin 13 Oct 2003 17:36:07 -0000 1.7 @@ -4,6 +4,18 @@ # $Date$ # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: Mail-SpamAssassin +# Required-Start: $basebuildtools $libs perl +# Required-Stop: +# Default-Start: 1 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: Python =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/Python,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- Python 12 Sep 2003 12:58:53 -0000 1.15 +++ Python 13 Oct 2003 17:36:07 -0000 1.16 @@ -5,6 +5,18 @@ # # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: Python +# Required-Start: $basebuildtools $libs +# Required-Stop: +# Default-Start: 1 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: acl =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/acl,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- acl 25 Aug 2003 22:38:44 -0000 1.13 +++ acl 13 Oct 2003 17:36:07 -0000 1.14 @@ -5,6 +5,18 @@ # # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: acl +# Required-Start: $basebuildtools $installbase glibc attr +# Required-Stop: +# Default-Start: 1 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} @@ -16,7 +28,7 @@ case $1 in build ) - ./configure --prefix=/usr --enable-shared || exit 1 + ./configure --prefix=/usr --enable-shared --enable-gettext=no || exit 1 make $PMAKE || exit 1 # install it, because it's needed by some programs make install install-dev install-lib || exit 1 Index: arpwatch =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/arpwatch,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- arpwatch 22 Jul 2003 19:45:11 -0000 1.15 +++ arpwatch 13 Oct 2003 17:36:07 -0000 1.16 @@ -5,6 +5,18 @@ # http://www.devil-linux.org # ARPWATCH added by Gunther Stammwitz <gs...@ma...> +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: arpwatch +# Required-Start: $basebuildtools $libs +# Required-Stop: +# Default-Start: 1 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: attr =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/attr,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- attr 25 Aug 2003 22:38:44 -0000 1.9 +++ attr 13 Oct 2003 17:36:07 -0000 1.10 @@ -5,6 +5,18 @@ # # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: attr +# Required-Start: $basebuildtools $installbase glibc +# Required-Stop: +# Default-Start: 1 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} @@ -14,7 +26,7 @@ case $1 in build ) - ./configure --prefix=/usr --enable-shared || exit 1 + ./configure --prefix=/usr --enable-shared --enable-gettext=no || exit 1 make $PMAKE || exit 1 # install it, because it's needed by some programs make install install-dev install-lib || exit 1 Index: bash =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/bash,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- bash 22 Aug 2003 23:52:32 -0000 1.4 +++ bash 13 Oct 2003 17:36:07 -0000 1.5 @@ -5,6 +5,18 @@ # # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: bash +# Required-Start: $basebuildtools $libs +# Required-Stop: +# Default-Start: 1 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: beep =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/beep,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- beep 2 Oct 2003 12:28:41 -0000 1.15 +++ beep 13 Oct 2003 17:36:07 -0000 1.16 @@ -5,6 +5,18 @@ # # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: beep +# Required-Start: $basebuildtools $libs +# Required-Stop: +# Default-Start: 1 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: bind =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/bind,v retrieving revision 1.26 retrieving revision 1.27 diff -u -d -r1.26 -r1.27 --- bind 20 Aug 2003 19:15:35 -0000 1.26 +++ bind 13 Oct 2003 17:36:07 -0000 1.27 @@ -5,6 +5,18 @@ # # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: bind +# Required-Start: $basebuildtools $libs +# Required-Stop: +# Default-Start: 1 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: binutils =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/binutils,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- binutils 22 Jul 2003 17:15:22 -0000 1.6 +++ binutils 13 Oct 2003 17:36:07 -0000 1.7 @@ -4,6 +4,18 @@ # $Date$ # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: binutils +# Required-Start: prepare distcc gcc libtool +# Required-Stop: +# Default-Start: 1 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: bison =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/bison,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- bison 21 Sep 2003 14:35:49 -0000 1.4 +++ bison 13 Oct 2003 17:36:07 -0000 1.5 @@ -5,7 +5,19 @@ # # http://www.devil-linux.org # -# CIPE added by: Bruce Smith <dev...@re...> for Devil Linux 0.6 +# bison added by: Bruce Smith <dev...@re...> for Devil Linux 0.6 + +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: bison +# Required-Start: prepare distcc gcc libtool prepare +# Required-Stop: +# Default-Start: 1 +# Default-Stop: +# Description: description +### END INIT INFO # get the directoryname of the script MYDIR=${0%/*} @@ -30,10 +42,6 @@ strip_debug make check || exit 1 make install || exit 1 - ;; - - install ) - : ;; * ) Index: bridge-utils =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/bridge-utils,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- bridge-utils 20 Aug 2003 20:02:48 -0000 1.11 +++ bridge-utils 13 Oct 2003 17:36:07 -0000 1.12 @@ -5,6 +5,18 @@ # # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: bridge-utils +# Required-Start: $basebuildtools $libs +# Required-Stop: +# Default-Start: 1 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: build-iso =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/build-iso,v retrieving revision 1.41 retrieving revision 1.42 diff -u -d -r1.41 -r1.42 --- build-iso 8 Oct 2003 00:18:33 -0000 1.41 +++ build-iso 13 Oct 2003 17:36:07 -0000 1.42 @@ -7,6 +7,18 @@ # # This script creates the ISO image +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: build-iso +# Required-Start: prepare +# Required-Stop: +# Default-Start: 3 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} pushd $MYDIR > /dev/null Index: build.sh =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/build.sh,v retrieving revision 1.56 retrieving revision 1.57 diff -u -d -r1.56 -r1.57 --- build.sh 3 Sep 2003 02:29:41 -0000 1.56 +++ build.sh 13 Oct 2003 17:36:07 -0000 1.57 @@ -135,12 +135,90 @@ popd > /dev/null ;; + prepare ) + #before we do anything, we have to make sure kernel includes and that kind of stuff exist + echo running prepare + ./prepare prepare + + if [ ! -e /sbin/insserv ]; then + echo "insserv not found" + SCRIPT=insserv + CMD=build + SOURCEDIR=$(find_src_dir $SCRIPT) + + if [ -n "$SOURCEDIR" ]; then + pushd $SOURCEDIR > /dev/null + echo -n " (in $SOURCEDIR)" + fi + echo + if ! $MYDIR/$SCRIPT $CMD; then + echo "ERROR" + echo "$MYDIR/$SCRIPT $CMD failed" + exit 1 + fi + popd + fi + + echo "configuring order of scripts (this could take a while)" + rm -rf $DL_DIR/scripts/.buildorder &> /dev/null + mkdir -p $DL_DIR/scripts/.buildorder/rc{S,0,1,2,3,4,5,6}.d + + #for SCRIPT in $(grep -l "# DL-build-system v3" $DL_DIR/scripts/* | grep -v "build\.sh" | grep -v "build-order") + #do + # SCRIPT=${SCRIPT##/*/} + # ln -sf ../$SCRIPT $DL_DIR/scripts/.buildorder/rc0.d/S01$SCRIPT + # ln -sf ../$SCRIPT $DL_DIR/scripts/.buildorder/rc1.d/S01$SCRIPT + # ln -sf ../$SCRIPT $DL_DIR/scripts/.buildorder/rc2.d/S01$SCRIPT + # ln -sf ../$SCRIPT $DL_DIR/scripts/.buildorder/rc3.d/S01$SCRIPT + # ln -sf ../$SCRIPT $DL_DIR/scripts/.buildorder/rc4.d/S01$SCRIPT + # ln -sf ../$SCRIPT $DL_DIR/scripts/.buildorder/rc5.d/S01$SCRIPT + # ln -sf ../$SCRIPT $DL_DIR/scripts/.buildorder/rc6.d/S01$SCRIPT + # ln -sf ../$SCRIPT $DL_DIR/scripts/.buildorder/$SCRIPT + #done + + test -e /etc/insserv.conf && cp -f /etc/insserv.conf /etc/insserv.conf.dlbak || exit 1 + cp -f $DL_DIR/scripts/config/buildorder.conf /etc/insserv.conf || exit 1 + + # create symlinks in subfolder, so we don't mess up the build system so much + pushd $DL_DIR/scripts/.buildorder/ &> /dev/null + ln -sf ../* ./ + popd &> /dev/null + insserv -f -d $(grep -l "# DL-build-system v3" $DL_DIR/scripts/.buildorder/* | grep -v "build\.sh") || exit 1 + #echo NOT creating links for: + #grep -L "# DL-build-system v3" $DL_DIR/scripts/.buildorder/* | grep -v "build\.sh" 2> /dev/null + + test -e /etc/insserv.conf.dlbak && cp -f /etc/insserv.conf.dlbak /etc/insserv.conf || exit 1 + + #insserv -d $DL_DIR/scripts/.buildorder || exit 1 + + # do some cleanup, we don't need the K* scripts and they're confusing when you look for problems + find $DL_DIR/scripts/.buildorder/rc{S,0,1,2,3,4,5,6}.d -name "K*" | xargs rm &> /dev/null + + ;; + build|install|iso) if [ ! -f $BUILD_CONFIG ]; then echo "$BUILD_CONFIG not found, need to run menuconfig first" $MYSELF menuconfig || exit 1 fi + if [ ! -d $DL_DIR/scripts/.buildorder ]; then + echo "$DL_DIR/scripts/.buildorder not found, running prepare first" + $MYSELF prepare || exit 1 + fi + + # set the correct "runlevel" + if [ "$CMD" = "build" ]; then + LEVEL=1 + elif [ "$CMD" = "install" ]; then + LEVEL=2 + elif [ "$CMD" = "iso" ]; then + LEVEL=3 + else + echo "Someone messed up this script :(" + exit 1 + fi + if [ ! -d $WORKDIR ]; then if [ $CMD = "build" ]; then MSG="unpacking sources first" @@ -184,23 +262,20 @@ export PATH=/usr/lib/distcc/bin:$PATH fi - # run all scripts that have a corresponding file in - # the CMD subdir - LINKS=($(ls $MYDIR/$CMD/[0-9][0-9][0-9]*)) - for LINK in ${LINKS[@]##*/} + for LINK in $( ls -v $DL_DIR/scripts/.buildorder/rc$LEVEL.d/S* 2> /dev/null) do - SCRIPT=${LINK#[0-9][0-9][0-9]} + LINK=${LINK##/*/} + SCRIPT=${LINK#S[0-9][0-9]} # only execute a special script if selected test -n "$RUN_ONLY_CMD" && test "$SCRIPT" != "$RUN_ONLY_CMD" && continue - NUM=${LINK%$SCRIPT} - DONEFILE="${DONE}_${CMD}_${NUM}_${SCRIPT}" + DONEFILE="${DONE}_${CMD}_${SCRIPT}" echo if [ ! -f $MYDIR/$SCRIPT ]; then echo "ERROR" echo "$MYDIR/$SCRIPT not found" - echo "(LINK=${LINK} - SCRIPT=${SCRIPT} - NUM=${NUM})" + echo "(LINK=${LINK} - SCRIPT=${SCRIPT}" exit 1 fi if [ -f ${DONEFILE} -a -z "$RUN_ONLY_CMD" ]; then @@ -218,7 +293,7 @@ echo "ERROR" echo "$MYDIR/$SCRIPT $CMD failed" exit 1 - fi + fi touch ${DONEFILE} if dirs +1 &>/dev/null; then popd > /dev/null Index: busybox =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/busybox,v retrieving revision 1.20 retrieving revision 1.21 diff -u -d -r1.20 -r1.21 --- busybox 18 Sep 2003 19:50:59 -0000 1.20 +++ busybox 13 Oct 2003 17:36:07 -0000 1.21 @@ -5,6 +5,18 @@ # # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: busybox +# Required-Start: $basebuildtools $libs +# Required-Stop: +# Default-Start: 1 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: bzip2 =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/bzip2,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- bzip2 28 Jul 2003 20:35:47 -0000 1.9 +++ bzip2 13 Oct 2003 17:36:07 -0000 1.10 @@ -5,6 +5,18 @@ # # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: bzip2 +# Required-Start: $basebuildtools glibc +# Required-Stop: +# Default-Start: 1 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: camsource =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/camsource,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- camsource 19 Sep 2003 01:29:06 -0000 1.3 +++ camsource 13 Oct 2003 17:36:07 -0000 1.4 @@ -4,6 +4,18 @@ # $Date$ # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: camsource +# Required-Start: $basebuildtools $libs +# Required-Stop: +# Default-Start: 1 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: cd_cleanup =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/cd_cleanup,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- cd_cleanup 1 Oct 2003 02:02:42 -0000 1.1 +++ cd_cleanup 13 Oct 2003 17:36:07 -0000 1.2 @@ -5,6 +5,18 @@ # # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: cd_cleanup +# Required-Start: $installbase $installmain man-pages +# Required-Stop: +# Default-Start: 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: cdrtools =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/cdrtools,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- cdrtools 21 Apr 2003 20:53:36 -0000 1.4 +++ cdrtools 13 Oct 2003 17:36:08 -0000 1.5 @@ -5,6 +5,18 @@ # # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: cdrtools +# Required-Start: $basebuildtools $libs +# Required-Stop: +# Default-Start: 1 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: cfg_runlevel =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/cfg_runlevel,v retrieving revision 1.28 retrieving revision 1.29 diff -u -d -r1.28 -r1.29 --- cfg_runlevel 4 Oct 2003 01:24:16 -0000 1.28 +++ cfg_runlevel 13 Oct 2003 17:36:08 -0000 1.29 @@ -7,6 +7,18 @@ # # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: cfg_runlevel +# Required-Start: $installbase $installmain +# Required-Stop: +# Default-Start: 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} @@ -15,9 +27,6 @@ source $MYDIR/functions case $1 in - build ) - ;; - install ) echo "configuring runlevels" rm -rf $ETCDIR/etc/init.d/rc{S,0,1,2,3,4,5,6}.d || exit 1 Index: chpax =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/chpax,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- chpax 21 Jul 2003 20:43:33 -0000 1.5 +++ chpax 13 Oct 2003 17:36:08 -0000 1.6 @@ -5,6 +5,18 @@ # # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: chpax +# Required-Start: $basebuildtools $libs +# Required-Stop: +# Default-Start: 1 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: cipe =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/cipe,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- cipe 2 Oct 2003 12:28:41 -0000 1.10 +++ cipe 13 Oct 2003 17:36:08 -0000 1.11 @@ -7,6 +7,18 @@ # # CIPE added by: Bruce Smith <dev...@re...> for Devil Linux 0.6 +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: cipe +# Required-Start: $basebuildtools $libs +# Required-Stop: +# Default-Start: 1 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: clamav =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/clamav,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- clamav 5 Oct 2003 22:58:14 -0000 1.7 +++ clamav 13 Oct 2003 17:36:08 -0000 1.8 @@ -4,6 +4,18 @@ # $Date$ # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: clamav +# Required-Start: $basebuildtools $libs +# Required-Stop: +# Default-Start: 1 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: compartment =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/compartment,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- compartment 20 Aug 2003 20:02:48 -0000 1.11 +++ compartment 13 Oct 2003 17:36:08 -0000 1.12 @@ -5,6 +5,18 @@ # # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: compartment +# Required-Start: $basebuildtools $libs +# Required-Stop: +# Default-Start: 1 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: copy_base =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/copy_base,v retrieving revision 1.17 retrieving revision 1.18 diff -u -d -r1.17 -r1.18 --- copy_base 25 Jul 2003 13:02:22 -0000 1.17 +++ copy_base 13 Oct 2003 17:36:08 -0000 1.18 @@ -7,6 +7,18 @@ # # copy all the needed binaries for the Base System from LFS +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: copy_base +# Required-Start: prepare create_cd_dirs create_etc +# Required-Stop: +# Default-Start: 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: copy_libs =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/copy_libs,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- copy_libs 14 Jul 2003 13:27:09 -0000 1.16 +++ copy_libs 13 Oct 2003 17:36:08 -0000 1.17 @@ -7,6 +7,18 @@ # # copy all the needed libraries from LFS +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: copy_libs +# Required-Start: $installbase $installmain +# Required-Stop: +# Default-Start: 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} @@ -53,17 +65,8 @@ echo "copy libraries for initrd" cp_libs $INITRDDIR $INITRDDIR/lib - echo "copy libraries for ramdisk" - cp_libs $RAMDISKDIR $RAMDISKDIR/lib - echo "copy libraries for CD" cp_libs $CDDIR $CDDIR/lib $RAMDISKDIR - - for PACKAGE in $(ls $PACKAGEDIR) - do - echo "copy libraries for package $PACKAGE" - cp_libs $PACKAGEDIR/$PACKAGE $PACKAGEDIR/$PACKAGE/lib $RAMDISKDIR $CDDIR - done ;; Index: coreutils =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/coreutils,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- coreutils 27 Aug 2003 00:56:16 -0000 1.4 +++ coreutils 13 Oct 2003 17:36:08 -0000 1.5 @@ -5,6 +5,18 @@ # # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: coreutils +# Required-Start: $libs +# Required-Stop: +# Default-Start: 1 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: cpio =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/cpio,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- cpio 14 Jul 2003 13:27:09 -0000 1.5 +++ cpio 13 Oct 2003 17:36:08 -0000 1.6 @@ -5,6 +5,18 @@ # # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: cpio +# Required-Start: $basebuildtools $libs +# Required-Stop: +# Default-Start: 1 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: cpqarrayd =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/cpqarrayd,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- cpqarrayd 5 Oct 2003 13:12:04 -0000 1.8 +++ cpqarrayd 13 Oct 2003 17:36:08 -0000 1.9 @@ -4,6 +4,18 @@ # $Date$ # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: cpqarrayd +# Required-Start: $basebuildtools $libs +# Required-Stop: +# Default-Start: 1 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: cramfs =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/cramfs,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- cramfs 21 Sep 2003 14:35:49 -0000 1.2 +++ cramfs 13 Oct 2003 17:36:08 -0000 1.3 @@ -5,6 +5,18 @@ # # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: cramfs +# Required-Start: $basebuildtools $libs +# Required-Stop: +# Default-Start: 1 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: create_cd_dirs =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/create_cd_dirs,v retrieving revision 1.21 retrieving revision 1.22 diff -u -d -r1.21 -r1.22 --- create_cd_dirs 30 Sep 2003 00:07:55 -0000 1.21 +++ create_cd_dirs 13 Oct 2003 17:36:08 -0000 1.22 @@ -7,6 +7,18 @@ # # this script creates the necessary directories to create the iso image +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: create_cd_dirs +# Required-Start: prepare +# Required-Stop: +# Default-Start: 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: create_etc =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/create_etc,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- create_etc 29 Aug 2003 14:47:48 -0000 1.12 +++ create_etc 13 Oct 2003 17:36:08 -0000 1.13 @@ -5,6 +5,18 @@ # # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: create_etc +# Required-Start: prepare create_cd_dirs +# Required-Stop: +# Default-Start: 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: cron =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/cron,v retrieving revision 1.17 retrieving revision 1.18 diff -u -d -r1.17 -r1.18 --- cron 30 Jul 2003 14:32:59 -0000 1.17 +++ cron 13 Oct 2003 17:36:08 -0000 1.18 @@ -5,6 +5,18 @@ # # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: cron +# Required-Start: $basebuildtools $libs +# Required-Stop: +# Default-Start: 1 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: cutter =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/cutter,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- cutter 21 Sep 2003 14:35:49 -0000 1.5 +++ cutter 13 Oct 2003 17:36:08 -0000 1.6 @@ -7,6 +7,18 @@ # # Cutter added by: Bruce Smith <dev...@re...> for Devil Linux 0.6 +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: cutter +# Required-Start: $basebuildtools $libs +# Required-Stop: +# Default-Start: 1 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: cvs =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/cvs,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- cvs 22 Jul 2003 19:45:11 -0000 1.5 +++ cvs 13 Oct 2003 17:36:08 -0000 1.6 @@ -5,6 +5,18 @@ # # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: cvs +# Required-Start: $basebuildtools $libs +# Required-Stop: +# Default-Start: 1 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: cyrus-imapd =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/cyrus-imapd,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- cyrus-imapd 2 Oct 2003 12:28:41 -0000 1.18 +++ cyrus-imapd 13 Oct 2003 17:36:08 -0000 1.19 @@ -5,6 +5,18 @@ # # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: cyrus-imapd +# Required-Start: $basebuildtools $libs +# Required-Stop: +# Default-Start: 1 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: cyrus-sasl =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/cyrus-sasl,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- cyrus-sasl 30 Jul 2003 14:32:59 -0000 1.11 +++ cyrus-sasl 13 Oct 2003 17:36:08 -0000 1.12 @@ -5,6 +5,18 @@ # # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: cyrus-sasl +# Required-Start: $basebuildtools glibc db-4 openssl gdbm +# Required-Stop: +# Default-Start: 1 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: daemontools =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/daemontools,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- daemontools 25 Jul 2003 13:02:22 -0000 1.7 +++ daemontools 13 Oct 2003 17:36:08 -0000 1.8 @@ -5,6 +5,18 @@ # # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: daemontools +# Required-Start: $basebuildtools $libs +# Required-Stop: +# Default-Start: 1 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: db-4 =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/db-4,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- db-4 21 Apr 2003 20:53:37 -0000 1.3 +++ db-4 13 Oct 2003 17:36:08 -0000 1.4 @@ -5,6 +5,18 @@ # # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: db-4 +# Required-Start: $basebuildtools glibc +# Required-Stop: +# Default-Start: 1 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: ddt =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/ddt,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- ddt 23 Sep 2003 13:55:15 -0000 1.12 +++ ddt 13 Oct 2003 17:36:08 -0000 1.13 @@ -7,6 +7,18 @@ # # ddt added by Diego Torres <dt...@co...> +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: ddt +# Required-Start: $basebuildtools $libs +# Required-Stop: +# Default-Start: 1 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: ddup =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/ddup,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- ddup 22 Jul 2003 19:45:11 -0000 1.8 +++ ddup 13 Oct 2003 17:36:08 -0000 1.9 @@ -5,6 +5,18 @@ # # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: ddup +# Required-Start: $basebuildtools $libs +# Required-Stop: +# Default-Start: 1 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: devfsd =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/devfsd,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- devfsd 21 Sep 2003 14:35:49 -0000 1.2 +++ devfsd 13 Oct 2003 17:36:08 -0000 1.3 @@ -5,6 +5,18 @@ # # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: devfsd +# Required-Start: $basebuildtools $libs +# Required-Stop: +# Default-Start: 1 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: devildoc =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/devildoc,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- devildoc 18 Sep 2003 19:51:00 -0000 1.6 +++ devildoc 13 Oct 2003 17:36:08 -0000 1.7 @@ -5,6 +5,18 @@ # # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: devildoc +# Required-Start: $basebuildtools $libs $installmain +# Required-Stop: +# Default-Start: 1 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} @@ -19,7 +31,7 @@ ;; install ) - cp -dp $DL_DIR/docs/* $CDDOCDIR/ + cp -dp $DL_DIR/docs/* $CDDOCDIR/ pushd $CDDOCDIR/ || exit 1 $WORKDIR/j2re*/bin/java com.icl.saxon.StyleSheet $DL_DIR/docs/documentation/documentation.xml $DL_DIR/docs/documentation/stylesheets/html.xsl || exit 1 Index: dhcp =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/dhcp,v retrieving revision 1.17 retrieving revision 1.18 diff -u -d -r1.17 -r1.18 --- dhcp 30 Jul 2003 14:32:59 -0000 1.17 +++ dhcp 13 Oct 2003 17:36:08 -0000 1.18 @@ -5,6 +5,18 @@ # # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: dhcp +# Required-Start: $basebuildtools $libs +# Required-Stop: +# Default-Start: 1 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: dhcpcd =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/dhcpcd,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- dhcpcd 21 Jul 2003 20:43:33 -0000 1.10 +++ dhcpcd 13 Oct 2003 17:36:08 -0000 1.11 @@ -5,6 +5,18 @@ # # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: dhcpcd +# Required-Start: $basebuildtools $libs +# Required-Stop: +# Default-Start: 1 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: dialog =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/dialog,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- dialog 18 Jul 2003 03:00:53 -0000 1.3 +++ dialog 13 Oct 2003 17:36:08 -0000 1.4 @@ -5,6 +5,18 @@ # # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: dialog +# Required-Start: $basebuildtools $libs +# Required-Stop: +# Default-Start: 1 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: diffutils =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/diffutils,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- diffutils 21 Jul 2003 20:43:33 -0000 1.7 +++ diffutils 13 Oct 2003 17:36:08 -0000 1.8 @@ -4,6 +4,18 @@ # $Date$ # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: diffutils +# Required-Start: $basebuildtools $libs +# Required-Stop: +# Default-Start: 1 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: distcc =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/distcc,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- distcc 2 Oct 2003 12:28:41 -0000 1.13 +++ distcc 13 Oct 2003 17:36:08 -0000 1.14 @@ -5,6 +5,18 @@ # # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: distcc +# Required-Start: prepare create_cd_dirs create_etc copy_base +# Required-Stop: +# Default-Start: 1 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: djbdns =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/djbdns,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- djbdns 9 Oct 2003 00:35:14 -0000 1.11 +++ djbdns 13 Oct 2003 17:36:08 -0000 1.12 @@ -5,6 +5,18 @@ # # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: djbdns +# Required-Start: $basebuildtools $libs +# Required-Stop: +# Default-Start: 1 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: dosfstools =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/dosfstools,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- dosfstools 21 Sep 2003 14:35:49 -0000 1.4 +++ dosfstools 13 Oct 2003 17:36:08 -0000 1.5 @@ -7,6 +7,18 @@ # # disfstools added by: Bruce Smith <dev...@re...> for Devil Linux 0.6 +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: dosfstools +# Required-Start: $basebuildtools $libs +# Required-Stop: +# Default-Start: 1 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: dovecot =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/dovecot,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- dovecot 4 Oct 2003 17:43:38 -0000 1.9 +++ dovecot 13 Oct 2003 17:36:08 -0000 1.10 @@ -4,6 +4,18 @@ # $Date$ # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: dovecot +# Required-Start: $basebuildtools $libs +# Required-Stop: +# Default-Start: 1 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: e100 =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/e100,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- e100 3 Aug 2003 17:48:19 -0000 1.8 +++ e100 13 Oct 2003 17:36:08 -0000 1.9 @@ -5,6 +5,18 @@ # # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: e100 +# Required-Start: $basebuildtools $libs linux +# Required-Stop: +# Default-Start: 1 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: e1000 =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/e1000,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- e1000 3 Aug 2003 17:48:19 -0000 1.8 +++ e1000 13 Oct 2003 17:36:08 -0000 1.9 @@ -5,6 +5,18 @@ # # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: e1000 +# Required-Start: $basebuildtools $libs linux +# Required-Stop: +# Default-Start: 1 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: e2fsprogs =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/e2fsprogs,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- e2fsprogs 2 Oct 2003 12:28:41 -0000 1.14 +++ e2fsprogs 13 Oct 2003 17:36:08 -0000 1.15 @@ -5,6 +5,18 @@ # # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: e2fsprogs +# Required-Start: $basebuildtools $libs +# Required-Stop: +# Default-Start: 1 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: ethtool =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/ethtool,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- ethtool 23 Jul 2003 15:27:28 -0000 1.7 +++ ethtool 13 Oct 2003 17:36:08 -0000 1.8 @@ -4,6 +4,18 @@ # $Date$ # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: ethtool +# Required-Start: $basebuildtools $libs +# Required-Stop: +# Default-Start: 1 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: ez-ipupdate =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/ez-ipupdate,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- ez-ipupdate 22 Jul 2003 19:45:11 -0000 1.6 +++ ez-ipupdate 13 Oct 2003 17:36:08 -0000 1.7 @@ -4,6 +4,18 @@ # $Date$ # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: ez-ipupdate +# Required-Start: $basebuildtools $libs +# Required-Stop: +# Default-Start: 1 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: fam =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/fam,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- fam 21 Apr 2003 20:53:37 -0000 1.2 +++ fam 13 Oct 2003 17:36:08 -0000 1.3 @@ -5,6 +5,18 @@ # # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: fam +# Required-Start: $basebuildtools glibc +# Required-Stop: +# Default-Start: 1 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: fetchmail =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/fetchmail,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- fetchmail 2 Oct 2003 12:28:41 -0000 1.7 +++ fetchmail 13 Oct 2003 17:36:08 -0000 1.8 @@ -5,6 +5,18 @@ # # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: fetchmail +# Required-Start: $basebuildtools $libs +# Required-Stop: +# Default-Start: 1 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: file =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/file,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- file 23 Sep 2003 01:06:09 -0000 1.2 +++ file 13 Oct 2003 17:36:08 -0000 1.3 @@ -4,6 +4,18 @@ # $Date$ # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: file +# Required-Start: $basebuildtools $libs +# Required-Stop: +# Default-Start: 1 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: finalize =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/finalize,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- finalize 6 Sep 2003 01:13:57 -0000 1.3 +++ finalize 13 Oct 2003 17:36:08 -0000 1.4 @@ -5,6 +5,18 @@ # # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: finalize +# Required-Start: $installbase $installmain cd_cleanup +# Required-Stop: +# Default-Start: 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: findutils =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/findutils,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- findutils 14 Jul 2003 13:27:09 -0000 1.6 +++ findutils 13 Oct 2003 17:36:08 -0000 1.7 @@ -5,6 +5,18 @@ # # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: findutils +# Required-Start: $basebuildtools $libs +# Required-Stop: +# Default-Start: 1 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: freeramdisk =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/freeramdisk,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- freeramdisk 14 Jul 2003 13:27:09 -0000 1.5 +++ freeramdisk 13 Oct 2003 17:36:08 -0000 1.6 @@ -5,6 +5,18 @@ # # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: freeramdisk +# Required-Start: $basebuildtools $libs +# Required-Stop: +# Default-Start: 1 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: freeswan =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/freeswan,v retrieving revision 1.31 retrieving revision 1.32 diff -u -d -r1.31 -r1.32 --- freeswan 2 Oct 2003 12:28:41 -0000 1.31 +++ freeswan 13 Oct 2003 17:36:08 -0000 1.32 @@ -5,6 +5,18 @@ # # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: freeswan +# Required-Start: $basebuildtools $libs x509patch +# Required-Stop: +# Default-Start: 1 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: fwlogwatch =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/fwlogwatch,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- fwlogwatch 22 Jul 2003 19:45:11 -0000 1.7 +++ fwlogwatch 13 Oct 2003 17:36:08 -0000 1.8 @@ -5,6 +5,18 @@ # # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: fwlogwatch +# Required-Start: $basebuildtools $libs +# Required-Stop: +# Default-Start: 1 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: gawk =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/gawk,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- gawk 12 Jul 2003 13:17:35 -0000 1.6 +++ gawk 13 Oct 2003 17:36:08 -0000 1.7 @@ -5,6 +5,18 @@ # # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: gawk +# Required-Start: $basebuildtools $libs +# Required-Stop: +# Default-Start: 1 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: gcc =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/gcc,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- gcc 1 Oct 2003 02:02:42 -0000 1.8 +++ gcc 13 Oct 2003 17:36:08 -0000 1.9 @@ -4,6 +4,18 @@ # $Date$ # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: gcc +# Required-Start: distcc prepare +# Required-Stop: +# Default-Start: 1 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: gdbm =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/gdbm,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- gdbm 21 Apr 2003 20:53:37 -0000 1.7 +++ gdbm 13 Oct 2003 17:36:08 -0000 1.8 @@ -5,6 +5,18 @@ # # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: gdbm +# Required-Start: $basebuildtools glibc +# Required-Stop: +# Default-Start: 1 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: glib =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/glib,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- glib 21 Apr 2003 20:53:37 -0000 1.4 +++ glib 13 Oct 2003 17:36:08 -0000 1.5 @@ -5,6 +5,18 @@ # # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: glib +# Required-Start: $basebuildtools glibc pkgconfig +# Required-Stop: +# Default-Start: 1 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: glibc =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/glibc,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- glibc 25 Jul 2003 13:02:22 -0000 1.18 +++ glibc 13 Oct 2003 17:36:08 -0000 1.19 @@ -5,6 +5,18 @@ # # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: glibc +# Required-Start: $basebuildtools +# Required-Stop: +# Default-Start: 1 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: gmp =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/gmp,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- gmp 21 Apr 2003 20:53:37 -0000 1.10 +++ gmp 13 Oct 2003 17:36:08 -0000 1.11 @@ -5,6 +5,18 @@ # # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: gmp +# Required-Start: $basebuildtools glibc +# Required-Stop: +# Default-Start: 1 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} Index: gnupg =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/gnupg,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- gnupg 20 Aug 2003 20:02:48 -0000 1.9 +++ gnupg 13 Oct 2003 17:36:08 -0000 1.10 @@ -6,6 +6,18 @@ # http://www.devil-linux.org # GNUPG added by Gunther Stammwitz <gs...@ma...> +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: gnupg +# Required-Start: $basebuildtools glibc zlib +# Required-Stop: +# Default-Start: 1 2 +# Default-Stop: +# Description: description +### END INIT INFO + # get the directoryname of the script MYDIR=${0%/*} @@ -17,9 +29,12 @@ case $1 in build ) - ./configure --prefix=/usr --localstatedir=/var --sysconfdir=/etc --disable-nls || exit 1 + ./configure --prefix=/usr --localstatedir=/var --sysconfdir=/etc --disable-nls --enable-sha512 || exit 1 make $PMAKE all || exit 1 strip_debug + + # install it, so other programs can make use of it + make install || exit 1 ;; install ) Index: groff =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/groff,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- groff 2 Oct 2003 12:28:41 -0000 1.8 +++ groff 13 Oct 2003 17:36:08 -0000 1.9 @@ -5,6 +5,18 @@ # # http://www.devil-linux.org +# you need the next line, otherwise script won't be executed !!! +# DL-build-system v3 + +### BEGIN INIT INFO +# Provides: groff +# Required-Start: $basebuildtools $libs +# Required-Stop: +# Default-Start: 1 2 +# Default-Stop: +# Description: description +### END... [truncated message content] |
From: <smi...@us...> - 2003-10-13 17:36:41
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1:/tmp/cvs-serv24889 Modified Files: Makefile Log Message: updated for build system v3 Index: Makefile =================================================================== RCS file: /cvsroot/devil-linux/build/Makefile,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- Makefile 5 Oct 2003 02:28:10 -0000 1.7 +++ Makefile 13 Oct 2003 17:36:07 -0000 1.8 @@ -14,7 +14,8 @@ @echo "You have to call make with one of the following options:"; \ echo ; \ echo " menuconfig .. select which options should be added"; \ - echo " build ....... prepare and compile all sources"; \ + echo " prepare ..... prepare system for compilation"; \ + echo " build ....... compile all sources"; \ echo " install ..... install everything on the CD and"; \ echo " iso ......... create an ISO image"; \ echo " clean ....... cleans etc and ISO working folders :)"; \ @@ -24,6 +25,9 @@ echo "" menuconfig: + @$(BUILD) $@ + +prepare: @$(BUILD) $@ build: |
Update of /cvsroot/devil-linux/build/scripts/install In directory sc8-pr-cvs1:/tmp/cvs-serv24889/scripts/install Removed Files: .keepme 001prepare 010create_cd_dirs 015create_etc 020copy_base 021insserv 022glibc 035ncurses 050cdrtools 085cyrus-sasl 090bzip2 093openldap 096attr 096krb5 096net-snmp 096postgresql 097acl 100beep 100distcc 100which 101util-linux 102shadow 105sysvinit 107mysql 108cpio 109rpm 110busybox 115e2fsprogs 116reiserfsprogs 117jfsutils 130hdparm 133net-tools 135traceroute 140modutils 150linux 151MOSKRN 151grsecurity 151xfsprogs 152LVM 152patch-o-matic 153iptables 154bridge-utils 155freeswan 157iproute2 157x509patch 158lm_sensors 158watchdog 165e100 166e1000 170nano 175less 176procps 180syslog-ng 185psmisc 190dhcpcd 195netkit-base 200strace 202perl 205sysklogd 210syslinux 215tar 220lynx 225nail 230logrotate 230thttpd 235freeramdisk 235fwlogwatch 240iANS 245gnupg 250passwdgen 253mcrypt 255mdadm 260whois 265mc 270ez-ipupdate 275iptraf 280sysstat 285cyrus-imapd 290xinetd 295pcmcia-cs 296hostap 300linux-wlan-ng 305wireless_tools 310man 315gzip 320vim 325findutils 330cvs 331pd-cvs 332rcs 335ethtool 340fetchmail 345usbutils 350gawk 355pciutils 360groff 365sg3_utils 370chpax 370hotplug 375cpqarrayd 380ipac-ng 382netacct-mysql 385diffutils 390lilo 391grub 395MOSIX 400lsof 405gcc 405mtools 410procinfo 415pcwd 420mgetty 425lftp 430iputils 435dovecot 440Mail-SpamAssassin 445dialog 450vsftpd 455devfsd 460bash 465coreutils 470clamav 490openssl 500openssh 505binutils 510noip_updater 520ddup 530dhcp 540ntp 550rrlogind 555pppoe-patch4 557portslave 560ppp 570rp-pppoe 580pptpd 590daemontools 600djbdns 610ucspi-tcp 615setserial 620wvdial 630loadlin 640zebra 660stunnel 680Python 690python-ldap 695file 700cron 710qadsl 720pptp-linux 730bind 740wget 750joe 760arpwatch 770tcpdump 775sagator 780unarj 781lha 782unrar 783zip 784unzip 785memtest86 795tcp_wrappers 796portmap 796yp-tools 797ypbind-mt 798ypserv 800samba 800vlan 805postfix 810raidtools 815jftpgw 820snort 825squid 830compartment 835camsource 840vtun 850openvpn 860oidentd 870ddt 880cipe 882iptstate 890cutter 891ncftp 892telnet-bsd 893dosfstools 895libstdc++-compat 898openh323gk 899minicom 900copy_libs 905man-pages 910mk_devices 920cfg_runlevel 930devildoc 998cd_cleanup 998finalize 999setfiledates Log Message: updated for build system v3 --- .keepme DELETED --- --- 001prepare DELETED --- --- 010create_cd_dirs DELETED --- --- 015create_etc DELETED --- --- 020copy_base DELETED --- --- 021insserv DELETED --- --- 022glibc DELETED --- --- 035ncurses DELETED --- --- 050cdrtools DELETED --- --- 085cyrus-sasl DELETED --- --- 090bzip2 DELETED --- --- 093openldap DELETED --- --- 096attr DELETED --- --- 096krb5 DELETED --- --- 096net-snmp DELETED --- --- 096postgresql DELETED --- --- 097acl DELETED --- --- 100beep DELETED --- --- 100distcc DELETED --- --- 100which DELETED --- --- 101util-linux DELETED --- --- 102shadow DELETED --- --- 105sysvinit DELETED --- --- 107mysql DELETED --- --- 108cpio DELETED --- --- 109rpm DELETED --- --- 110busybox DELETED --- --- 115e2fsprogs DELETED --- --- 116reiserfsprogs DELETED --- --- 117jfsutils DELETED --- --- 130hdparm DELETED --- --- 133net-tools DELETED --- --- 135traceroute DELETED --- --- 140modutils DELETED --- --- 150linux DELETED --- --- 151MOSKRN DELETED --- --- 151grsecurity DELETED --- --- 151xfsprogs DELETED --- --- 152LVM DELETED --- --- 152patch-o-matic DELETED --- --- 153iptables DELETED --- --- 154bridge-utils DELETED --- --- 155freeswan DELETED --- --- 157iproute2 DELETED --- --- 157x509patch DELETED --- --- 158lm_sensors DELETED --- --- 158watchdog DELETED --- --- 165e100 DELETED --- --- 166e1000 DELETED --- --- 170nano DELETED --- --- 175less DELETED --- --- 176procps DELETED --- --- 180syslog-ng DELETED --- --- 185psmisc DELETED --- --- 190dhcpcd DELETED --- --- 195netkit-base DELETED --- --- 200strace DELETED --- --- 202perl DELETED --- --- 205sysklogd DELETED --- --- 210syslinux DELETED --- --- 215tar DELETED --- --- 220lynx DELETED --- --- 225nail DELETED --- --- 230logrotate DELETED --- --- 230thttpd DELETED --- --- 235freeramdisk DELETED --- --- 235fwlogwatch DELETED --- --- 240iANS DELETED --- --- 245gnupg DELETED --- --- 250passwdgen DELETED --- --- 253mcrypt DELETED --- --- 255mdadm DELETED --- --- 260whois DELETED --- --- 265mc DELETED --- --- 270ez-ipupdate DELETED --- --- 275iptraf DELETED --- --- 280sysstat DELETED --- --- 285cyrus-imapd DELETED --- --- 290xinetd DELETED --- --- 295pcmcia-cs DELETED --- --- 296hostap DELETED --- --- 300linux-wlan-ng DELETED --- --- 305wireless_tools DELETED --- --- 310man DELETED --- --- 315gzip DELETED --- --- 320vim DELETED --- --- 325findutils DELETED --- --- 330cvs DELETED --- --- 331pd-cvs DELETED --- --- 332rcs DELETED --- --- 335ethtool DELETED --- --- 340fetchmail DELETED --- --- 345usbutils DELETED --- --- 350gawk DELETED --- --- 355pciutils DELETED --- --- 360groff DELETED --- --- 365sg3_utils DELETED --- --- 370chpax DELETED --- --- 370hotplug DELETED --- --- 375cpqarrayd DELETED --- --- 380ipac-ng DELETED --- --- 382netacct-mysql DELETED --- --- 385diffutils DELETED --- --- 390lilo DELETED --- --- 391grub DELETED --- --- 395MOSIX DELETED --- --- 400lsof DELETED --- --- 405gcc DELETED --- --- 405mtools DELETED --- --- 410procinfo DELETED --- --- 415pcwd DELETED --- --- 420mgetty DELETED --- --- 425lftp DELETED --- --- 430iputils DELETED --- --- 435dovecot DELETED --- --- 440Mail-SpamAssassin DELETED --- --- 445dialog DELETED --- --- 450vsftpd DELETED --- --- 455devfsd DELETED --- --- 460bash DELETED --- --- 465coreutils DELETED --- --- 470clamav DELETED --- --- 490openssl DELETED --- --- 500openssh DELETED --- --- 505binutils DELETED --- --- 510noip_updater DELETED --- --- 520ddup DELETED --- --- 530dhcp DELETED --- --- 540ntp DELETED --- --- 550rrlogind DELETED --- --- 555pppoe-patch4 DELETED --- --- 557portslave DELETED --- --- 560ppp DELETED --- --- 570rp-pppoe DELETED --- --- 580pptpd DELETED --- --- 590daemontools DELETED --- --- 600djbdns DELETED --- --- 610ucspi-tcp DELETED --- --- 615setserial DELETED --- --- 620wvdial DELETED --- --- 630loadlin DELETED --- --- 640zebra DELETED --- --- 660stunnel DELETED --- --- 680Python DELETED --- --- 690python-ldap DELETED --- --- 695file DELETED --- --- 700cron DELETED --- --- 710qadsl DELETED --- --- 720pptp-linux DELETED --- --- 730bind DELETED --- --- 740wget DELETED --- --- 750joe DELETED --- --- 760arpwatch DELETED --- --- 770tcpdump DELETED --- --- 775sagator DELETED --- --- 780unarj DELETED --- --- 781lha DELETED --- --- 782unrar DELETED --- --- 783zip DELETED --- --- 784unzip DELETED --- --- 785memtest86 DELETED --- --- 795tcp_wrappers DELETED --- --- 796portmap DELETED --- --- 796yp-tools DELETED --- --- 797ypbind-mt DELETED --- --- 798ypserv DELETED --- --- 800samba DELETED --- --- 800vlan DELETED --- --- 805postfix DELETED --- --- 810raidtools DELETED --- --- 815jftpgw DELETED --- --- 820snort DELETED --- --- 825squid DELETED --- --- 830compartment DELETED --- --- 835camsource DELETED --- --- 840vtun DELETED --- --- 850openvpn DELETED --- --- 860oidentd DELETED --- --- 870ddt DELETED --- --- 880cipe DELETED --- --- 882iptstate DELETED --- --- 890cutter DELETED --- --- 891ncftp DELETED --- --- 892telnet-bsd DELETED --- --- 893dosfstools DELETED --- --- 895libstdc++-compat DELETED --- --- 898openh323gk DELETED --- --- 899minicom DELETED --- --- 900copy_libs DELETED --- --- 905man-pages DELETED --- --- 910mk_devices DELETED --- --- 920cfg_runlevel DELETED --- --- 930devildoc DELETED --- --- 998cd_cleanup DELETED --- --- 998finalize DELETED --- --- 999setfiledates DELETED --- |
From: <smi...@us...> - 2003-10-13 17:36:17
|
Update of /cvsroot/devil-linux/build/scripts/iso In directory sc8-pr-cvs1:/tmp/cvs-serv24889/scripts/iso Removed Files: .keepme 100build-iso Log Message: updated for build system v3 --- .keepme DELETED --- --- 100build-iso DELETED --- |
From: <smi...@us...> - 2003-10-13 17:36:15
|
Update of /cvsroot/devil-linux/build/scripts/configuration In directory sc8-pr-cvs1:/tmp/cvs-serv24889/scripts/configuration Modified Files: cvs.config pd-cvs.config Log Message: updated for build system v3 Index: cvs.config =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/configuration/cvs.config,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- cvs.config 2 Oct 2003 15:58:26 -0000 1.2 +++ cvs.config 13 Oct 2003 17:36:11 -0000 1.3 @@ -5,4 +5,4 @@ # # http://www.devil-linux.org -menu_add "System|Programming" bool "CVS" CONFIG_CVS +test "$CONFIG_PDCVS" = "y" || menu_add "System|Programming" bool "CVS" CONFIG_CVS Index: pd-cvs.config =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/configuration/pd-cvs.config,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- pd-cvs.config 2 Oct 2003 15:58:26 -0000 1.2 +++ pd-cvs.config 13 Oct 2003 17:36:11 -0000 1.3 @@ -5,4 +5,4 @@ # # http://www.devil-linux.org -menu_add "System|Programming" bool "CVS (old v1.10.8-PD2 only for Propack Data use!)" CONFIG_PDCVS +test "$CONFIG_CVS" = "y" || menu_add "System|Programming" bool "CVS (old v1.10.8-PD2 only for Propack Data use!)" CONFIG_PDCVS |
From: <smi...@us...> - 2003-10-13 17:36:15
|
Update of /cvsroot/devil-linux/build/scripts/config In directory sc8-pr-cvs1:/tmp/cvs-serv24889/scripts/config Added Files: buildorder.conf Log Message: updated for build system v3 --- NEW FILE: buildorder.conf --- # # All local filesystems are mounted (done during boot phase) # $libs glibc uclibc gmp ncurses zlib ncurses popt readline libol db-4 libxml2 libusb libpcap libjpeg lzo cyrus-sasl bzip2 opt gdbm glib pkgconfig fam libmcrypt libgcrypt openldap pwlib attr acl krb5 wvstreams postgresql mysql gnupg mcrypt mhash tcp_wrappers $basebuildtools distcc gcc bison makedepend libtool binutils $installbase prepare create_cd_dirs create_etc $installmain linux man iptables patch-o-matic e100 e1000 pcmcia-cs vlan iptables ppp ipac-ng wireless_tools coreutils $kernel linux MOSKRN grsecurity xfsprogs LVM patch-o-matic iptables x509patch bridge-utils freeswan i2c iproute2 lm_sensors watchdog |
Update of /cvsroot/devil-linux/build/scripts/build In directory sc8-pr-cvs1:/tmp/cvs-serv24889/scripts/build Removed Files: .keepme 001prepare 002distcc 002gcc 002libtool 002makedepend 003binutils 003bison 004glibc 004uClibc 005insserv 007which 010gmp 015popt 020libol 025readline 030zlib 035ncurses 040openssl 042libgcrypt 042libmcrypt 044fam 050cdrtools 053pkgconfig 055glib 060nasm 071db-4 080gdbm 085cyrus-sasl 087lzo 088opt 090bzip2 090jpeg 090libpcap 090libusb 090libxml2 092Libnet 093openldap 093pwlib 094openh323 096attr 096krb5 096net-snmp 096postgresql 097acl 099cramfs 099wvstreams 100beep 101util-linux 102shadow 105sysvinit 107mysql 108cpio 109rpm 110busybox 115e2fsprogs 116reiserfsprogs 117jfsutils 130hdparm 133net-tools 135traceroute 140modutils 145pptp-patches 150linux 151MOSKRN 151grsecurity 151xfsprogs 152LVM 152patch-o-matic 153iptables 153x509patch 154bridge-utils 155freeswan 157i2c 157iproute2 158lm_sensors 158watchdog 159linux 165e100 166e1000 170nano 175less 176procps 180syslog-ng 185psmisc 190dhcpcd 195netkit-base 200strace 202perl 205sysklogd 210syslinux 215tar 220lynx 225nail 230logrotate 230thttpd 235freeramdisk 235fwlogwatch 240iANS 245gnupg 250passwdgen 252mhash 253mcrypt 255mdadm 260whois 265mc 270ez-ipupdate 275iptraf 280sysstat 285cyrus-imapd 290xinetd 295pcmcia-cs 296hostap 300linux-wlan-ng 305wireless_tools 310man 315gzip 320vim 325findutils 330cvs 331pd-cvs 332rcs 335ethtool 340fetchmail 345usbutils 350gawk 355pciutils 360groff 365sg3_utils 370chpax 375cpqarrayd 380ipac-ng 382netacct-mysql 385diffutils 390lilo 391grub 395MOSIX 400lsof 405mtools 410procinfo 415pcwd 420mgetty 425lftp 430iputils 435dovecot 440Mail-SpamAssassin 445dialog 450vsftpd 455devfsd 460bash 465coreutils 470clamav 500openssh 510noip_updater 520ddup 530dhcp 540ntp 550rrlogind 555pppoe-patch4 557portslave 560ppp 570rp-pppoe 580pptpd 590daemontools 600djbdns 610ucspi-tcp 615setserial 620wvdial 640zebra 660stunnel 680Python 690python-ldap 695file 700cron 710qadsl 720pptp-linux 730bind 740wget 750joe 760arpwatch 770tcpdump 775sagator 780unarj 781lha 782unrar 783zip 784unzip 795tcp_wrappers 796portmap 796yp-tools 797ypbind-mt 798ypserv 800samba 800vlan 805postfix 810raidtools 815jftpgw 820snort 825squid 830compartment 835camsource 840vtun 850openvpn 860oidentd 870ddt 880cipe 882iptstate 890cutter 891ncftp 892telnet-bsd 893dosfstools 898openh323gk 899minicom 930devildoc Log Message: updated for build system v3 --- .keepme DELETED --- --- 001prepare DELETED --- --- 002distcc DELETED --- --- 002gcc DELETED --- --- 002libtool DELETED --- --- 002makedepend DELETED --- --- 003binutils DELETED --- --- 003bison DELETED --- --- 004glibc DELETED --- --- 004uClibc DELETED --- --- 005insserv DELETED --- --- 007which DELETED --- --- 010gmp DELETED --- --- 015popt DELETED --- --- 020libol DELETED --- --- 025readline DELETED --- --- 030zlib DELETED --- --- 035ncurses DELETED --- --- 040openssl DELETED --- --- 042libgcrypt DELETED --- --- 042libmcrypt DELETED --- --- 044fam DELETED --- --- 050cdrtools DELETED --- --- 053pkgconfig DELETED --- --- 055glib DELETED --- --- 060nasm DELETED --- --- 071db-4 DELETED --- --- 080gdbm DELETED --- --- 085cyrus-sasl DELETED --- --- 087lzo DELETED --- --- 088opt DELETED --- --- 090bzip2 DELETED --- --- 090jpeg DELETED --- --- 090libpcap DELETED --- --- 090libusb DELETED --- --- 090libxml2 DELETED --- --- 092Libnet DELETED --- --- 093openldap DELETED --- --- 093pwlib DELETED --- --- 094openh323 DELETED --- --- 096attr DELETED --- --- 096krb5 DELETED --- --- 096net-snmp DELETED --- --- 096postgresql DELETED --- --- 097acl DELETED --- --- 099cramfs DELETED --- --- 099wvstreams DELETED --- --- 100beep DELETED --- --- 101util-linux DELETED --- --- 102shadow DELETED --- --- 105sysvinit DELETED --- --- 107mysql DELETED --- --- 108cpio DELETED --- --- 109rpm DELETED --- --- 110busybox DELETED --- --- 115e2fsprogs DELETED --- --- 116reiserfsprogs DELETED --- --- 117jfsutils DELETED --- --- 130hdparm DELETED --- --- 133net-tools DELETED --- --- 135traceroute DELETED --- --- 140modutils DELETED --- --- 145pptp-patches DELETED --- --- 150linux DELETED --- --- 151MOSKRN DELETED --- --- 151grsecurity DELETED --- --- 151xfsprogs DELETED --- --- 152LVM DELETED --- --- 152patch-o-matic DELETED --- --- 153iptables DELETED --- --- 153x509patch DELETED --- --- 154bridge-utils DELETED --- --- 155freeswan DELETED --- --- 157i2c DELETED --- --- 157iproute2 DELETED --- --- 158lm_sensors DELETED --- --- 158watchdog DELETED --- --- 159linux DELETED --- --- 165e100 DELETED --- --- 166e1000 DELETED --- --- 170nano DELETED --- --- 175less DELETED --- --- 176procps DELETED --- --- 180syslog-ng DELETED --- --- 185psmisc DELETED --- --- 190dhcpcd DELETED --- --- 195netkit-base DELETED --- --- 200strace DELETED --- --- 202perl DELETED --- --- 205sysklogd DELETED --- --- 210syslinux DELETED --- --- 215tar DELETED --- --- 220lynx DELETED --- --- 225nail DELETED --- --- 230logrotate DELETED --- --- 230thttpd DELETED --- --- 235freeramdisk DELETED --- --- 235fwlogwatch DELETED --- --- 240iANS DELETED --- --- 245gnupg DELETED --- --- 250passwdgen DELETED --- --- 252mhash DELETED --- --- 253mcrypt DELETED --- --- 255mdadm DELETED --- --- 260whois DELETED --- --- 265mc DELETED --- --- 270ez-ipupdate DELETED --- --- 275iptraf DELETED --- --- 280sysstat DELETED --- --- 285cyrus-imapd DELETED --- --- 290xinetd DELETED --- --- 295pcmcia-cs DELETED --- --- 296hostap DELETED --- --- 300linux-wlan-ng DELETED --- --- 305wireless_tools DELETED --- --- 310man DELETED --- --- 315gzip DELETED --- --- 320vim DELETED --- --- 325findutils DELETED --- --- 330cvs DELETED --- --- 331pd-cvs DELETED --- --- 332rcs DELETED --- --- 335ethtool DELETED --- --- 340fetchmail DELETED --- --- 345usbutils DELETED --- --- 350gawk DELETED --- --- 355pciutils DELETED --- --- 360groff DELETED --- --- 365sg3_utils DELETED --- --- 370chpax DELETED --- --- 375cpqarrayd DELETED --- --- 380ipac-ng DELETED --- --- 382netacct-mysql DELETED --- --- 385diffutils DELETED --- --- 390lilo DELETED --- --- 391grub DELETED --- --- 395MOSIX DELETED --- --- 400lsof DELETED --- --- 405mtools DELETED --- --- 410procinfo DELETED --- --- 415pcwd DELETED --- --- 420mgetty DELETED --- --- 425lftp DELETED --- --- 430iputils DELETED --- --- 435dovecot DELETED --- --- 440Mail-SpamAssassin DELETED --- --- 445dialog DELETED --- --- 450vsftpd DELETED --- --- 455devfsd DELETED --- --- 460bash DELETED --- --- 465coreutils DELETED --- --- 470clamav DELETED --- --- 500openssh DELETED --- --- 510noip_updater DELETED --- --- 520ddup DELETED --- --- 530dhcp DELETED --- --- 540ntp DELETED --- --- 550rrlogind DELETED --- --- 555pppoe-patch4 DELETED --- --- 557portslave DELETED --- --- 560ppp DELETED --- --- 570rp-pppoe DELETED --- --- 580pptpd DELETED --- --- 590daemontools DELETED --- --- 600djbdns DELETED --- --- 610ucspi-tcp DELETED --- --- 615setserial DELETED --- --- 620wvdial DELETED --- --- 640zebra DELETED --- --- 660stunnel DELETED --- --- 680Python DELETED --- --- 690python-ldap DELETED --- --- 695file DELETED --- --- 700cron DELETED --- --- 710qadsl DELETED --- --- 720pptp-linux DELETED --- --- 730bind DELETED --- --- 740wget DELETED --- --- 750joe DELETED --- --- 760arpwatch DELETED --- --- 770tcpdump DELETED --- --- 775sagator DELETED --- --- 780unarj DELETED --- --- 781lha DELETED --- --- 782unrar DELETED --- --- 783zip DELETED --- --- 784unzip DELETED --- --- 795tcp_wrappers DELETED --- --- 796portmap DELETED --- --- 796yp-tools DELETED --- --- 797ypbind-mt DELETED --- --- 798ypserv DELETED --- --- 800samba DELETED --- --- 800vlan DELETED --- --- 805postfix DELETED --- --- 810raidtools DELETED --- --- 815jftpgw DELETED --- --- 820snort DELETED --- --- 825squid DELETED --- --- 830compartment DELETED --- --- 835camsource DELETED --- --- 840vtun DELETED --- --- 850openvpn DELETED --- --- 860oidentd DELETED --- --- 870ddt DELETED --- --- 880cipe DELETED --- --- 882iptstate DELETED --- --- 890cutter DELETED --- --- 891ncftp DELETED --- --- 892telnet-bsd DELETED --- --- 893dosfstools DELETED --- --- 898openh323gk DELETED --- --- 899minicom DELETED --- --- 930devildoc DELETED --- |
From: <smi...@us...> - 2003-10-12 22:46:51
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv13615/scripts Modified Files: Tag: rel-1-0-patches net-snmp Log Message: disable parallel builds Index: net-snmp =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/net-snmp,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -u -d -r1.1 -r1.1.2.1 --- net-snmp 2 Oct 2003 23:57:17 -0000 1.1 +++ net-snmp 12 Oct 2003 22:46:46 -0000 1.1.2.1 @@ -18,7 +18,8 @@ build ) if [ "$CONFIG_NET_SNMP" = "y" ]; then ./configure --prefix=/usr --disable-debugging --sysconfdir=/etc --localstatedir=/var --with-defaults --enable-shared --enable-ipv6 --enable-ucd-compatibility --with-zlib || exit 1 - make $PMAKE all || exit 1 + # disable parallel builds, they don't work + make all || exit 1 strip_debug #mkdir -p $WORKDIR/LIBS/net-snmp || exit 1 #make install prefix=$WORKDIR/LIBS/net-snmp/usr exec_prefix=$WORKDIR/LIBS/net-snmp/usr sysconfdir=$WORKDIR/LIBS/net-snmp/etc persistentdir=$WORKDIR/LIBS/net-snmp/var/net-snmp || exit 1 |
From: <smi...@us...> - 2003-10-12 19:36:36
|
Update of /cvsroot/devil-linux/build/scripts/config In directory sc8-pr-cvs1:/tmp/cvs-serv8729/scripts/config Modified Files: Tag: rel-1-0-patches VERSION Log Message: increased version Index: VERSION =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/config/VERSION,v retrieving revision 1.9 retrieving revision 1.9.2.1 diff -u -d -r1.9 -r1.9.2.1 --- VERSION 5 Oct 2003 20:21:07 -0000 1.9 +++ VERSION 12 Oct 2003 19:36:29 -0000 1.9.2.1 @@ -1 +1 @@ -1.0RC1 +1.0RC2 |
From: <bl...@us...> - 2003-10-11 21:02:06
|
Update of /cvsroot/devil-linux/build/config/etc/init.d In directory sc8-pr-cvs1:/tmp/cvs-serv7419/build/config/etc/init.d Modified Files: Tag: rel-1-0-patches firewall.rules.2nic firewall.rules.3nic Log Message: modified firewall scripts to flush/zero/delete chains from all tables Index: firewall.rules.2nic =================================================================== RCS file: /cvsroot/devil-linux/build/config/etc/init.d/firewall.rules.2nic,v retrieving revision 1.8 retrieving revision 1.8.2.1 diff -u -d -r1.8 -r1.8.2.1 --- firewall.rules.2nic 2 Oct 2003 20:39:36 -0000 1.8 +++ firewall.rules.2nic 11 Oct 2003 21:02:02 -0000 1.8.2.1 @@ -34,10 +34,15 @@ [ -n "$LOGGING" ] && ${MODPROBE} ipt_LOG # Flush tables & setup Policy -${IPTABLES} -F # flush all chains and tables -for t in `cat /proc/net/ip_tables_names`; do ${IPTABLES} -F -t $t ; done -${IPTABLES} -X # delete all user chains -${IPTABLES} -Z # zero all counters +${IPTABLES} -F # flush chains +${IPTABLES} -X # delete user chains +${IPTABLES} -Z # zero counters +for t in `cat /proc/net/ip_tables_names` +do + ${IPTABLES} -F -t $t + ${IPTABLES} -X -t $t + ${IPTABLES} -Z -t $t +done ${IPTABLES} -P INPUT DROP # Policy = DROP ${IPTABLES} -P OUTPUT DROP # Drop all packets that are ${IPTABLES} -P FORWARD DROP # not specifically accepted. Index: firewall.rules.3nic =================================================================== RCS file: /cvsroot/devil-linux/build/config/etc/init.d/firewall.rules.3nic,v retrieving revision 1.5 retrieving revision 1.5.2.1 diff -u -d -r1.5 -r1.5.2.1 --- firewall.rules.3nic 2 Oct 2003 21:02:00 -0000 1.5 +++ firewall.rules.3nic 11 Oct 2003 21:02:02 -0000 1.5.2.1 @@ -35,10 +35,15 @@ [ -n "$LOGGING" ] && ${MODPROBE} ipt_LOG # Flush tables & setup Policy -${IPTABLES} -F # flush all chains and tables -for t in `cat /proc/net/ip_tables_names`; do ${IPTABLES} -F -t $t ; done -${IPTABLES} -X # delete all user chains -${IPTABLES} -Z # zero all counters +${IPTABLES} -F # flush chains +${IPTABLES} -X # delete user chains +${IPTABLES} -Z # zero counters +for t in `cat /proc/net/ip_tables_names` +do + ${IPTABLES} -F -t $t + ${IPTABLES} -X -t $t + ${IPTABLES} -Z -t $t +done ${IPTABLES} -P INPUT DROP # Policy = DROP ${IPTABLES} -P OUTPUT DROP # Drop all packets that are ${IPTABLES} -P FORWARD DROP # not specifically accepted. |
From: <bl...@us...> - 2003-10-11 21:02:06
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1:/tmp/cvs-serv7419/build Modified Files: Tag: rel-1-0-patches CHANGES Log Message: modified firewall scripts to flush/zero/delete chains from all tables Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.510.2.6 retrieving revision 1.510.2.7 diff -u -d -r1.510.2.6 -r1.510.2.7 --- CHANGES 10 Oct 2003 21:21:40 -0000 1.510.2.6 +++ CHANGES 11 Oct 2003 21:02:02 -0000 1.510.2.7 @@ -23,6 +23,7 @@ # 1.0-RC 2 +- modified firewall scripts to flush/zero/delete chains from all tables (bs) - added setserial v2.17 - updated iptables to v1.2.8 - updated patch-o-matic to v20030912 |
From: <bl...@us...> - 2003-10-11 21:00:49
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1:/tmp/cvs-serv7110/build Modified Files: CHANGES Log Message: modified firewall scripts to flush/zero/delete chains from all tables Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.520 retrieving revision 1.521 diff -u -d -r1.520 -r1.521 --- CHANGES 10 Oct 2003 21:19:25 -0000 1.520 +++ CHANGES 11 Oct 2003 21:00:42 -0000 1.521 @@ -31,6 +31,7 @@ - added tcp_wrappers - needed by portmapper (bs) 1.0-RC 2 +- modified firewall scripts to flush/zero/delete chains from all tables (bs) - added setserial v2.17 - updated iptables to v1.2.8 - updated patch-o-matic to v20030912 |
From: <bl...@us...> - 2003-10-11 21:00:49
|
Update of /cvsroot/devil-linux/build/config/etc/init.d In directory sc8-pr-cvs1:/tmp/cvs-serv7110/build/config/etc/init.d Modified Files: firewall.rules.2nic firewall.rules.3nic Log Message: modified firewall scripts to flush/zero/delete chains from all tables Index: firewall.rules.2nic =================================================================== RCS file: /cvsroot/devil-linux/build/config/etc/init.d/firewall.rules.2nic,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- firewall.rules.2nic 2 Oct 2003 20:39:36 -0000 1.8 +++ firewall.rules.2nic 11 Oct 2003 21:00:42 -0000 1.9 @@ -34,10 +34,15 @@ [ -n "$LOGGING" ] && ${MODPROBE} ipt_LOG # Flush tables & setup Policy -${IPTABLES} -F # flush all chains and tables -for t in `cat /proc/net/ip_tables_names`; do ${IPTABLES} -F -t $t ; done -${IPTABLES} -X # delete all user chains -${IPTABLES} -Z # zero all counters +${IPTABLES} -F # flush chains +${IPTABLES} -X # delete user chains +${IPTABLES} -Z # zero counters +for t in `cat /proc/net/ip_tables_names` +do + ${IPTABLES} -F -t $t + ${IPTABLES} -X -t $t + ${IPTABLES} -Z -t $t +done ${IPTABLES} -P INPUT DROP # Policy = DROP ${IPTABLES} -P OUTPUT DROP # Drop all packets that are ${IPTABLES} -P FORWARD DROP # not specifically accepted. Index: firewall.rules.3nic =================================================================== RCS file: /cvsroot/devil-linux/build/config/etc/init.d/firewall.rules.3nic,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- firewall.rules.3nic 2 Oct 2003 21:02:00 -0000 1.5 +++ firewall.rules.3nic 11 Oct 2003 21:00:42 -0000 1.6 @@ -35,10 +35,15 @@ [ -n "$LOGGING" ] && ${MODPROBE} ipt_LOG # Flush tables & setup Policy -${IPTABLES} -F # flush all chains and tables -for t in `cat /proc/net/ip_tables_names`; do ${IPTABLES} -F -t $t ; done -${IPTABLES} -X # delete all user chains -${IPTABLES} -Z # zero all counters +${IPTABLES} -F # flush chains +${IPTABLES} -X # delete user chains +${IPTABLES} -Z # zero counters +for t in `cat /proc/net/ip_tables_names` +do + ${IPTABLES} -F -t $t + ${IPTABLES} -X -t $t + ${IPTABLES} -Z -t $t +done ${IPTABLES} -P INPUT DROP # Policy = DROP ${IPTABLES} -P OUTPUT DROP # Drop all packets that are ${IPTABLES} -P FORWARD DROP # not specifically accepted. |
From: <smi...@us...> - 2003-10-11 14:28:07
|
Update of /cvsroot/devil-linux/build/docs/documentation In directory sc8-pr-cvs1:/tmp/cvs-serv9130/docs/documentation Modified Files: Tag: rel-1-0-patches documentation.xml Log Message: added information about configuration on CD and booting from devices other then CD Index: documentation.xml =================================================================== RCS file: /cvsroot/devil-linux/build/docs/documentation/documentation.xml,v retrieving revision 1.43.2.1 retrieving revision 1.43.2.2 diff -u -d -r1.43.2.1 -r1.43.2.2 --- documentation.xml 10 Oct 2003 21:57:16 -0000 1.43.2.1 +++ documentation.xml 11 Oct 2003 14:28:03 -0000 1.43.2.2 @@ -658,6 +658,17 @@ <para>Logging to files is disabled by default, because on a standard Devil-Linux installation /var/log resides on the ramdisk.</para> <para>Enable harddisk support as discribed in the chapter <link linkend="harddisk_support">harddisk support</link> and uncomment the associated lines in <filename>/etc/syslog-ng/syslog-ng.conf</filename>.</para> </sect2> + <sect2> + <title>Configuration on CD</title> + <para>It is possibe to have your <filename>etc.tar.bz2</filename> on the CD, if you don't like floppy disks (who doesn't?) and can't use a USB device.</para> + <para>When you unpack the Devil-Linux tarball, you find the file <command>custom-cd</command> which helps you adding or replacing file on the CD. Create and test your configuration using a floppy disk, otherwise you will need a lot of CDs. Once you configuration is finished, add you <filename>etc.tar.bz2</filename> to the root directory of the CD.</para> + </sect2> + <sect2> + <title>Booting Devil-Linux from devices other then the CD-ROM</title> + <para><filename></filename>You can boot Devil-Linux from i.e. USB PenDrives, when you computer supports this.</para> + <para>When you unpack the Devil-Linux tarball, you find the file <command>install-on-usb</command> which does everything for you. </para> + <para>If you intend to boot from other devices, this script should be you starting point. You probably don't even need to modify it. But please be aware, that we currently only support CD-ROM and USB boot.</para> + </sect2> </sect1> </chapter> <chapter> |
From: <smi...@us...> - 2003-10-11 14:27:20
|
Update of /cvsroot/devil-linux/build/docs/documentation In directory sc8-pr-cvs1:/tmp/cvs-serv9016/docs/documentation Modified Files: documentation.xml Log Message: added information about configuration on CD and booting from devices other then CD Index: documentation.xml =================================================================== RCS file: /cvsroot/devil-linux/build/docs/documentation/documentation.xml,v retrieving revision 1.44 retrieving revision 1.45 diff -u -d -r1.44 -r1.45 --- documentation.xml 10 Oct 2003 21:57:01 -0000 1.44 +++ documentation.xml 11 Oct 2003 14:27:15 -0000 1.45 @@ -658,6 +658,17 @@ <para>Logging to files is disabled by default, because on a standard Devil-Linux installation /var/log resides on the ramdisk.</para> <para>Enable harddisk support as discribed in the chapter <link linkend="harddisk_support">harddisk support</link> and uncomment the associated lines in <filename>/etc/syslog-ng/syslog-ng.conf</filename>.</para> </sect2> + <sect2> + <title>Configuration on CD</title> + <para>It is possibe to have your <filename>etc.tar.bz2</filename> on the CD, if you don't like floppy disks (who doesn't?) and can't use a USB device.</para> + <para>When you unpack the Devil-Linux tarball, you find the file <command>custom-cd</command> which helps you adding or replacing file on the CD. Create and test your configuration using a floppy disk, otherwise you will need a lot of CDs. Once you configuration is finished, add you <filename>etc.tar.bz2</filename> to the root directory of the CD.</para> + </sect2> + <sect2> + <title>Booting Devil-Linux from devices other then the CD-ROM</title> + <para><filename></filename>You can boot Devil-Linux from i.e. USB PenDrives, when you computer supports this.</para> + <para>When you unpack the Devil-Linux tarball, you find the file <command>install-on-usb</command> which does everything for you. </para> + <para>If you intend to boot from other devices, this script should be you starting point. You probably don't even need to modify it. But please be aware, that we currently only support CD-ROM and USB boot.</para> + </sect2> </sect1> </chapter> <chapter> |
From: <smi...@us...> - 2003-10-10 21:57:20
|
Update of /cvsroot/devil-linux/build/docs/documentation In directory sc8-pr-cvs1:/tmp/cvs-serv22072/docs/documentation Modified Files: Tag: rel-1-0-patches documentation.xml Log Message: minor fixes Index: documentation.xml =================================================================== RCS file: /cvsroot/devil-linux/build/docs/documentation/documentation.xml,v retrieving revision 1.43 retrieving revision 1.43.2.1 diff -u -d -r1.43 -r1.43.2.1 --- documentation.xml 7 Oct 2003 22:51:29 -0000 1.43 +++ documentation.xml 10 Oct 2003 21:57:16 -0000 1.43.2.1 @@ -15,7 +15,7 @@ <!ENTITY sample1 SYSTEM "sample/ez-ipupdate"> ]> <book> - <title>Devil-Linux Documentation</title> + <title>\Devil-Linux Documentation</title> <bookinfo> <subtitle>This documentation is for v1.0 and above</subtitle> <subtitle>$Revision$ $Date$ </subtitle> @@ -376,7 +376,9 @@ <sect2> <title>Create Physical Volume</title> <para>Create a physical volume (PV) from the partiton created in step above.</para> - <para><command>pvcreate /dev/hdc1</command></para> + <para><command>pvcreate <device></command></para> + <para>Example:</para> + <para><command moreinfo="none">pvcreate /dev/md/0</command></para> </sect2> <sect2> <title>Create Volume Group</title> @@ -395,7 +397,7 @@ <para><command>lvcreate -L <size> -n <LV name> devil-linux</command></para> <para><command>mkfs.reiserfs /dev/devil-linux/<LV name></command></para> <para>Example:</para> - <para><command>lvcreate -L 512M-n log devil-linux</command></para> + <para><command>lvcreate -L 512M -n log devil-linux</command></para> <para><command>mkfs.reiserfs /dev/devil-linux/log</command></para> <para><note> <para>of course you can use other formats, like JFS (<command>mkfs.jfs</command>)</para> |
From: <smi...@us...> - 2003-10-10 21:57:09
|
Update of /cvsroot/devil-linux/build/docs/documentation In directory sc8-pr-cvs1:/tmp/cvs-serv21972/docs/documentation Modified Files: documentation.xml Log Message: minor fixes Index: documentation.xml =================================================================== RCS file: /cvsroot/devil-linux/build/docs/documentation/documentation.xml,v retrieving revision 1.43 retrieving revision 1.44 diff -u -d -r1.43 -r1.44 --- documentation.xml 7 Oct 2003 22:51:29 -0000 1.43 +++ documentation.xml 10 Oct 2003 21:57:01 -0000 1.44 @@ -15,7 +15,7 @@ <!ENTITY sample1 SYSTEM "sample/ez-ipupdate"> ]> <book> - <title>Devil-Linux Documentation</title> + <title>\Devil-Linux Documentation</title> <bookinfo> <subtitle>This documentation is for v1.0 and above</subtitle> <subtitle>$Revision$ $Date$ </subtitle> @@ -376,7 +376,9 @@ <sect2> <title>Create Physical Volume</title> <para>Create a physical volume (PV) from the partiton created in step above.</para> - <para><command>pvcreate /dev/hdc1</command></para> + <para><command>pvcreate <device></command></para> + <para>Example:</para> + <para><command moreinfo="none">pvcreate /dev/md/0</command></para> </sect2> <sect2> <title>Create Volume Group</title> @@ -395,7 +397,7 @@ <para><command>lvcreate -L <size> -n <LV name> devil-linux</command></para> <para><command>mkfs.reiserfs /dev/devil-linux/<LV name></command></para> <para>Example:</para> - <para><command>lvcreate -L 512M-n log devil-linux</command></para> + <para><command>lvcreate -L 512M -n log devil-linux</command></para> <para><command>mkfs.reiserfs /dev/devil-linux/log</command></para> <para><note> <para>of course you can use other formats, like JFS (<command>mkfs.jfs</command>)</para> |
From: <smi...@us...> - 2003-10-10 21:21:50
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1:/tmp/cvs-serv15562 Modified Files: Tag: rel-1-0-patches CHANGES Log Message: added setserial Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.510.2.5 retrieving revision 1.510.2.6 diff -u -d -r1.510.2.5 -r1.510.2.6 --- CHANGES 10 Oct 2003 00:02:15 -0000 1.510.2.5 +++ CHANGES 10 Oct 2003 21:21:40 -0000 1.510.2.6 @@ -23,6 +23,7 @@ # 1.0-RC 2 +- added setserial v2.17 - updated iptables to v1.2.8 - updated patch-o-matic to v20030912 - added djbdns ignoreip patch |
From: <smi...@us...> - 2003-10-10 21:21:50
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv15562/scripts Added Files: Tag: rel-1-0-patches setserial Log Message: added setserial --- NEW FILE: setserial --- #!/bin/bash # $Source: /cvsroot/devil-linux/build/scripts/setserial,v $ # $Revision: 1.1.2.1 $ # $Date: 2003/10/10 21:21:40 $ # # http://www.devil-linux.org # get the directoryname of the script MYDIR=${0%/*} # source functions and config source $MYDIR/settings source $MYDIR/functions case $1 in build ) ./configure --prefix=/usr --sysconfdir=/etc --disable-nls || exit 1 make $PMAKE all || exit 1 strip_debug ;; install ) copy_man cp -dp setserial $CDDIR/bin/ || exit 1 ;; * ) echo "ERROR ($0)" echo "please add parameter so I know what to do" exit 1 ;; esac |
From: <smi...@us...> - 2003-10-10 21:21:49
|
Update of /cvsroot/devil-linux/build/scripts/build In directory sc8-pr-cvs1:/tmp/cvs-serv15562/scripts/build Added Files: Tag: rel-1-0-patches 615setserial Log Message: added setserial --- NEW FILE: 615setserial --- |
From: <smi...@us...> - 2003-10-10 21:21:49
|
Update of /cvsroot/devil-linux/build/scripts/install In directory sc8-pr-cvs1:/tmp/cvs-serv15562/scripts/install Added Files: Tag: rel-1-0-patches 615setserial Log Message: added setserial --- NEW FILE: 615setserial --- |