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: Heiko Z. <smi...@us...> - 2011-12-10 19:31:45
|
Update of /cvsroot/devil-linux/build/scripts
In directory vz-cvs-3.sog:/tmp/cvs-serv14228/scripts
Modified Files:
parted
Log Message:
I hate stupid configure scripts
Index: parted
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/parted,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- parted 10 Dec 2011 19:28:16 -0000 1.6
+++ parted 10 Dec 2011 19:31:43 -0000 1.7
@@ -24,7 +24,9 @@
CONF_EXTRA=""
if [ "$CONFIG_LVM2" = "y" ]; then
- CONF_EXTRA="--enable-device-mapper"
+ CONF_EXTRA="${CONF_EXTRA} --enable-device-mapper"
+ else
+ CONF_EXTRA="${CONF_EXTRA} --disable-device-mapper"
fi
./configure --prefix=/usr --disable-nls --without-readline $CONF_EXTRA || exit 1
|
|
From: Heiko Z. <smi...@us...> - 2011-12-10 19:28:18
|
Update of /cvsroot/devil-linux/build/scripts
In directory vz-cvs-3.sog:/tmp/cvs-serv14026
Modified Files:
parted
Log Message:
ability to build parted without LVM
Index: parted
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/parted,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- parted 5 Dec 2011 09:11:38 -0000 1.5
+++ parted 10 Dec 2011 19:28:16 -0000 1.6
@@ -22,7 +22,12 @@
touch .patch.done
fi
- ./configure --prefix=/usr --disable-nls --without-readline --enable-device-mapper || exit 1
+ CONF_EXTRA=""
+ if [ "$CONFIG_LVM2" = "y" ]; then
+ CONF_EXTRA="--enable-device-mapper"
+ fi
+
+ ./configure --prefix=/usr --disable-nls --without-readline $CONF_EXTRA || exit 1
make CC="gcc -fno-stack-protector" $PMAKE || exit 1
;;
|
|
From: Heiko Z. <smi...@us...> - 2011-12-10 19:11:57
|
Update of /cvsroot/devil-linux/build/scripts In directory vz-cvs-3.sog:/tmp/cvs-serv11680/scripts Modified Files: linux Added Files: fail2ban Log Message: - updated grsecurity to 2.2.2-3.1.4-201112082139 - added fail2ban 0.8.4 --- NEW FILE: fail2ban --- #!/bin/bash # $Source: /cvsroot/devil-linux/build/scripts/fail2ban,v $ # $Revision: 1.1 $ # $Date: 2011/12/10 19:11:55 $ # # http://www.devil-linux.org # you need the next line, otherwise script won't be executed !!! # DL-build-system v3 # get the directoryname of the script MYDIR=${0%/*} # source functions and config source $MYDIR/settings MYNAME=PYTHON_LDAP case $1 in build ) if [ "$CONFIG_PYTHON" = "y" ] && [ "$CONFIG_FAIL2BAN" = "y" ]; then cp $MYDIR/config/python-ldap.cfg setup.cfg || exit 1 python setup.py build fi ;; install ) if [ "$CONFIG_PYTHON" = "y" ] && [ "$CONFIG_FAIL2BAN" = "y" ]; then mkdir -p $TMPDIR python setup.py install --root $TMPDIR cp -dvpR $TMPDIR/etc $ETCDIR/ || exit 1 rm -rf $TMPDIR/etc cp -dvpR $TMPDIR/* $CDDIR/$PYTHONDIR/ || exit 1 rm -rf $TMPDIR cp -dpvR man/*.1 $CDDIR/usr/share/man/man1 || exit 1 fi ;; * ) echo "ERROR ($0)" echo "please add parameter so I know what to do" exit 1 ;; esac Index: linux =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/linux,v retrieving revision 1.75 retrieving revision 1.76 diff -u -d -r1.75 -r1.76 --- linux 21 Nov 2011 21:17:22 -0000 1.75 +++ linux 10 Dec 2011 19:11:55 -0000 1.76 @@ -31,8 +31,8 @@ fi make oldconfig - make $PMAKE bzImage || exit 1 - make $PMAKE modules || exit 1 + make CC="gcc -U_FORTIFY_SOURCE" $PMAKE bzImage || exit 1 + make CC="gcc -U_FORTIFY_SOURCE" $PMAKE modules || exit 1 # make sure everything exists to make other scripts happy cp -v arch/x86/boot/bzImage /boot/vmlinuz || exit 1 @@ -43,7 +43,7 @@ ;; install ) - make modules_install INSTALL_MOD_PATH=$CDDIR || exit 1 + make CC="gcc -fno-PIE -no-fatal-warnings" modules_install INSTALL_MOD_PATH=$CDDIR || exit 1 cp -v arch/x86/boot/bzImage $BOOTIMAGEDIR/vmlinuz || exit 1 cp -v System.map $BOOTIMAGEDIR/boot || exit 1 cp -v System.map $CDDIR/boot || exit 1 |
|
From: Heiko Z. <smi...@us...> - 2011-12-10 15:25:58
|
Update of /cvsroot/devil-linux/build/scripts
In directory vz-cvs-3.sog:/tmp/cvs-serv5357
Modified Files:
GeoIP
Log Message:
clean up after ourselves
Index: GeoIP
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/GeoIP,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- GeoIP 5 Dec 2011 09:11:37 -0000 1.3
+++ GeoIP 10 Dec 2011 15:25:55 -0000 1.4
@@ -39,6 +39,7 @@
rm -rf $TMPDIR/usr/share || exit 1
copy_files $TMPDIR/etc $ETCDIR/ || exit 1
copy_files $TMPDIR/usr $CDDIR/ || exit 1
+ rm -rf $TMPDIR || exit 1
fi
;;
|
|
From: Heiko Z. <smi...@us...> - 2011-12-09 13:10:32
|
Update of /cvsroot/devil-linux/build/scripts In directory vz-cvs-3.sog:/tmp/cvs-serv32743/scripts Modified Files: finalize Log Message: using all the correct paths really helps Index: finalize =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/finalize,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- finalize 9 Dec 2011 12:59:49 -0000 1.13 +++ finalize 9 Dec 2011 13:10:29 -0000 1.14 @@ -44,7 +44,7 @@ # now let's search for libraries which have the executable stack flag set # and error out if we find any (only if PAX or GRSecurity are on) - GNU_EXEC_STACK=$(scanelf $CDDIR -eRq | grep -v grub/kernel.img) + GNU_EXEC_STACK=$(scanelf $CDDIR -eRq | grep -v /boot/grub/kernel.img | grep -v /usr/lib/grub/i386-pc/kernel.img) if [ -n "$GNU_EXEC_STACK" ]; then if [ "$CONFIG_GRSECURITY" = "y" ] || [ "$CONFIG_PAX" == "y" ]; then echo "************ ERROR ************" |
|
From: Heiko Z. <smi...@us...> - 2011-12-09 12:59:51
|
Update of /cvsroot/devil-linux/build/scripts
In directory vz-cvs-3.sog:/tmp/cvs-serv30342/scripts
Modified Files:
finalize grub
Log Message:
disable gnu exec stack on grub
can't disable it for the grub kernel, shouldn't be a problem since this is
used before the system actually boots
Index: finalize
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/finalize,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- finalize 2 Nov 2011 14:03:41 -0000 1.12
+++ finalize 9 Dec 2011 12:59:49 -0000 1.13
@@ -44,7 +44,7 @@
# now let's search for libraries which have the executable stack flag set
# and error out if we find any (only if PAX or GRSecurity are on)
- GNU_EXEC_STACK=$(scanelf $CDDIR -eRq)
+ GNU_EXEC_STACK=$(scanelf $CDDIR -eRq | grep -v grub/kernel.img)
if [ -n "$GNU_EXEC_STACK" ]; then
if [ "$CONFIG_GRSECURITY" = "y" ] || [ "$CONFIG_PAX" == "y" ]; then
echo "************ ERROR ************"
Index: grub
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/grub,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -d -r1.24 -r1.25
--- grub 8 Dec 2011 19:24:31 -0000 1.24
+++ grub 9 Dec 2011 12:59:49 -0000 1.25
@@ -21,12 +21,12 @@
patch_from_dir ../grub-patches
if [ "$CONFIG_GCC_HARDENED" = "y" ]; then
- export CC="gcc -fno-stack-protector -fno-pic -fno-pie -nopie"
+ export CC="gcc -fno-stack-protector -fno-pic -fno-pie -nopie -Wa,--noexecstack"
fi
unset CFLAGS
unset CXXFLAGS
./configure --prefix=/usr --sbindir=/sbin --sysconfdir=/etc --disable-nls || exit 1
- make $PMAKE || exit 1
+ make $PMAKE LDFLAGS="-Wl,-z,noexecstack" || exit 1
;;
install )
|
|
From: Heiko Z. <smi...@us...> - 2011-12-08 19:24:33
|
Update of /cvsroot/devil-linux/build/scripts
In directory vz-cvs-3.sog:/tmp/cvs-serv28462/scripts
Modified Files:
grub
Log Message:
updated grub to 1.99
Index: grub
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/grub,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -d -r1.23 -r1.24
--- grub 5 Dec 2011 09:11:38 -0000 1.23
+++ grub 8 Dec 2011 19:24:31 -0000 1.24
@@ -16,13 +16,6 @@
MYNAME="GRUB"
-# currently doesn't work on 64 bit
-# no clue why, things should be fine
-# even new version doesn't work
-if [ "$CONFIG_CPU" = "x86_64" ]; then
- exit 0
-fi
-
case $1 in
build )
patch_from_dir ../grub-patches
@@ -30,29 +23,20 @@
if [ "$CONFIG_GCC_HARDENED" = "y" ]; then
export CC="gcc -fno-stack-protector -fno-pic -fno-pie -nopie"
fi
- export CFLAGS="-static ${CFLAGS}"
- aclocal
- automake
- autoconf
- ./configure --prefix=/usr --sbindir=/sbin --disable-auto-linux-mem-opt
-
+ unset CFLAGS
+ unset CXXFLAGS
+ ./configure --prefix=/usr --sbindir=/sbin --sysconfdir=/etc --disable-nls || exit 1
make $PMAKE || exit 1
- pushd grub > /dev/null || exit 1
- rm -f grub
- make $PMAKE LDFLAGS="-static -Wl,-z,noexecstack" || exit 1
- popd > /dev/null || exit 1
-
;;
install )
rm -rf $TMPDIR || exit 1
mkdir -p $TMPDIR || exit 1
make install DESTDIR=$TMPDIR || exit 1
- paxctl -p -s -m -x -e -r $TMPDIR/sbin/grub || exit 1
copy_docs $TMPDIR
- mkdir -p $CDDIR/sbin
- cp -dpvR $TMPDIR/sbin/* $CDDIR/sbin/ || exit 1
- cp -dpvR $TMPDIR/usr/lib $CDDIR/usr/ || exit 1
+ cp -dpvR $TMPDIR/etc/* $ETCDIR/etc/ || exit 1
+ rm -rf $TMPDIR/etc
+ cp -dpvR $TMPDIR/* $CDDIR/ || exit 1
mkdir -p $CDDIR/boot/grub
cp -dpvR $TMPDIR/usr/lib/grub/i386-pc/* $CDDIR/boot/grub/ || exit 1
cp -p $DL_DIR/other/devil-linux.xpm.gz $CDDIR/boot/grub/ || exit 1
|
|
From: Heiko Z. <smi...@us...> - 2011-12-08 14:46:28
|
Update of /cvsroot/devil-linux/build In directory vz-cvs-3.sog:/tmp/cvs-serv17575 Modified Files: Makefile.build Log Message: ptlib needs pkgconfig Index: Makefile.build =================================================================== RCS file: /cvsroot/devil-linux/build/Makefile.build,v retrieving revision 1.37 retrieving revision 1.38 diff -u -d -r1.37 -r1.38 --- Makefile.build 21 Nov 2011 21:17:22 -0000 1.37 +++ Makefile.build 8 Dec 2011 14:46:25 -0000 1.38 @@ -239,7 +239,7 @@ pkgconfig: | $(GROUP_13) -ptlib: | $(GROUP_13) +ptlib: | $(GROUP_13) pkgconfig tiff: | $(GROUP_13) |
|
From: Heiko Z. <smi...@us...> - 2011-12-06 09:23:09
|
Update of /cvsroot/devil-linux/build/scripts In directory vz-cvs-3.sog:/tmp/cvs-serv22324 Modified Files: build.sh Log Message: use absolute path functions is already sources by settings Index: build.sh =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/build.sh,v retrieving revision 1.111 retrieving revision 1.112 diff -u -d -r1.111 -r1.112 --- build.sh 2 Nov 2011 14:03:41 -0000 1.111 +++ build.sh 6 Dec 2011 09:23:07 -0000 1.112 @@ -14,8 +14,7 @@ MYSELF=$MYDIR/$BASE export DL_DIR -source settings -source functions +source $DL_DIR/scripts/settings # make sure all the needed mounts are done mount -t proc none /proc |
|
From: Heiko Z. <smi...@us...> - 2011-12-06 09:13:06
|
Update of /cvsroot/devil-linux/build In directory vz-cvs-3.sog:/tmp/cvs-serv19676 Modified Files: CHANGES Log Message: resolved bug #117 - install-on-usb fails (syslinux) Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.1474 retrieving revision 1.1475 diff -u -d -r1.1474 -r1.1475 --- CHANGES 6 Dec 2011 07:47:24 -0000 1.1474 +++ CHANGES 6 Dec 2011 09:13:03 -0000 1.1475 @@ -22,6 +22,7 @@ # 1.6.0-RC1 +- resolved bug #117 - install-on-usb fails (syslinux) - disabled xmbmon, it hasn't been maintained in 6 years - updated bacula to 5.2.2 - updated grsecurity to 2.2.2-3.1.4-201112021740 |
|
From: Heiko Z. <smi...@us...> - 2011-12-06 08:18:45
|
Update of /cvsroot/devil-linux/build/scripts
In directory vz-cvs-3.sog:/tmp/cvs-serv3665/scripts
Modified Files:
settings
Log Message:
get rid of error message during menuconfig
Index: settings
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/settings,v
retrieving revision 1.67
retrieving revision 1.68
diff -u -d -r1.67 -r1.68
--- settings 29 Nov 2011 01:12:26 -0000 1.67
+++ settings 6 Dec 2011 08:18:43 -0000 1.68
@@ -121,7 +121,11 @@
CONF_HOST="x86_64-unknown-linux-gnu"
fi
-PACKAGEDIR=$(find_src_dir ${0##*/})
-test -n "${PACKAGEDIR}" && cd ${PACKAGEDIR}
+cd ${WORKDIR}
+PKG=${0##*/}
+if [ "${PKG}" != ".configure" ]; then
+ PACKAGEDIR=$(find_src_dir ${PKG})
+ test -n "${PACKAGEDIR}" && cd ${PACKAGEDIR}
+fi
export CONFIG_SITE=${DL_DIR}/scripts/config/config_site.pic
|
|
From: Heiko Z. <smi...@us...> - 2011-12-06 07:47:27
|
Update of /cvsroot/devil-linux/build In directory vz-cvs-3.sog:/tmp/cvs-serv21858 Modified Files: CHANGES Log Message: disabled xmbmon, it hasn't been maintained in 6 years Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.1473 retrieving revision 1.1474 diff -u -d -r1.1473 -r1.1474 --- CHANGES 6 Dec 2011 07:23:58 -0000 1.1473 +++ CHANGES 6 Dec 2011 07:47:24 -0000 1.1474 @@ -22,6 +22,7 @@ # 1.6.0-RC1 +- disabled xmbmon, it hasn't been maintained in 6 years - updated bacula to 5.2.2 - updated grsecurity to 2.2.2-3.1.4-201112021740 - updated linux kernel to 3.1.4 |
|
From: Heiko Z. <smi...@us...> - 2011-12-06 07:25:53
|
Update of /cvsroot/devil-linux/build/scripts/configuration/profiles In directory vz-cvs-3.sog:/tmp/cvs-serv12153/scripts/configuration/profiles Modified Files: server Log Message: the "server" doesn't use the hardened gcc anymore, in order to provide greater compatibility. Please use the normal (secured) version of DL in areas where hightened security is required! Index: server =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/configuration/profiles/server,v retrieving revision 1.37 retrieving revision 1.38 diff -u -d -r1.37 -r1.38 --- server 21 Nov 2011 21:17:22 -0000 1.37 +++ server 6 Dec 2011 07:25:51 -0000 1.38 @@ -57,7 +57,7 @@ CONFIG_FROX=n CONFIG_FWLOGWATCH=y CONFIG_GCC_CPU=i686 -CONFIG_GCC_HARDENED=y +CONFIG_GCC_HARDENED=n CONFIG_GOCR=y CONFIG_GPM=y CONFIG_GRSECURITY=n |
|
From: Heiko Z. <smi...@us...> - 2011-12-06 07:24:01
|
Update of /cvsroot/devil-linux/build In directory vz-cvs-3.sog:/tmp/cvs-serv11794 Modified Files: CHANGES md5sum.lst Log Message: - updated bacula to 5.2.2 - updated grsecurity to 2.2.2-3.1.4-201112021740 - updated linux kernel to 3.1.4 Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.1472 retrieving revision 1.1473 diff -u -d -r1.1472 -r1.1473 --- CHANGES 24 Nov 2011 15:00:33 -0000 1.1472 +++ CHANGES 6 Dec 2011 07:23:58 -0000 1.1473 @@ -22,6 +22,9 @@ # 1.6.0-RC1 +- updated bacula to 5.2.2 +- updated grsecurity to 2.2.2-3.1.4-201112021740 +- updated linux kernel to 3.1.4 - mc is now correctly displaying files again with color - updated shorewall to 4.4.25.3 - updated bind to 9.8.1-P1 Index: md5sum.lst =================================================================== RCS file: /cvsroot/devil-linux/build/md5sum.lst,v retrieving revision 1.641 retrieving revision 1.642 diff -u -d -r1.641 -r1.642 --- md5sum.lst 24 Nov 2011 15:00:34 -0000 1.641 +++ md5sum.lst 6 Dec 2011 07:23:59 -0000 1.642 @@ -38,7 +38,7 @@ c2972c4d9b3e29c03d5f2af86249876f src/automake-1.11.1.tar.bz2 e4db89a2a403ff4c47d66ac66fad1f43 src/avahi-0.6.30.tar.gz 26a5b19fa9f395e9e7dafed37b795d7f src/awstats-6.95.tar.gz -793da9f89fc5e024b6b95eb16a3120e5 src/bacula-5.2.1.tar.gz +227b88f56ae085da8f48823b220d4c87 src/bacula-5.2.2.tar.gz 3fb927c7c33022f1c327f14a81c0d4b0 src/bash-4.2.tar.gz f474be7d6c12fb197264b3fe32142b66 src/bash-patches.tar.bz2 d541419fd7e5642952d7b48cbb40c712 src/beep-1.2.2.tar.gz @@ -181,7 +181,7 @@ 03e3451a38b0d615cb113cbeaf252dc0 src/grep-2.9.tar.gz b2151714de0c8d31d864fc7b7b9fcb3a src/groff-1.20.1-badchar.patch.bz2 48fa768dd6fdeb7968041dd5ae8e2b02 src/groff-1.20.1.tar.gz -83e28531f2681b84c71dd0ea70d25ee1 src/grsecurity-2.2.2-3.1.1-201111181902.patch.bz2 +ef014f3a8050b1e0f15b501f34f97971 src/grsecurity-2.2.2-3.1.4-201112021740.patch.bz2 cd3f3eb54446be6003156158d51f4884 src/grub-0.97.tar.gz c2c3bbb68b76856ce7d62b09770fe405 src/grub-patches.tar.xz e381b8506210c794278f5527cba0e765 src/gzip-1.4.tar.gz @@ -381,7 +381,7 @@ e6f90c8e57e236d45626d479feca2dc4 src/pam_otp_auth-3.2.2.tar.gz a5d27ccbaaad9d9fb254b01a3c12bd06 src/pam_radius-1.3.17.tar.gz 30ceb6df7e8681891e865e2fe5a7903d src/parted-2.3.tar.gz -2bf7eb28a58238e1a062fa7393bf7824 src/patch-3.1.1.xz +e9843abdf27d3ecb57d02f710aca4854 src/patch-3.1.4.xz 289248c80d96184a902ffac1db56543f src/patch-o-matic-ng-20090819.tar.bz2 ad241429bf352d1b55493153f2eaae2f src/pax-linux-2.6.32.10-test27.patch.bz2 acf0e368cb33bc2f6a335ba3f5e4fd2b src/pax-utils-0.1.15.tar.bz2 |
|
From: Heiko Z. <smi...@us...> - 2011-12-05 14:35:46
|
Update of /cvsroot/devil-linux/build/scripts
In directory vz-cvs-3.sog:/tmp/cvs-serv16262
Modified Files:
glibc man
Log Message:
cleanup
Index: glibc
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/glibc,v
retrieving revision 1.61
retrieving revision 1.62
diff -u -d -r1.61 -r1.62
--- glibc 5 Dec 2011 09:11:38 -0000 1.61
+++ glibc 5 Dec 2011 14:35:43 -0000 1.62
@@ -42,7 +42,6 @@
rm -rf $TMPDIR/usr/lib64 || exit 1
fi
-
# ok we need to do this a little tricky, otherwise all hell breaks loose
pushd $TMPDIR || exit 1
mkdir -p $TMPDIR/etc || exit 1
Index: man
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/man,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- man 5 Dec 2011 09:11:38 -0000 1.18
+++ man 5 Dec 2011 14:35:43 -0000 1.19
@@ -17,7 +17,7 @@
case $1 in
build )
./configure -default -confdir=/etc
- make &&
+ make
;;
|
|
From: Heiko Z. <smi...@us...> - 2011-12-05 09:20:29
|
Update of /cvsroot/devil-linux/build/scripts
In directory vz-cvs-3.sog:/tmp/cvs-serv7650
Modified Files:
functions
Log Message:
oops
Index: functions
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/functions,v
retrieving revision 1.78
retrieving revision 1.79
diff -u -d -r1.78 -r1.79
--- functions 5 Dec 2011 09:11:37 -0000 1.78
+++ functions 5 Dec 2011 09:20:27 -0000 1.79
@@ -19,7 +19,7 @@
#MYDIR=${0%/*}
# strips all debug symbols from binaries to get them smaller
-
+strip_debug()
{
echo "removing debug symbols from binaries"
find ./ -type f -exec strip -p --strip-debug '{}' ';' 1> /dev/null 2>/dev/null
|
Update of /cvsroot/devil-linux/build/scripts
In directory vz-cvs-3.sog:/tmp/cvs-serv5744
Modified Files:
GeoIP ImageMagick LPRng LVM LVM2 Libnet Linux-PAM
Mail-SpamAssassin MySQL-python Pound Python acl aiccu aide
alsa-driver alsa-firmware alsa-lib alsa-utils alsaplayer aoe6
apcupsd arping arpwatch attr autoconf automake avahi bacula
bash beep bind binutils bison bluez-firmware bluez-hcidump
bluez-libs bluez-utils bonnie++ bridge-utils bzip2 camsource
cd_cleanup cdrtools cgilib cipe clamav compartment
conntrack-tools coreutils cpio cpqarrayd cracklib cron ctags
curl cvs cyrus-imapd cyrus-sasl daemontools dansguardian dante
daq dar db-4 dbus dcc ddup debianutils dev86 dhcp dhcpcd
dialog diffutils distcc djbdns dkim-milter dnsmasq docbook2X
dosfstools dovecot dovecot_deleted_to_trash dspam dst e100
e1000 e2fsprogs ebtables ether-wake ethtool expat ez-ipupdate
fetchmail file findutils flex flow-tools fprobe fprobe-ulog
freeradius freeramdisk freetype frox functions fwlogwatch gawk
gd gdbm gdchart giflib gifsicle git glib glibc gmp gnugk gnupg
gnutls gocr gpm grep groff grsecurity grub gzip h323plus
hdparm heartbeat hostap-driver hostap-utils hostapd httpd id3
id3lib ifenslave igb imap inetutils inotify-tools insserv
intltool ipac-ng ipcalc iperf ippool iproute2 ipsec-tools
iptables iptraf iptstate iputils ipvsadm irqbalance
isapnptools iscsitarget jailkit jfsutils jftpgw joe jpeg kbd
keepalived kid knock krb5 lcd4linux less lftp lha libHX libart
libdaemon libdbi libdbi-drivers libdnet libdvdcss libdvdread
libevent libgcrypt libgpg-error libiconv liblockfile libmad
libmcrypt libnetfilter_conntrack libnfnetlink libnfsidmap
libnl libol libosip2 libpcap libpng libsafe libtirpc libtool
libusb libxml2 libxslt lm_sensors logrotate lsof lynx lzo make
makedepend man mc mcrypt mdadm memcached mgetty mhash minicom
mod_auth_kerb mod_authn_otp mod_perl mod_proxy_html
module-init-tools motion mpc mpfr mrtg mt-st mtools mtr mtx
mysql nagios nagios-plugins nail nano nasm nbd ncftp ncurses
ndiswrapper neon net-snmp netacct-mysql netpbm nettle
nfs-utils nmap noip_updater nrpe nsca nss_ldap ntop ntp nut
oidentd open-iscsi openl2tp openldap openssh openssl openvpn
opt otpd p11-kit pam-pgsql pam_ldap pam_mount pam_mysql
pam_otp_auth pam_radius parted pax-utils paxctl pciutils pcre
pcwd perl php pkgconfig pohmelfs popt poptop portmap portslave
postfix postgresql ppp pptp-linux procinfo procmail procps
psmisc ptlib pymilter python-ldap qadsl quagga quota-tools
radiusplugin radvd razor-agents rcs readline reiserfsprogs
rng-tools rp-pppoe rpcbind rpm rrdtool rsync sagator samba
sarg scponly screen sdparm sed ser setserial sg3_utils shadow
sipcalc siproxd smartmontools snort sqlite squashfs squid
squidguard ssmtp strace strongswan stunnel sudo swig syslinux
syslog-ng sysstat sysvinit tar tcp_wrappers tcpdump telnet-bsd
tftp-hpa thttpd tiff tnef traceroute ucarp ucspi-tcp udev
unarj unrar unzip usbutils util-linux vblade vim vlan
vncrepeater vobcopy vsftpd vtun watchdog webalizer wget which
whois wireless_tools wol wvdial wvstreams xfsprogs xinetd
xmbmon xtables-addons xz yp-tools ypbind-mt ypserv zip
zisofs-tools zlib
Log Message:
only do the stripping of symbols once during the build process
Index: iputils
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/iputils,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- iputils 6 Jan 2010 15:20:24 -0000 1.15
+++ iputils 5 Dec 2011 09:11:38 -0000 1.16
@@ -22,7 +22,7 @@
fi
make $PMAKE || exit 1
- strip_debug
+
;;
install )
Index: gd
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/gd,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- gd 6 Jan 2010 15:20:24 -0000 1.6
+++ gd 5 Dec 2011 09:11:38 -0000 1.7
@@ -18,7 +18,7 @@
build )
./configure --prefix=/usr --without-libiconv-prefix || exit 1
make $PMAKE all || exit 1
- strip_debug
+
# we have to install this immediately, because this is a library and could be needed by other sources
make install || exit 1
Index: gdbm
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/gdbm,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- gdbm 6 Jan 2010 15:20:24 -0000 1.11
+++ gdbm 5 Dec 2011 09:11:38 -0000 1.12
@@ -24,7 +24,7 @@
# prefix is needed, because it's not correct update in the Makefile
make $PMAKE prefix=/usr all || exit 1
- strip_debug
+
# we have to install this immediately, because this is a library and could be needed by other sources
# create user bin
Index: libdvdcss
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/libdvdcss,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- libdvdcss 6 Jan 2010 15:20:24 -0000 1.2
+++ libdvdcss 5 Dec 2011 09:11:38 -0000 1.3
@@ -18,7 +18,7 @@
build )
./configure --prefix=/usr --localstatedir=/var || exit 1
make $PMAKE all || exit 1
- strip_debug
+
# install it in local system, because other programs could need it
make install
;;
Index: libnfsidmap
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/libnfsidmap,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- libnfsidmap 6 Jan 2010 15:20:24 -0000 1.2
+++ libnfsidmap 5 Dec 2011 09:11:38 -0000 1.3
@@ -18,7 +18,7 @@
build )
./configure --prefix=/usr || exit 1
make $PMAKE all || exit 1
- strip_debug
+
# install it in local system, because other programs could need it
make install
;;
Index: h323plus
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/h323plus,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- h323plus 23 Oct 2011 17:27:43 -0000 1.1
+++ h323plus 5 Dec 2011 09:11:38 -0000 1.2
@@ -27,7 +27,7 @@
./configure --prefix=/usr || exit 1
make $PMAKE || exit 1
CFLAGS="$CFLAGS -I/usr/src/linux/include" make || exit 1
- strip_debug
+
make install || exit 1
fi
;;
Index: pam_mount
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/pam_mount,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- pam_mount 6 Jan 2010 15:20:24 -0000 1.2
+++ pam_mount 5 Dec 2011 09:11:38 -0000 1.3
@@ -18,7 +18,7 @@
build )
./configure --prefix=/usr --sysconfdir=/etc || exit 1
make $PMAKE || exit 1
- strip_debug
+
;;
install )
Index: inetutils
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/inetutils,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- inetutils 6 Jan 2010 15:20:24 -0000 1.9
+++ inetutils 5 Dec 2011 09:11:38 -0000 1.10
@@ -28,7 +28,7 @@
--disable-ifconfig --disable-ping || exit 1
make $PMAKE all || exit 1
- strip_debug
+
;;
install )
Index: lftp
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/lftp,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- lftp 6 Jan 2010 15:20:24 -0000 1.10
+++ lftp 5 Dec 2011 09:11:38 -0000 1.11
@@ -20,7 +20,7 @@
if [ "$CONFIG_LFTP" = "y" ]; then
./configure --prefix=/usr --localstatedir=/var --disable-nls || exit 1
make $PMAKE all || exit 1
- strip_debug
+
fi
;;
Index: unzip
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/unzip,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- unzip 2 Nov 2011 14:03:41 -0000 1.12
+++ unzip 5 Dec 2011 09:11:38 -0000 1.13
@@ -17,7 +17,7 @@
build )
if [ "$CONFIG_UNZIP" = "y" ]; then
make -f unix/Makefile generic1 || exit 1
- strip_debug
+
fi
;;
Index: mpc
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/mpc,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- mpc 22 Oct 2011 21:38:05 -0000 1.1
+++ mpc 5 Dec 2011 09:11:38 -0000 1.2
@@ -18,7 +18,7 @@
prepare )
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var || exit 1
make $PMAKE all || exit 1
- strip_debug
+
# we have to install this immediately, because this is a library and could be needed by other sources
make install || exit 1
Index: gnutls
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/gnutls,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- gnutls 6 Jan 2010 15:20:24 -0000 1.3
+++ gnutls 5 Dec 2011 09:11:38 -0000 1.4
@@ -18,7 +18,7 @@
build )
./configure --prefix=/usr || exit 1
make $PMAKE all || exit 1
- strip_debug
+
# install it in local system, because other programs could need it
make install
;;
Index: ncftp
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/ncftp,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- ncftp 6 Jan 2010 15:20:24 -0000 1.11
+++ ncftp 5 Dec 2011 09:11:38 -0000 1.12
@@ -25,7 +25,7 @@
./configure --prefix=/usr || exit 1
#make CC="gcc -D_FORTIFY_SOURCE=0" $PMAKE || exit 1
make $PMAKE || exit 1
- strip_debug
+
fi
;;
Index: dhcpcd
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/dhcpcd,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- dhcpcd 16 Apr 2010 13:15:28 -0000 1.19
+++ dhcpcd 5 Dec 2011 09:11:37 -0000 1.20
@@ -22,7 +22,7 @@
make -j1 all || exit 1
make -j1 install || exit 1
- strip_debug
+
;;
install )
Index: p11-kit
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/p11-kit,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- p11-kit 21 Nov 2011 21:17:22 -0000 1.1
+++ p11-kit 5 Dec 2011 09:11:38 -0000 1.2
@@ -18,7 +18,7 @@
build )
./configure --prefix=/usr --sysconfdir=/etc || exit 1
make $PMAKE all || exit 1
- strip_debug
+
# install it in local system, because other programs could need it
make install
;;
Index: sysvinit
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/sysvinit,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- sysvinit 6 Jan 2010 15:27:21 -0000 1.15
+++ sysvinit 5 Dec 2011 09:11:38 -0000 1.16
@@ -20,7 +20,7 @@
build )
cd src
make $PMAKE all || exit 1
- strip_debug
+
;;
install )
Index: freeramdisk
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/freeramdisk,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- freeramdisk 6 Jan 2010 14:53:27 -0000 1.11
+++ freeramdisk 5 Dec 2011 09:11:37 -0000 1.12
@@ -17,7 +17,7 @@
case $1 in
build )
make $PMAKE freeramdisk || exit 1
- strip_debug
+
;;
install )
Index: parted
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/parted,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- parted 28 Feb 2010 21:32:07 -0000 1.4
+++ parted 5 Dec 2011 09:11:38 -0000 1.5
@@ -24,7 +24,7 @@
./configure --prefix=/usr --disable-nls --without-readline --enable-device-mapper || exit 1
make CC="gcc -fno-stack-protector" $PMAKE || exit 1
- strip_debug
+
;;
install )
Index: qadsl
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/qadsl,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- qadsl 6 Jan 2010 15:20:24 -0000 1.13
+++ qadsl 5 Dec 2011 09:11:38 -0000 1.14
@@ -20,7 +20,7 @@
build )
if [ "$CONFIG_QADSL" = y ]; then
make $PMAKE || exit 1
- strip_debug
+
fi
;;
Index: libdvdread
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/libdvdread,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- libdvdread 6 Jan 2010 15:20:24 -0000 1.2
+++ libdvdread 5 Dec 2011 09:11:38 -0000 1.3
@@ -18,7 +18,7 @@
build )
./configure --prefix=/usr --localstatedir=/var || exit 1
make $PMAKE all || exit 1
- strip_debug
+
# install it in local system, because other programs could need it
make install
;;
Index: dosfstools
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/dosfstools,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- dosfstools 6 Jan 2010 14:53:27 -0000 1.14
+++ dosfstools 5 Dec 2011 09:11:37 -0000 1.15
@@ -22,7 +22,7 @@
build )
if [ "$CONFIG_DOSFSTOOLS" = "y" ]; then
make $PMAKE || exit 1
- strip_debug
+
fi
;;
Index: fetchmail
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/fetchmail,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- fetchmail 6 Jan 2010 15:20:24 -0000 1.12
+++ fetchmail 5 Dec 2011 09:11:37 -0000 1.13
@@ -21,7 +21,7 @@
if [ "$CONFIG_FETCHMAIL" = "y" ]; then
./configure --prefix=/usr --sysconfdir=/etc --with-ssl --enable-inet6 --disable-nls || exit 1
make $PMAKE all || exit 1
- strip_debug
+
fi
;;
Index: bluez-libs
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/bluez-libs,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- bluez-libs 21 Nov 2011 21:17:22 -0000 1.5
+++ bluez-libs 5 Dec 2011 09:11:37 -0000 1.6
@@ -27,7 +27,7 @@
cp include/*.h /usr/include/bluetooth || exit 1
make install || exit 1
- strip_debug
+
fi
;;
Index: rng-tools
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/rng-tools,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- rng-tools 6 Jan 2010 15:20:24 -0000 1.4
+++ rng-tools 5 Dec 2011 09:11:38 -0000 1.5
@@ -19,7 +19,7 @@
if [ "$CONFIG_RNGTOOLS" = "y" ]; then
./configure CFLAGS="$CFLAGS -Wall -pipe -02" --prefix=/usr --sysconfdir=/etc --localstatedir=/var || exit 1
make $PMAKE all || exit 1
- strip_debug
+
fi
;;
Index: libxslt
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/libxslt,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- libxslt 21 Nov 2011 21:17:22 -0000 1.5
+++ libxslt 5 Dec 2011 09:11:38 -0000 1.6
@@ -18,7 +18,7 @@
build )
CC="gcc -nopie" ./configure --prefix=/usr --localstatedir=/var || exit 1
make $PMAKE all || exit 1
- strip_debug
+
# install it in local system, because other programs could need it
make install
;;
Index: alsaplayer
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/alsaplayer,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- alsaplayer 6 Jan 2010 14:53:27 -0000 1.7
+++ alsaplayer 5 Dec 2011 09:11:37 -0000 1.8
@@ -23,7 +23,7 @@
if [ "$CONFIG_ALSA_PLAYER" = "y" ]; then
./configure --prefix=/usr --disable-gtktest || exit 1
make $PMAKE || exit 1
- strip_debug
+
fi
;;
Index: nbd
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/nbd,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- nbd 6 Jan 2010 15:20:24 -0000 1.7
+++ nbd 5 Dec 2011 09:11:38 -0000 1.8
@@ -22,7 +22,7 @@
# doesn't like parallel builds
make config all PREFIX=/usr prefix=/usr SMP=1 BUILD=$(pwd)/build || exit 1
- strip_debug
+
fi
;;
Index: nano
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/nano,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -d -r1.21 -r1.22
--- nano 29 May 2011 17:47:04 -0000 1.21
+++ nano 5 Dec 2011 09:11:38 -0000 1.22
@@ -18,7 +18,7 @@
build )
./configure --prefix=/usr --sysconfdir=/etc --disable-nls --enable-all --disable-wrapping-as-root --enable-utf8 || exit 1
make $PMAKE all || exit 1
- strip_debug
+
;;
install )
Index: inotify-tools
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/inotify-tools,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- inotify-tools 6 Jan 2010 15:20:24 -0000 1.3
+++ inotify-tools 5 Dec 2011 09:11:38 -0000 1.4
@@ -19,7 +19,7 @@
if [ "$CONFIG_INOTIFYTOOLS" = "y" ]; then
./configure --prefix=/usr || exit 1
make $PMAKE || exit 1
- strip_debug
+
fi
;;
Index: libgpg-error
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/libgpg-error,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- libgpg-error 6 Jan 2010 15:20:24 -0000 1.2
+++ libgpg-error 5 Dec 2011 09:11:38 -0000 1.3
@@ -18,7 +18,7 @@
build )
./configure --prefix=/usr --disable-nls || exit 1
make $PMAKE all || exit 1
- strip_debug
+
# we have to install this immediately, because this is a library and could be needed by other sources
make install || exit 1
Index: id3lib
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/id3lib,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- id3lib 22 Oct 2011 21:36:53 -0000 1.5
+++ id3lib 5 Dec 2011 09:11:38 -0000 1.6
@@ -21,7 +21,7 @@
./configure --prefix=/usr || exit 1
# don't use parallel builds
make all || exit 1
- strip_debug
+
# we have to install this immediately, because this is a library and could be needed by other sources
make install || exit 1
Index: memcached
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/memcached,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- memcached 26 Aug 2011 13:11:24 -0000 1.4
+++ memcached 5 Dec 2011 09:11:38 -0000 1.5
@@ -21,7 +21,7 @@
if [ "$CONFIG_MEMCACHED" = "y" ]; then
./configure --prefix=/usr --bindir=/usr/sbin --sysconfdir=/etc --enable-threads || exit 1
make CC="gcc -std=gnu99 -Wno-stack-protector" $PMAKE all || exit 1
- strip_debug
+
fi
;;
Index: gawk
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/gawk,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- gawk 6 Jan 2010 15:20:24 -0000 1.13
+++ gawk 5 Dec 2011 09:11:38 -0000 1.14
@@ -22,7 +22,7 @@
fi
./configure --prefix=/usr --libexecdir=/usr/bin --disable-nls || exit 1
make $PMAKE all || exit 1
- strip_debug
+
# install the updated version
rm -rf /usr/bin/awk
Index: fprobe-ulog
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/fprobe-ulog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- fprobe-ulog 6 Jan 2010 14:53:27 -0000 1.4
+++ fprobe-ulog 5 Dec 2011 09:11:37 -0000 1.5
@@ -21,7 +21,7 @@
if [ "$CONFIG_FPROBE_ULOG" = "y" ]; then
./configure --prefix=/usr --localstatedir=/var || exit 1
make $PMAKE all || exit 1
- strip_debug
+
fi
;;
Index: xinetd
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/xinetd,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- xinetd 6 Jan 2010 15:27:21 -0000 1.12
+++ xinetd 5 Dec 2011 09:11:38 -0000 1.13
@@ -21,7 +21,7 @@
if [ "$CONFIG_XINETD" = "y" ]; then
./configure --prefix=/usr --with-inet6 || exit 1
make $PMAKE || exit 1
- strip_debug
+
fi
;;
Index: nagios-plugins
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/nagios-plugins,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- nagios-plugins 6 Jan 2010 15:20:24 -0000 1.6
+++ nagios-plugins 5 Dec 2011 09:11:38 -0000 1.7
@@ -24,7 +24,7 @@
fi
./configure --prefix=/usr --libexecdir=/usr/libexec/nagios --disable-rpath || exit 1
make $PMAKE all || exit 1
- strip_debug
+
fi
;;
Index: vncrepeater
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/vncrepeater,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- vncrepeater 6 Jan 2010 15:27:21 -0000 1.3
+++ vncrepeater 5 Dec 2011 09:11:38 -0000 1.4
@@ -20,7 +20,7 @@
build )
if [ "$CONFIG_VNCREPEATER" = "y" ]; then
make || exit 1
- strip_debug
+
fi
;;
Index: alsa-utils
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/alsa-utils,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- alsa-utils 23 Oct 2011 17:27:01 -0000 1.12
+++ alsa-utils 5 Dec 2011 09:11:37 -0000 1.13
@@ -24,7 +24,7 @@
if [ "$CONFIG_ALSA" = "y" ]; then
./configure --prefix=/usr --with-alsa-prefix=/usr/lib/ --with-alsa-inc-prefix=/usr/include --disable-xmlto || exit 1
make $PMAKE all || exit 1
- strip_debug
+
fi
;;
Index: nmap
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/nmap,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- nmap 28 Feb 2010 10:06:41 -0000 1.5
+++ nmap 5 Dec 2011 09:11:38 -0000 1.6
@@ -21,7 +21,7 @@
if [ "$CONFIG_NMAP" = "y" ]; then
./configure --prefix=/usr --without-zenmap --disable-nls || exit 1
make $PMAKE all || exit 1
- strip_debug
+
fi
;;
Index: pam_ldap
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/pam_ldap,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- pam_ldap 6 Jan 2010 15:20:24 -0000 1.4
+++ pam_ldap 5 Dec 2011 09:11:38 -0000 1.5
@@ -21,7 +21,7 @@
make $PMAKE || exit 1
- strip_debug
+
# install it in local system, because other programs could need it
make install || exit 1
Index: vim
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/vim,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- vim 6 Jan 2010 15:27:21 -0000 1.11
+++ vim 5 Dec 2011 09:11:38 -0000 1.12
@@ -21,7 +21,7 @@
echo '#define SYS_GVIMRC_FILE "/etc/gvimrc"' >> src/feature.h
./configure --prefix=/usr --disable-nls || exit 1
make $PMAKE || exit 1
- strip_debug
+
fi
;;
Index: ether-wake
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/ether-wake,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- ether-wake 6 Jan 2010 14:53:27 -0000 1.4
+++ ether-wake 5 Dec 2011 09:11:37 -0000 1.5
@@ -17,7 +17,7 @@
case $1 in
build )
gcc -O -Wall -o ether-wake ether-wake.c || exit 1
- strip_debug
+
;;
install )
Index: Libnet
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/Libnet,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- Libnet 21 Nov 2011 21:17:22 -0000 1.14
+++ Libnet 5 Dec 2011 09:11:37 -0000 1.15
@@ -19,7 +19,7 @@
cd $(find_src_dir libnet) || exit 1
CC="gcc -fPIC" ./configure --prefix=/usr --localstatedir=/var --with-pf_packet=yes || exit 1
make $PMAKE all || exit 1
- strip_debug
+
# install it in local system, because other programs could need it
make install || exit 1
cp -dpf libnet-config /usr/bin || exit 1
Index: httpd
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/httpd,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- httpd 21 Nov 2011 21:17:22 -0000 1.17
+++ httpd 5 Dec 2011 09:11:38 -0000 1.18
@@ -73,7 +73,7 @@
fi
./configure $PARAMS || exit 1
make $PMAKE all || exit 1
- strip_debug
+
# install it, we need the libraries later
make install || exit 1
fi
Index: zip
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/zip,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- zip 6 Jan 2010 15:27:21 -0000 1.9
+++ zip 5 Dec 2011 09:11:38 -0000 1.10
@@ -17,7 +17,7 @@
build )
if [ "$CONFIG_ZIP" = "y" ]; then
make $PMAKE -f unix/Makefile generic prefix=/usr CC="gcc -Wa,--noexecstack" || exit 1
- strip_debug
+
fi
;;
Index: giflib
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/giflib,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- giflib 12 Nov 2011 21:21:02 -0000 1.4
+++ giflib 5 Dec 2011 09:11:38 -0000 1.5
@@ -18,7 +18,7 @@
build )
./configure --prefix=/usr || exit 1
make || exit 1
- strip_debug
+
# we have to install this immediately, because this is a library and could be needed by other sources
make install || exit 1
Index: libnetfilter_conntrack
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/libnetfilter_conntrack,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- libnetfilter_conntrack 6 Jan 2010 15:20:24 -0000 1.7
+++ libnetfilter_conntrack 5 Dec 2011 09:11:38 -0000 1.8
@@ -20,7 +20,7 @@
delete_str ./libnetfilter_conntrack.pc.in "^URL: " || exit 1
./configure --prefix=/usr || exit 1
make $PMAKE all || exit 1
- strip_debug
+
# install it in local system, because other programs could need it
make install
;;
Index: syslog-ng
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/syslog-ng,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -d -r1.22 -r1.23
--- syslog-ng 21 Nov 2011 21:17:22 -0000 1.22
+++ syslog-ng 5 Dec 2011 09:11:38 -0000 1.23
@@ -21,7 +21,7 @@
--enable-ssl --enable-ipv6 --enable-spoof-source --enable-dynamic-linking \
--enable-linux-caps --enable-pcre || exit 1
make $PMAKE all || exit 1
- strip_debug
+
;;
install )
Index: perl
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/perl,v
retrieving revision 1.61
retrieving revision 1.62
diff -u -d -r1.61 -r1.62
--- perl 2 Nov 2011 14:03:41 -0000 1.61
+++ perl 5 Dec 2011 09:11:38 -0000 1.62
@@ -35,7 +35,7 @@
make $PMAKE || exit 1
- strip_debug
+
# delete the old perl version
rm -rf /usr/lib/perl*
@@ -112,13 +112,13 @@
echo "******** compiling perl extension $EXT ********"
if [ -f Makefile.PL ]; then
yes "" | perl Makefile.PL PREFIX=/usr || exit 1
- strip_debug
+
make install || exit 1
else
if [ -f Build.PL ]; then
yes "" | perl Build.PL --prefix /usr || exit 1
./Build || exit 1
- strip_debug
+
./Build install || exit 1
else
echo "ERROR! Neither Build.PL nor Makefile.PL can be found"
@@ -163,7 +163,7 @@
make install DESTDIR=$CDDIR || exit 1
else
if [ -f Build.PL ]; then
- strip_debug
+
./Build install --destdir $CDDIR|| exit 1
else
echo "ERROR! Neither Build.PL nor Makefile.PL can be found"
Index: frox
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/frox,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- frox 6 Jan 2010 14:53:27 -0000 1.8
+++ frox 5 Dec 2011 09:11:37 -0000 1.9
@@ -25,7 +25,7 @@
--enable-libiptc --enable-ccp --disable-run-as-root \
--enable-configfile=/etc/frox || exit 1
make all || exit 1
- strip_debug
+
fi
;;
Index: ddup
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/ddup,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- ddup 6 Jan 2010 14:53:27 -0000 1.12
+++ ddup 5 Dec 2011 09:11:37 -0000 1.13
@@ -20,7 +20,7 @@
build )
if [ "$CONFIG_DDUP" = "y" ]; then
yes "" | ./install || exit 1
- strip_debug
+
fi
;;
Index: squid
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/squid,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -d -r1.34 -r1.35
--- squid 2 Nov 2011 14:03:41 -0000 1.34
+++ squid 5 Dec 2011 09:11:38 -0000 1.35
@@ -48,7 +48,7 @@
--enable-auth="basic ntlm" --enable-ntlm-auth-helpers="$AUTH_HELPERS_NTLM" \
--enable-default-err-language=English --enable-err-languages="English" || exit 1
make $PMAKE all || exit 1
- strip_debug
+
fi
;;
Index: portmap
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/portmap,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- portmap 6 Jan 2010 15:20:24 -0000 1.6
+++ portmap 5 Dec 2011 09:11:38 -0000 1.7
@@ -25,7 +25,7 @@
touch .patch.done
fi
make $PMAKE all || exit 1
- strip_debug
+
fi
;;
Index: gifsicle
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/gifsicle,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- gifsicle 6 Jan 2010 15:20:24 -0000 1.3
+++ gifsicle 5 Dec 2011 09:11:38 -0000 1.4
@@ -18,7 +18,7 @@
build )
./configure --prefix=/usr --disable-gifview || exit 1
make $PMAKE || exit 1
- strip_debug
+
# we have to install this immediately, because this is a library and could be needed by other sources
make install || exit 1
Index: camsource
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/camsource,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- camsource 6 Jan 2010 14:53:27 -0000 1.8
+++ camsource 5 Dec 2011 09:11:37 -0000 1.9
@@ -20,7 +20,7 @@
if [ "$CONFIG_CAMSOURCE" = "y" ]; then
./configure --prefix=/usr --localstatedir=/var --sysconfdir=/etc || exit 1
make $PMAKE all || exit 1
- strip_debug
+
fi
;;
Index: libart
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/libart,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- libart 21 Nov 2011 21:17:22 -0000 1.5
+++ libart 5 Dec 2011 09:11:38 -0000 1.6
@@ -18,7 +18,7 @@
build )
./configure --enable-shared --prefix=/usr || exit 1
make $PMAKE || exit 1
- strip_debug
+
# we have to install this immediately, because this is a library and could be needed by other sources
make install || exit 1
Index: mc
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/mc,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -d -r1.16 -r1.17
--- mc 24 Nov 2011 15:00:35 -0000 1.16
+++ mc 5 Dec 2011 09:11:38 -0000 1.17
@@ -21,7 +21,7 @@
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-nls --with-screen=ncurses || exit 1
# --with-vfs --with-samba --with-slang --with-edit --with-netrc --disable-glibtest
make $PMAKE all || exit 1
- strip_debug
+
fi
;;
Index: ifenslave
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/ifenslave,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- ifenslave 6 Jan 2010 15:20:24 -0000 1.4
+++ ifenslave 5 Dec 2011 09:11:38 -0000 1.5
@@ -17,7 +17,7 @@
case $1 in
build )
gcc ifenslave.c -o ifenslave || exit 1
- strip_debug
+
;;
install )
Index: krb5
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/krb5,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- krb5 6 Jan 2010 15:20:24 -0000 1.12
+++ krb5 5 Dec 2011 09:11:38 -0000 1.13
@@ -20,7 +20,7 @@
./configure --prefix=/usr --localstatedir=/var --enable-dns --enable-dns-for-kdc --enable-dns-for-realm --enable-kdc-replay-cache \
--enable-shared --bindir=/usr/bin/krb5 --sbindir=/usr/sbin/krb5 --libexecdir=/usr/libexec/krb5 || exit 1
make all || exit 1
- strip_debug
+
make install || exit 1
fi
;;
Index: iptables
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/iptables,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -d -r1.38 -r1.39
--- iptables 26 Sep 2011 18:06:37 -0000 1.38
+++ iptables 5 Dec 2011 09:11:38 -0000 1.39
@@ -30,7 +30,7 @@
make clean
# parallel build failes, do not use $PMAKE
make all COPT_FLAGS="$FLAGS" || exit 1
- strip_debug
+
# install it, so other programs can use it
make install || exit 1
;;
Index: sqlite
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/sqlite,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- sqlite 6 Jan 2010 15:27:21 -0000 1.4
+++ sqlite 5 Dec 2011 09:11:38 -0000 1.5
@@ -19,7 +19,7 @@
if [ "$CONFIG_SQLITE" = "y" ]; then
./configure --prefix=/usr || exit 1
make || exit 1
- strip_debug
+
# we have to install this immediately, because this is a library and could be needed by other sources
make install || exit 1
fi
Index: tar
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/tar,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- tar 19 Nov 2010 00:42:47 -0000 1.13
+++ tar 5 Dec 2011 09:11:38 -0000 1.14
@@ -18,7 +18,7 @@
build )
FORCE_UNSAFE_CONFIGURE=1 ./configure --prefix= --disable-nls || exit 1
make $PMAKE all || exit 1
- strip_debug
+
make install || exit 1
;;
Index: sudo
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/sudo,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- sudo 6 Jan 2010 15:27:21 -0000 1.5
+++ sudo 5 Dec 2011 09:11:38 -0000 1.6
@@ -23,7 +23,7 @@
--with-insults --with-classic-insults --with-pam \
--with-csops-insults --with-hal-insults || exit 1
make $PMAKE all || exit 1
- strip_debug
+
fi
;;
Index: pymilter
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/pymilter,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- pymilter 2 Nov 2011 14:03:41 -0000 1.2
+++ pymilter 5 Dec 2011 09:11:38 -0000 1.3
@@ -20,7 +20,7 @@
build )
if [ "$CONFIG_PYTHON" = "y" ] && [ "$CONFIG_POSTFIX" = "y" ] && [ "$CONFIG_SENDMAIL_LIBMILTER" = "y" ]; then
CFLAGS="-fPIC" python setup.py build || exit 1
- strip_debug
+
fi
;;
Index: logrotate
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/logrotate,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -d -r1.20 -r1.21
--- logrotate 6 Jan 2010 15:20:24 -0000 1.20
+++ logrotate 5 Dec 2011 09:11:38 -0000 1.21
@@ -27,7 +27,7 @@
touch logrotate_patch_done
fi
make $PMAKE all || exit 1
- strip_debug
+
fi
;;
Index: cd_cleanup
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/cd_cleanup,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -d -r1.16 -r1.17
--- cd_cleanup 6 Jan 2010 14:53:27 -0000 1.16
+++ cd_cleanup 5 Dec 2011 09:11:37 -0000 1.17
@@ -21,6 +21,7 @@
find $CDDIR -type f -name '*.a' | xargs -n 1 rm -f
find $CDDIR -type f -exec strip --strip-debug '{}' ';'
find $INITRDDIR -type f -exec strip --strip-debug '{}' ';'
+ find $CDDIR/{lib,usr/lib,usr/libexec} | xargs -n 1 strip --strip-debug
find $CDDIR/{bin,sbin,usr/bin,usr/sbin,usr/libexec} -type f ! -name '*.so' | xargs -n 1 strip --strip-all
if [ "$CONFIG_DEVIL_DOC_ISO" != "y" ]; then
Index: daemontools
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/daemontools,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- daemontools 6 Jan 2010 14:53:27 -0000 1.11
+++ daemontools 5 Dec 2011 09:11:37 -0000 1.12
@@ -21,7 +21,7 @@
if [ "$CONFIG_DAEMONTOOLS" = "y" ]; then
bzcat $DL_DIR/src/daemontools-*errno.patch.bz2 | patch -p1 || exit 1
./package/compile || exit 1
- strip_debug
+
fi
;;
Index: jftpgw
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/jftpgw,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- jftpgw 6 Jan 2010 15:20:24 -0000 1.19
+++ jftpgw 5 Dec 2011 09:11:38 -0000 1.20
@@ -21,7 +21,7 @@
if [ "$CONFIG_JFTPGW" = "y" ]; then
./configure --prefix=/usr --bindir=/usr/sbin --enable-sftp --enable-crypt --with-confpath=/etc || exit 1
make $PMAKE all || exit 1
- strip_debug
+
fi
;;
Index: alsa-lib
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/alsa-lib,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- alsa-lib 2 Nov 2011 14:03:41 -0000 1.12
+++ alsa-lib 5 Dec 2011 09:11:37 -0000 1.13
@@ -24,7 +24,7 @@
if [ "$CONFIG_ALSA" = "y" ]; then
./configure --prefix=/usr || exit 1
make $PMAKE $FLAGS || exit 1
- strip_debug
+
rm -rf $TMPDIR || exit 1
make install DESTDIR=$TMPDIR || exit 1
copy_files $TMPDIR/usr/ / || exit 1
Index: libdnet
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/libdnet,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- libdnet 21 Nov 2011 21:17:22 -0000 1.4
+++ libdnet 5 Dec 2011 09:11:38 -0000 1.5
@@ -18,7 +18,7 @@
build )
./configure --prefix=/usr || exit 1
make $PMAKE all || exit 1
- strip_debug
+
# install it in local system, because other programs could need it
make install
;;
Index: mod_authn_otp
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/mod_authn_otp,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- mod_authn_otp 29 Dec 2010 15:17:47 -0000 1.1
+++ mod_authn_otp 5 Dec 2011 09:11:38 -0000 1.2
@@ -17,7 +17,7 @@
if [ "$CONFIG_MOD_AUTHN_OTP" = "y" ]; then
./configure
make || exit 1
- strip_debug
+
fi
fi
;;
Index: fwlogwatch
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/fwlogwatch,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- fwlogwatch 2 Nov 2010 17:13:15 -0000 1.12
+++ fwlogwatch 5 Dec 2011 09:11:38 -0000 1.13
@@ -20,7 +20,7 @@
build )
if [ "$CONFIG_FWLOGWATCH" = "y" ]; then
make $PMAKE all || exit 1
- strip_debug
+
fi
;;
Index: ebtables
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/ebtables,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -d -r1.16 -r1.17
--- ebtables 6 Jan 2010 14:53:27 -0000 1.16
+++ ebtables 5 Dec 2011 09:11:37 -0000 1.17
@@ -43,7 +43,7 @@
else
make MANDIR=/usr/share/man $PMAKE all || exit 1
fi
- strip_debug
+
fi
;;
Index: vlan
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/vlan,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- vlan 6 Jan 2010 15:27:21 -0000 1.12
+++ vlan 5 Dec 2011 09:11:38 -0000 1.13
@@ -19,7 +19,7 @@
build )
if [ "$CONFIG_VLAN" = "y" ]; then
make $PMAKE all || exit 1
- strip_debug
+
fi
;;
Index: Linux-PAM
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/Linux-PAM,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- Linux-PAM 21 Nov 2011 21:17:22 -0000 1.10
+++ Linux-PAM 5 Dec 2011 09:11:37 -0000 1.11
@@ -33,7 +33,7 @@
# doesn't like parallel builds on rare occasions
make || exit 1
- strip_debug
+
# install it in local system, because other programs could need it
make install || exit 1
Index: cpio
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/cpio,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- cpio 6 Jan 2010 14:53:27 -0000 1.9
+++ cpio 5 Dec 2011 09:11:37 -0000 1.10
@@ -20,7 +20,7 @@
#ln -sf /usr/include/getopt.h getopt.h
./configure --prefix=/usr || exit 1
make $PMAKE all || exit 1
- strip_debug
+
# install it, because it may be needed by other programs too
make install || exit 1
Index: noip_updater
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/noip_updater,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -d -r1.16 -r1.17
--- noip_updater 6 Jan 2010 15:20:24 -0000 1.16
+++ noip_updater 5 Dec 2011 09:11:38 -0000 1.17
@@ -20,7 +20,7 @@
build )
if [ "$CONFIG_NO_IP_UPDATER" = y ]; then
make $PMAKE || exit 1
- strip_debug
+
fi
;;
Index: man
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/man,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- man 6 Nov 2011 14:32:07 -0000 1.17
+++ man 5 Dec 2011 09:11:38 -0000 1.18
@@ -18,7 +18,7 @@
build )
./configure -default -confdir=/etc
make &&
- strip_debug
+
;;
install )
Index: djbdns
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/djbdns,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- djbdns 6 Jan 2010 14:53:27 -0000 1.15
+++ djbdns 5 Dec 2011 09:11:37 -0000 1.16
@@ -23,7 +23,7 @@
bzcat $DL_DIR/src/djbdns-*ignoreip.patch.bz2 | patch -p1 || exit 1
replace_str conf-home /usr/local /usr
make $PMAKE || exit 1
- strip_debug
+
fi
;;
Index: isapnptools
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/isapnptools,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- isapnptools 6 Jan 2010 15:20:24 -0000 1.5
+++ isapnptools 5 Dec 2011 09:11:38 -0000 1.6
@@ -21,7 +21,7 @@
if [ "$CONFIG_ISAPNPTOOLS" = "y" ]; then
./configure --prefix=/usr --localstatedir=/var --sysconfdir=/etc || exit 1
make $PMAKE all || exit 1
- strip_debug
+
fi
;;
Index: lha
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/lha,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- lha 6 Jan 2010 15:20:24 -0000 1.7
+++ lha 5 Dec 2011 09:11:38 -0000 1.8
@@ -21,7 +21,7 @@
touch lha_patches_done
fi
make $PMAKE || exit 1
- strip_debug
+
fi
;;
Index: postfix
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/postfix,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -d -r1.44 -r1.45
--- postfix 29 May 2011 14:11:49 -0000 1.44
+++ postfix 5 Dec 2011 09:11:38 -0000 1.45
@@ -49,7 +49,7 @@
fi
make makefiles CCARGS="$CCARGS" AUXLIBS="$AUXLIBS" || exit 1
make $PMAKE || exit 1
- strip_debug
+
# Install in LFS for PHP:
groupadd -g 101 postfix || exit 1
Index: bind
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/bind,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -d -r1.38 -r1.39
--- bind 21 Nov 2011 21:17:22 -0000 1.38
+++ bind 5 Dec 2011 09:11:37 -0000 1.39
@@ -27,7 +27,7 @@
make depend || exit 1
#make $PMAKE all || exit 1
make all || exit 1
- strip_debug
+
# install to base system... because of library install of libdns
make install || exit 1
fi
Index: docbook2X
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/docbook2X,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- docbook2X 2 Nov 2011 14:03:41 -0000 1.6
+++ docbook2X 5 Dec 2011 09:11:37 -0000 1.7
@@ -22,7 +22,7 @@
./configure --prefix=/usr --with-html-xsl || exit 1
make $PMAKE || exit 1
# install it, because it's needed by some programs
- strip_debug
+
make install || exit 1
;;
Index: pciutils
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/pciutils,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- pciutils 6 Jan 2010 15:20:24 -0000 1.15
+++ pciutils 5 Dec 2011 09:11:38 -0000 1.16
@@ -19,7 +19,7 @@
build )
# parallel build fails, do not use $PMAKE
make PREFIX=/usr all || exit 1
- strip_debug
+
make install
bzcat $DL_DIR/src/pci.ids.bz2 > /usr/share/pci.ids || exit 1
Index: aiccu
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/aiccu,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- aiccu 6 Jan 2010 14:53:27 -0000 1.4
+++ aiccu 5 Dec 2011 09:11:37 -0000 1.5
@@ -25,7 +25,7 @@
if [ "$CONFIG_AICCU" = "y" ]; then
cd unix-console
make $PMAKE all || exit 1
- strip_debug
+
fi
;;
Index: kbd
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/kbd,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- kbd 6 Jan 2010 15:20:24 -0000 1.10
+++ kbd 5 Dec 2011 09:11:38 -0000 1.11
@@ -18,7 +18,7 @@
build )
./configure --prefix=/usr --mandir=/usr/share/man || exit 1
make $PMAKE all || exit 1
- strip_debug
+
;;
install )
Index: vtun
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/vtun,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- vtun 6 Jan 2010 15:27:21 -0000 1.14
+++ vtun 5 Dec 2011 09:11:38 -0000 1.15
@@ -24,7 +24,7 @@
#lzo-1.08.tar.gz is needed
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var || exit 1
make $PMAKE || exit 1
- strip_debug
+
fi
;;
Index: cpqarrayd
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/cpqarrayd,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- cpqarrayd 6 Jan 2010 14:53:27 -0000 1.15
+++ cpqarrayd 5 Dec 2011 09:11:37 -0000 1.16
@@ -23,7 +23,7 @@
fi
./configure --prefix=/usr ${SNMP} || exit 1
make $PMAKE all || exit 1
- strip_debug
+
fi
;;
Index: cipe
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/cipe,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -d -r1.21 -r1.22
--- cipe 6 Jan 2010 14:53:27 -0000 1.21
+++ cipe 5 Dec 2011 09:11:37 -0000 1.22
@@ -30,7 +30,7 @@
#
make $PMAKE || exit 1
- strip_debug
+
fi
;;
Index: dovecot_deleted_to_trash
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/dovecot_deleted_to_trash,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- dovecot_deleted_to_trash 19 Nov 2010 00:42:47 -0000 1.7
+++ dovecot_deleted_to_trash 5 Dec 2011 09:11:37 -0000 1.8
@@ -21,7 +21,7 @@
build )
if [ "$CONFIG_DOVECOT" = "y" ]; then
make $PMAKE all || exit 1
- strip_debug
+
fi
;;
Index: openvpn
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/openvpn,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- openvpn 8 Sep 2010 05:10:31 -0000 1.18
+++ openvpn 5 Dec 2011 09:11:38 -0000 1.19
@@ -25,7 +25,7 @@
##--disable-lzo
make $PMAKE || exit 1
make -C plugin/auth-pam $PMAKE || exit 1
- strip_debug
+
fi
;;
Index: flex
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/flex,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- flex 2 Nov 2011 14:03:41 -0000 1.1
+++ flex 5 Dec 2011 09:11:37 -0000 1.2
@@ -19,7 +19,7 @@
./configure --prefix=/usr --disable-nls || exit 1
make all $PMAKE || exit 1
make install || exit 1
- strip_debug
+
;;
* )
Index: tftp-hpa
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/tftp-hpa,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- tftp-hpa 6 Jan 2010 15:27:21 -0000 1.5
+++ tftp-hpa 5 Dec 2011 09:11:38 -0000 1.6
@@ -20,7 +20,7 @@
if [ "$CONFIG_TFTP_HPA" = "y" ]; then
./configure --prefix=/usr --localstatedir=/var --sysconfdir=/etc --without-tcpwrappers || exit 1
make $PMAKE all || exit 1
- strip_debug
+
fi
;;
Index: daq
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/daq,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- daq 13 Nov 2011 14:50:05 -0000 1.2
+++ daq 5 Dec 2011 09:11:37 -0000 1.3
@@ -19,7 +19,7 @@
if [ "$CONFIG_SNORT" = "y" ]; then
./configure --prefix=/usr --localstatedir=/var || exit 1
make all || exit 1
- strip_debug
+
# install it in local system, because other programs could need it
make install
fi
Index: lzo
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/lzo,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- lzo 21 Nov 2011 21:17:22 -0000 1.11
+++ lzo 5 Dec 2011 09:11:38 -0000 1.12
@@ -20,7 +20,7 @@
build )
./configure --prefix=/usr --bindir=/bin --enable-shared || exit 1
make $PMAKE all || exit 1
- strip_debug
+
# we have to install this immediately, because this is a library and could be needed by other sources
make install || exit 1
Index: reiserfsprogs
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/reiserfsprogs,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -d -r1.20 -r1.21
--- reiserfsprogs 6 Jan 2010 15:20:24 -0000 1.20
+++ reiserfsprogs 5 Dec 2011 09:11:38 -0000 1.21
@@ -18,7 +18,7 @@
build )
./configure --prefix= || exit 1
make $PMAKE all || exit 1
- strip_debug
+
;;
install )
Index: libdbi
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/libdbi,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- libdbi 6 Jan 2010 15:20:24 -0000 1.2
+++ libdbi 5 Dec 2011 09:11:38 -0000 1.3
@@ -18,7 +18,7 @@
build )
./configure --prefix=/usr --disable-docs || exit 1
make $PMAKE all || exit 1
- strip_debug
+
# install it in local system, because other programs could need it
make install
;;
Index: dbus
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/dbus,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- dbus 6 Jan 2010 14:53:27 -0000 1.5
+++ dbus 5 Dec 2011 09:11:37 -0000 1.6
@@ -21,7 +21,7 @@
if [ "$CONFIG_DBUS" = "y" ]; then
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var || exit 1
make $PMAKE all || exit 1
- strip_debug
+
#let's install it, other programs need this package
make install || exit 1
Index: ucarp
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/ucarp,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- ucarp 6 Jan 2010 15:27:21 -0000 1.6
+++ ucarp 5 Dec 2011 09:11:38 -0000 1.7
@@ -19,7 +19,7 @@
if [ "$CONFIG_UCARP" = "y" ]; then
./configure --prefix=/usr --disable-nls || exit 1
make || exit 1
- strip_debug
+
fi
;;
Index: squashfs
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/squashfs,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- squashfs 6 Jan 2010 15:27:21 -0000 1.5
+++ squashfs 5 Dec 2011 09:11:38 -0000 1.6
@@ -24,7 +24,7 @@
# Build userspace
make -C squashfs-tools/ all || exit 1
- strip_debug
+
fi
;;
Index: psmisc
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/psmisc,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- psmisc 6 Jan 2010 15:20:24 -0000 1.12
+++ psmisc 5 Dec 2011 09:11:38 -0000 1.13
@@ -18,7 +18,7 @@
build )
./configure --prefix=/usr --exec-prefix=/ --disable-nls || exit 1
make $PMAKE || exit 1
- strip_debug
+
;;
install )
Index: aide
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/aide,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- aide 6 Jan 2010 14:53:27 -0000 1.8
+++ aide 5 Dec 2011 09:11:37 -0000 1.9
@@ -28,7 +28,7 @@
--with-config_file=/etc/aide/aide.conf \
--with-zlib --without-mhash --with-gcrypt || exit 1
make LDFLAGS="-Wl,-z,noexecstack" $PMAKE || exit 1
- strip_debug
+
fi
;;
Index: libHX
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/libHX,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- libHX 21 Nov 2011 21:17:22 -0000 1.4
+++ libHX 5 Dec 2011 09:11:38 -0000 1.5
@@ -18,7 +18,7 @@
build )
./configure --prefix=/usr || exit 1
make $PMAKE || exit 1
- strip_debug
+
# we have to install this immediately, because this is a library and could be needed by other sources
make install || exit 1
Index: libol
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/libol,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- libol 6 Jan 2010 15:20:24 -0000 1.11
+++ libol 5 Dec 2011 09:11:38 -0000 1.12
@@ -18,7 +18,7 @@
build )
./configure --prefix=/usr || exit 1
make $PMAKE all || exit 1
- strip_debug
+
# we have to install this immediately, because this is a library and could be needed by other sources
make install || exit 1
Index: dst
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/dst,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- dst 6 Jan 2010 14:53:27 -0000 1.4
+++ dst 5 Dec 2011 09:11:37 -0000 1.5
@@ -26,7 +26,7 @@
# Build userspace
make KDIR=$KERNELDIR || exit 1
- strip_debug
+
fi
;;
Index: insserv
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/insserv,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- insserv 6 Jan 2010 15:20:24 -0000 1.17
+++ insserv 5 Dec 2011 09:11:38 -0000 1.18
@@ -24,7 +24,7 @@
fi
make clean
make $PMAKE all || exit 1
- strip_debug
+
# we have to install this immediately, because this is needed by other programs
make install || exit 1
Index: ucspi-tcp
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/ucspi-tcp,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- ucspi-tcp 6 Jan 2010 15:27:21 -0000 1.14
+++ ucspi-tcp 5 Dec 2011 09:11:38 -0000 1.15
@@ -22,7 +22,7 @@
bzcat $DL_DIR/src/ucspi-tcp-*errno.patch.bz2 | patch -p1 || exit 1
replace_str conf-home /usr/local /usr
make $PMAKE || exit 1
- strip_debug
+
fi
;;
Index: dhcp
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/dhcp,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -d -r1.29 -r1.30
--- dhcp 6 Jan 2010 14:53:27 -0000 1.29
+++ dhcp 5 Dec 2011 09:11:37 -0000 1.30
@@ -26,7 +26,7 @@
./configure --prefix=/usr --localstatedir=/var --sysconfdir=/etc --disable-nls --enable-paranoia || exit 1
make $PMAKE all || exit 1
- strip_debug
+
fi
;;
Index: jailkit
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/jailkit,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- jailkit 6 Jan 2010 15:20:24 -0000 1.6
+++ jailkit 5 Dec 2011 09:11:38 -0000 1.7
@@ -24,7 +24,7 @@
#fi
./configure --prefix=/usr --sysconfdir=/etc || exit 1
make $PMAKE || exit 1
- strip_debug
+
fi
;;
Index: ntp
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/ntp,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -d -r1.28 -r1.29
--- ntp 19 Nov 2010 00:42:47 -0000 1.28
+++ ntp 5 Dec 2011 09:11:38 -0000 1.29
@@ -25,7 +25,7 @@
fi
./configure --prefix=/usr --enable-all-clocks --enable-parse-clocks || exit 1
make $PMAKE all || exit 1
- strip_debug
+
fi
;;
Index: e100
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/e100,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- e100 6 Jan 2010 14:53:27 -0000 1.17
+++ e100 5 Dec 2011 09:11:37 -0000 1.18
@@ -18,7 +18,7 @@
build )
if [ "$CONFIG_INTEL_E100" = "y" ]; then
make $PMAKE -C src KSRC=$KERNELDIR CC=gcc || exit 1
- strip_debug
+
fi
;;
Index: procmail
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/procmail,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- procmail 19 Nov 2010 00:42:47 -0000 1.4
+++ procmail 5 Dec 2011 09:11:38 -0000 1.5
@@ -21,7 +21,7 @@
touch dl-patch.done
fi
make $PMAKE all LOCKINGTEST='/tmp .' || exit 1
- strip_debug
+
fi
;;
Index: dev86
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/dev86,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- dev86 2 Nov 2011 14:03:41 -0000 1.6
+++ dev86 5 Dec 2011 09:11:37 -0000 1.7
@@ -29,7 +29,7 @@
make all || exit 1
fi
- strip_debug
+
# we have to install this immediately, because this is program could be needed by other sources
make install || exit 1
Index: xtables-addons
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/xtables-addons,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- xtables-addons 26 Sep 2011 18:06:...
[truncated message content] |
|
From: Heiko Z. <smi...@us...> - 2011-12-05 08:36:02
|
Update of /cvsroot/devil-linux/build/scripts
In directory vz-cvs-3.sog:/tmp/cvs-serv32518
Modified Files:
gcc-4 gcc-pass1 gmp
Log Message:
dont' strip the binaries, otherwise make will insist on re-compiling pieces
of gcc with the wrong (old) compiler
Index: gmp
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/gmp,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- gmp 21 Nov 2011 21:17:22 -0000 1.18
+++ gmp 5 Dec 2011 08:35:59 -0000 1.19
@@ -20,7 +20,7 @@
--enable-cxx --enable-mpbsd || exit 1
make $PMAKE all || exit 1
strip_debug
-
+
# we have to install this immediately, because this is a library and could be needed by other sources
make install || exit 1
@@ -31,10 +31,9 @@
build )
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --host=$CONF_HOST --build=$CONF_HOST \
--enable-cxx --enable-mpbsd || exit 1
- #make LDFLAGS="-Wl,-z,noexecstack" $PMAKE all || exit 1
make $PMAKE all || exit 1
strip_debug
-
+
# we have to install this immediately, because this is a library and could be needed by other sources
make install || exit 1
;;
Index: gcc-4
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/gcc-4,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- gcc-4 30 Nov 2011 12:09:45 -0000 1.9
+++ gcc-4 5 Dec 2011 08:35:59 -0000 1.10
@@ -53,8 +53,6 @@
make MAKE="make $PMAKE" $PMAKE $EXTRAOPTIONS || exit 1
- strip_debug
-
# install it, so we use the same version everywhere
make install || exit 1
Index: gcc-pass1
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/gcc-pass1,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- gcc-pass1 30 Nov 2011 12:09:45 -0000 1.5
+++ gcc-pass1 5 Dec 2011 08:35:59 -0000 1.6
@@ -29,9 +29,8 @@
--enable-threads=posix --libexecdir=/usr/lib --enable-__cxa_atexit --enable-clocale=gnu \
--enable-languages=c,c++ --disable-nls --disable-multilib --disable-bootrap || exit 1
- make $PMAKE all || exit 1
- strip_debug
-
+ make $PMAKE || exit 1
+
# install it, so we use the same version everywhere
make install || exit 1
;;
|
|
From: Heiko Z. <smi...@us...> - 2011-12-03 09:26:32
|
Update of /cvsroot/devil-linux/build/scripts/configuration In directory vz-cvs-3.sog:/tmp/cvs-serv25792 Modified Files: prepare.config Log Message: cleanup - we don't support these options anymore Index: prepare.config =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/configuration/prepare.config,v retrieving revision 1.29 retrieving revision 1.30 diff -u -d -r1.29 -r1.30 --- prepare.config 2 Nov 2011 14:03:42 -0000 1.29 +++ prepare.config 3 Dec 2011 09:26:29 -0000 1.30 @@ -8,9 +8,6 @@ test -z "$CONFIG_KERNEL_CPU" && CONFIG_KERNEL_CPU=486 test -z "$CONFIG_CPU" && CONFIG_CPU=486 test -z "$CONFIG_GCC_CPU" && CONFIG_CPU=486 -test -z "$CONFIG_VHZ" && CONFIG_VHZ=OFF -test -z "$CONFIG_PSCHED_CLOCK_SOURCE" && CONFIG_PSCHED_CLOCK_SOURCE=PSCHED_JIFFIES -test "$CONFIG_KERNEL_CPU" != "686" -a "$CONFIG_KERNEL_CPU" != "VIAC3_2" -a "$CONFIG_PSCHED_CLOCK_SOURCE" = "PSCHED_CPU" && CONFIG_PSCHED_CLOCK_SOURCE=PSCHED_JIFFIES menu_add "Build Configuration|Size Optimization" bool "Compressed ISO (ZISOFS)" CONFIG_ZISOFS menu_add "Build Configuration|Size Optimization" bool "Compressed image (SQUASHFS)" CONFIG_SQUASHFS @@ -25,21 +22,9 @@ test -z "$CONFIG_PARALLEL_JOBS" && CONFIG_PARALLEL_JOBS=1 menu_add "Build Configuration" list "Parallel Jobs" CONFIG_PARALLEL_JOBS 1 2 3 4 5 6 7 8 9 10 -test -z "$CONFIG_NICE" && CONFIG_NICE=y -menu_add "Build Configuration" bool "Run build with nice" CONFIG_NICE - -menu_add "Build Configuration" bool "Disable Build system logfiles" CONFIG_DISABLELOGGING - test -z "$CONFIG_INITRD_FS" && CONFIG_INITRD_FS=EXT2 menu_add "Build Configuration" list "InitRD Filesystem" CONFIG_INITRD_FS EXT2 INITRAMFS -if [ "$CONFIG_KERNEL_CPU" = "686" -o "$CONFIG_KERNEL_CPU" = "VIAC3_2" ]; then - menu_add "Build Configuration|Processor and Memory" list "PSCHED_CLOCK_SOURCE" CONFIG_PSCHED_CLOCK_SOURCE PSCHED_GETTIMEOFDAY PSCHED_JIFFIES PSCHED_CPU -else - menu_add "Build Configuration|Processor and Memory" list "PSCHED_CLOCK_SOURCE" CONFIG_PSCHED_CLOCK_SOURCE PSCHED_GETTIMEOFDAY PSCHED_JIFFIES -fi - - # Options from gcc v3.2.3 # i386, i486, i586, i686, # pentium, pentium-mmx, pentiumpro, pentium2, pentium3, pentium4, |
|
From: Heiko Z. <smi...@us...> - 2011-11-30 13:58:12
|
Update of /cvsroot/devil-linux/build/scripts/scripts In directory vz-cvs-3.sog:/tmp/cvs-serv28177 Modified Files: avahi-daemon Log Message: make sure run directory exists Index: avahi-daemon =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/scripts/avahi-daemon,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- avahi-daemon 2 Nov 2011 14:03:42 -0000 1.1 +++ avahi-daemon 30 Nov 2011 13:58:09 -0000 1.2 @@ -44,6 +44,8 @@ exit 1 fi +test -d /var/run/avahi-daemon || mkdir -p /var/run/avahi-daemon + case "$1" in start) echo -n "Starting $NAME: " |
|
From: Heiko Z. <smi...@us...> - 2011-11-30 12:09:48
|
Update of /cvsroot/devil-linux/build/scripts In directory vz-cvs-3.sog:/tmp/cvs-serv22402/scripts Modified Files: gcc-4 gcc-pass1 Log Message: user liberty from binutils Index: gcc-pass1 =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/gcc-pass1,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- gcc-pass1 29 Nov 2011 20:12:24 -0000 1.4 +++ gcc-pass1 30 Nov 2011 12:09:45 -0000 1.5 @@ -18,6 +18,7 @@ cd $(find_src_dir gcc-4) || exit 1 patch_from_dir ../gcc4-patches || exit 1 + sed -i 's/install_to_$(INSTALL_DEST) //' libiberty/Makefile.in sed -i 's@\./fixinc\.sh@-c true@' gcc/Makefile.in rm -rf ../gcc4-pass1 Index: gcc-4 =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/gcc-4,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- gcc-4 2 Nov 2011 14:03:41 -0000 1.8 +++ gcc-4 30 Nov 2011 12:09:45 -0000 1.9 @@ -39,15 +39,13 @@ # gcc/config/i386/x86-64.h.orig > gcc/config/i386/x86-64.h fi - #sed -i 's/install_to_$(INSTALL_DEST) //' libiberty/Makefile.in + sed -i 's/install_to_$(INSTALL_DEST) //' libiberty/Makefile.in sed -i 's@\./fixinc\.sh@-c true@' gcc/Makefile.in rm -rf ../gcc4-build mkdir ../gcc4-build || exit 1 cd ../gcc4-build || exit 1 - set -x - ../gcc-4*/configure --prefix=/usr --localstatedir=/var --enable-shared --enable-CONFIG_SHELL=/bin/bash \ --enable-threads=posix --libexecdir=/usr/lib --enable-__cxa_atexit --enable-clocale=gnu \ --enable-languages=c,c++,objc --disable-nls --disable-multilib --disable-bootstrap \ |
|
From: Heiko Z. <smi...@us...> - 2011-11-29 20:12:26
|
Update of /cvsroot/devil-linux/build/scripts In directory vz-cvs-3.sog:/tmp/cvs-serv25831 Modified Files: gcc-pass1 Log Message: oops Index: gcc-pass1 =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/gcc-pass1,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- gcc-pass1 29 Nov 2011 20:10:31 -0000 1.3 +++ gcc-pass1 29 Nov 2011 20:12:24 -0000 1.4 @@ -24,9 +24,6 @@ mkdir ../gcc4-pass1 || exit 1 cd ../gcc4-pass1 || exit 1 - unset CFLAGS - unset CXXFLAGS - ../gcc-4*/configure --prefix=/usr --localstatedir=/var --enable-shared \ --enable-threads=posix --libexecdir=/usr/lib --enable-__cxa_atexit --enable-clocale=gnu \ --enable-languages=c,c++ --disable-nls --disable-multilib --disable-bootrap || exit 1 |
|
From: Heiko Z. <smi...@us...> - 2011-11-29 20:10:34
|
Update of /cvsroot/devil-linux/build/scripts In directory vz-cvs-3.sog:/tmp/cvs-serv24382 Modified Files: gcc-pass1 Log Message: more fixes for gcc build Index: gcc-pass1 =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/gcc-pass1,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- gcc-pass1 2 Nov 2011 14:03:41 -0000 1.2 +++ gcc-pass1 29 Nov 2011 20:10:31 -0000 1.3 @@ -13,9 +13,6 @@ # source functions and config source $MYDIR/settings -MYNAME=GCC3 - - case $1 in prepare ) cd $(find_src_dir gcc-4) || exit 1 @@ -26,15 +23,17 @@ rm -rf ../gcc4-pass1 mkdir ../gcc4-pass1 || exit 1 cd ../gcc4-pass1 || exit 1 + + unset CFLAGS + unset CXXFLAGS - CC="gcc" ../gcc-4*/configure --prefix=/usr --localstatedir=/var --enable-shared --enable-CONFIG_SHELL=/bin/bash \ + ../gcc-4*/configure --prefix=/usr --localstatedir=/var --enable-shared \ --enable-threads=posix --libexecdir=/usr/lib --enable-__cxa_atexit --enable-clocale=gnu \ - --enable-languages=c,c++ --disable-nls --disable-multilib --disable-bootstrap \ - --enable-c99 --enable-long-long $CONF_HOST || exit 1 + --enable-languages=c,c++ --disable-nls --disable-multilib --disable-bootrap || exit 1 - make MAKE="make $PMAKE" $PMAKE all || exit 1 + make $PMAKE all || exit 1 strip_debug - + # install it, so we use the same version everywhere make install || exit 1 ;; |
|
From: Heiko Z. <smi...@us...> - 2011-11-29 01:12:29
|
Update of /cvsroot/devil-linux/build/scripts
In directory vz-cvs-3.sog:/tmp/cvs-serv13390
Modified Files:
settings
Log Message:
seems like we need pic enabled all the time
this is more secure anyway and doesn't require the custom gcc patch
not perfect security, but better than nothing for the server build
Index: settings
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/settings,v
retrieving revision 1.66
retrieving revision 1.67
diff -u -d -r1.66 -r1.67
--- settings 26 Nov 2011 16:28:40 -0000 1.66
+++ settings 29 Nov 2011 01:12:26 -0000 1.67
@@ -106,25 +106,22 @@
KERNEL_CONFIG_DIR=$DL_DIR/scripts/config/linux-$CONFIG_LINUX_VERSION
+# make sure this is not set, otherwise ser and potentially others won't build
+unset HOSTTYPE
+unset MACHTYPE
+unset CPU
+
if [ "$CONFIG_CPU" != "x86_64" ]; then
export CFLAGS="-mtune=${CONFIG_GCC_CPU} -march=${CONFIG_GCC_CPU}"
export CXXFLAGS="$CFLAGS"
CONF_HOST="i$CONFIG_CPU-unknown-linux-gnu"
- export HOSTTYPE=i${CONFIG_CPU}
- export MACHTYPE=${CONF_HOST}
- export CPU=i${CONFIG_CPU}
else
export CFLAGS="-m64"
export CXXFLAGS="$CFLAGS"
CONF_HOST="x86_64-unknown-linux-gnu"
- export HOSTTYPE=x86_64
- export MACHTYPE=${CONF_HOST}
- export CPU=x86_64
fi
PACKAGEDIR=$(find_src_dir ${0##*/})
test -n "${PACKAGEDIR}" && cd ${PACKAGEDIR}
-if [ "${CONFIG_GCC_HARDENED}" = "y" ]; then
- export CONFIG_SITE=${DL_DIR}/scripts/config/config_site.pic
-fi
+export CONFIG_SITE=${DL_DIR}/scripts/config/config_site.pic
|
|
From: Heiko Z. <smi...@us...> - 2011-11-26 16:28:43
|
Update of /cvsroot/devil-linux/build/scripts
In directory vz-cvs-3.sog:/tmp/cvs-serv22264
Modified Files:
settings functions
Log Message:
fixed typos
Index: functions
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/functions,v
retrieving revision 1.76
retrieving revision 1.77
diff -u -d -r1.76 -r1.77
--- functions 21 Nov 2011 21:17:22 -0000 1.76
+++ functions 26 Nov 2011 16:28:40 -0000 1.77
@@ -249,7 +249,7 @@
;;
* )
- echo "unkown menu type"
+ echo "unknown menu type"
exit 1
;;
esac
@@ -450,7 +450,7 @@
bool) set_kernel_option $CFGOPTION y
;;
*)
- echo "ignoring unkown config type '${CFG##*#}' for '$CFGOPTION'"
+ echo "ignoring unknown config type '${CFG##*#}' for '$CFGOPTION'"
#exit 1
;;
esac
Index: settings
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/settings,v
retrieving revision 1.65
retrieving revision 1.66
diff -u -d -r1.65 -r1.66
--- settings 21 Nov 2011 21:17:22 -0000 1.65
+++ settings 26 Nov 2011 16:28:40 -0000 1.66
@@ -109,14 +109,14 @@
if [ "$CONFIG_CPU" != "x86_64" ]; then
export CFLAGS="-mtune=${CONFIG_GCC_CPU} -march=${CONFIG_GCC_CPU}"
export CXXFLAGS="$CFLAGS"
- CONF_HOST="i$CONFIG_CPU-unkown-linux-gnu"
+ CONF_HOST="i$CONFIG_CPU-unknown-linux-gnu"
export HOSTTYPE=i${CONFIG_CPU}
export MACHTYPE=${CONF_HOST}
export CPU=i${CONFIG_CPU}
else
export CFLAGS="-m64"
export CXXFLAGS="$CFLAGS"
- CONF_HOST="x86_64-unkown-linux-gnu"
+ CONF_HOST="x86_64-unknown-linux-gnu"
export HOSTTYPE=x86_64
export MACHTYPE=${CONF_HOST}
export CPU=x86_64
|