logo

SERVER_IP=192.168.0.252 CLIENT_IP=192.168.0.106
NEWS | ALL PACKAGES DOCUMENTATION | LINKS | Sourceforge.net project | GUIA MURIX [pt-BR] | GUIA UBUNTU [pt-BR] | MRX ADMIN [beta]

All packages

id stage filename buildtime homepage deps build
1cross01linux-2.6.18.tar.bz200d 00:01:28http://www.kernel.org/
#!/bin/bash +h

patch -Np1 -i $MRX_PATCHS/linux-2.6.18-unifdef-1.patch
if [ $? != 0 ]; then exit 1 ; fi

make mrproper
make headers_install
make headers_check
mkdir -pv /tools/include
cp -av usr/include/* /tools/include
2cross01binutils-2.17.tar.bz200d 00:10:15ftp://sources.redhat.com/pub/binutils/releases/binutils
#!/bin/bash +h

patch -Np1 -i $MRX_PATCHS/binutils-2.17-posix-1.patch
if [ $? != 0 ]; then exit 1 ; fi

mkdir -p ../binutils-build
if [ $? != 0 ]; then exit 1 ; fi

cd ../binutils-build
if [ $? != 0 ]; then exit 1 ; fi

../`basename $OLDPWD`/configure --prefix=/cross-tools --host=${MRX_HOST} \
--target=${MRX_TARGET} --with-lib-path=/tools/lib --disable-nls \
--enable-shared --disable-multilib

if [ $? != 0 ]; then exit 1 ; fi

make configure-host
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

cp -f -v ../`basename $OLDPWD`/include/libiberty.h /tools/include
if [ $? != 0 ]; then exit 1 ; fi
3cross01gcc-4.1.1.tar.bz200d 00:26:13ftp://sources.redhat.com/pub/gcc/releases/
#!/bin/bash +h



patch -Np1 -i $MRX_PATCHS/gcc-4.1.1-specs-1.patch
if [ $? != 0 ]; then exit 1 ; fi

patch -Np1 -i $MRX_PATCHS/gcc-4.1.1-posix-1.patch
if [ $? != 0 ]; then exit 1 ; fi

patch -Np1 -i $MRX_PATCHS/gcc-4.1.1-cross_search_paths-1.patch
if [ $? != 0 ]; then exit 1 ; fi


echo "
#undef STARTFILE_PREFIX_SPEC
#define STARTFILE_PREFIX_SPEC \"/tools/lib/\"" >> gcc/config/linux.h

cp -v gcc/Makefile.in{,.orig}
sed -e "s@\(^CROSS_SYSTEM_HEADER_DIR =\).*@\1 /tools/include@g" \
gcc/Makefile.in.orig > gcc/Makefile.in



mkdir -p ../gcc-build
if [ $? != 0 ]; then exit 1 ; fi

cd ../gcc-build
if [ $? != 0 ]; then exit 1 ; fi

../`basename $OLDPWD`/configure --prefix=/cross-tools \
--host=${MRX_HOST} --target=${MRX_TARGET} --disable-multilib \
--with-local-prefix=/tools --disable-nls --disable-shared \
--disable-threads --enable-languages=c
if [ $? != 0 ]; then exit 1 ; fi

make all-gcc
if [ $? != 0 ]; then exit 1 ; fi

make install-gcc
if [ $? != 0 ]; then exit 1 ; fi

4cross02glibc-2.5.tar.bz200d 01:06:17ftp://sources.redhat.com/pub/glibc/releases/glibc
#!/bin/bash +h


patch -Np1 -i $MRX_PATCHS/glibc-2.5-libgcc_eh-1.patch
if [ $? != 0 ]; then exit 1 ; fi

patch -Np1 -i $MRX_PATCHS/glibc-2.5-localedef_segfault-1.patch
if [ $? != 0 ]; then exit 1 ; fi

mkdir ../glibc-build
if [ $? != 0 ]; then exit 1 ; fi

cd ../glibc-build
if [ $? != 0 ]; then exit 1 ; fi

echo "libc_cv_forced_unwind=yes" > config.cache
echo "libc_cv_c_cleanup=yes" >> config.cache

BUILD_CC="gcc" CC="${MRX_TARGET}-gcc" \
AR="${MRX_TARGET}-ar" RANLIB="${MRX_TARGET}-ranlib" \
../`basename $OLDPWD`/configure --prefix=/tools \
--host=${MRX_TARGET} --build=${MRX_HOST} \
--disable-profile --enable-add-ons \
--with-tls --enable-kernel=2.6.0 --with-__thread \
--with-binutils=/cross-tools/bin --with-headers=/tools/include \
--cache-file=config.cache
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

5cross02gcc-4.1.1.tar.bz200d 00:47:36ftp://sources.redhat.com/pub/gcc/releases/gcc
#!/bin/bash +h



patch -Np1 -i $MRX_PATCHS/gcc-4.1.1-specs-1.patch
if [ $? != 0 ]; then exit 1 ; fi

patch -Np1 -i $MRX_PATCHS/gcc-4.1.1-posix-1.patch
if [ $? != 0 ]; then exit 1 ; fi

patch -Np1 -i $MRX_PATCHS/gcc-4.1.1-cross_search_paths-1.patch
if [ $? != 0 ]; then exit 1 ; fi


echo "
#undef STARTFILE_PREFIX_SPEC
#define STARTFILE_PREFIX_SPEC \"/tools/lib/\"" >> gcc/config/linux.h

cp -v gcc/Makefile.in{,.orig}
sed -e "s@\(^CROSS_SYSTEM_HEADER_DIR =\).*@\1 /tools/include@g" \
gcc/Makefile.in.orig > gcc/Makefile.in

cp -v configure{,.orig}
sed -e '/FLAGS_FOR_TARGET.*\/lib\//s@-B[^ ]*/lib/@@g' configure.orig >configure


mkdir -p ../gcc-build
if [ $? != 0 ]; then exit 1 ; fi

cd ../gcc-build
if [ $? != 0 ]; then exit 1 ; fi

../`basename $OLDPWD`/configure --prefix=/cross-tools \
--target=${MRX_TARGET} --host=${MRX_HOST} --disable-multilib \
--with-local-prefix=/tools --disable-nls --enable-shared \
--enable-languages=c,c++ --enable-__cxa_atexit \
--enable-c99 --enable-long-long --enable-threads=posix --disable-libstdcxx-pch
if [ $? != 0 ]; then exit 1 ; fi

make AS_FOR_TARGET="${MRX_TARGET}-as" \
LD_FOR_TARGET="${MRX_TARGET}-ld"
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

6cross03binutils-2.17.tar.bz200d 00:10:41ftp://sources.redhat.com/pub/binutils/releases/binutils
gcc
#!/bin/bash +h

patch -Np1 -i $MRX_PATCHS/binutils-2.17-posix-1.patch
if [ $? != 0 ]; then exit 1 ; fi

mkdir -p ../binutils-build
if [ $? != 0 ]; then exit 1 ; fi

cd ../binutils-build
if [ $? != 0 ]; then exit 1 ; fi

../`basename $OLDPWD`/configure --prefix=/tools \
--build=${MRX_HOST} --host=${MRX_TARGET} --target=${MRX_TARGET} \
--disable-nls --enable-shared --disable-multilib
if [ $? != 0 ]; then exit 1 ; fi

make configure-host
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

7cross03gcc-4.1.1.tar.bz200d 00:38:15ftp://sources.redhat.com/pub/gcc/releases/gcc
#!/bin/bash +h



patch -Np1 -i $MRX_PATCHS/gcc-4.1.1-specs-1.patch
if [ $? != 0 ]; then exit 1 ; fi

patch -Np1 -i $MRX_PATCHS/gcc-4.1.1-posix-1.patch
if [ $? != 0 ]; then exit 1 ; fi

patch -Np1 -i $MRX_PATCHS/gcc-4.1.1-cross_search_paths-1.patch
if [ $? != 0 ]; then exit 1 ; fi


cp -v gcc/cppdefault.c{,.orig}
sed -e '/#define STANDARD_INCLUDE_DIR/s@"/usr/include"@0@g' \
gcc/cppdefault.c.orig > gcc/cppdefault.c

cp -v gcc/Makefile.in{,.orig}
sed -e 's@\(^NATIVE_SYSTEM_HEADER_DIR =\).*@\1 /tools/include@g' \
gcc/Makefile.in.orig > gcc/Makefile.in

mkdir ../gcc-build
if [ $? != 0 ]; then exit 1 ; fi

cd ../gcc-build
if [ $? != 0 ]; then exit 1 ; fi

../`basename $OLDPWD`/configure --prefix=/tools \
--build=${MRX_HOST} --host=${MRX_TARGET} --target=${MRX_TARGET} \
--with-local-prefix=/tools --enable-long-long --enable-c99 \
--enable-shared --enable-threads=posix --enable-__cxa_atexit \
--disable-nls --enable-languages=c,c++ --disable-libstdcxx-pch

make AS_FOR_TARGET="${AS}" \
LD_FOR_TARGET="${LD}"
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

ln -sfv gcc /tools/bin/cc

8cross03zlib-1.2.3.tar.bz200d 00:00:17http://www.zlib.orggcc
#!/bin/bash +h

./configure --prefix=/tools --shared
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

9cross03gawk-3.1.5.tar.bz200d 00:01:43http://ftp.gnu.org/gnu/gawk/gcc
#!/bin/bash +h

./configure --prefix=/tools --build=${MRX_HOST} --host=${MRX_TARGET}
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

10cross03coreutils-6.7.tar.bz200d 00:05:35http://ftp.gnu.org/gnu/coreutils gcc
#!/bin/bash +h

echo "ac_cv_sys_restartable_syscalls=yes" > config.cache
echo "ac_cv_func_setvbuf_reversed=yes" >> config.cache
echo "utils_cv_sys_open_max=1024" >> config.cache
if [ $? != 0 ]; then exit 1 ; fi

./configure --prefix=/tools --cache-file=config.cache \
--build=${MRX_HOST} --host=${MRX_TARGET}
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

11cross03bzip2-1.0.3.tar.bz200d 00:00:13http://www.bzip.org gcc
#!/bin/bash +h

cp -v Makefile{,.orig}
sed -e 's@^\(all:.*\) test@\1@g' Makefile.orig > Makefile
if [ $? != 0 ]; then exit 1 ; fi

make CC="${CC}" AR="${AR}" RANLIB="${RANLIB}"
if [ $? != 0 ]; then exit 1 ; fi

make PREFIX=/tools install
if [ $? != 0 ]; then exit 1 ; fi

12cross03gzip-1.3.9.tar.bz200d 00:00:37http://ftp.gnu.org/gnu/gzipgcc
#!/bin/bash +h

cp -v configure{,.orig}
sed -e "s@nm conftest@${MRX_TARGET}-&@" configure.orig > configure
if [ $? != 0 ]; then exit 1 ; fi

./configure --prefix=/tools --host=${MRX_TARGET}
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

13cross03diffutils-2.8.7.tar.bz200d 00:01:10http://ftp.gnu.org/gnu/diffutils gcc
#!/bin/bash +h

./configure --prefix=/tools --host=${MRX_TARGET}
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

14cross03findutils-4.2.29.tar.bz200d 00:01:25http://ftp.gnu.org/gnu/findutilsgcc
#!/bin/bash +h


echo "am_cv_func_working_getline=yes" >> config.cache
if [ $? != 0 ]; then exit 1 ; fi

./configure --prefix=/tools --host=${MRX_TARGET} --cache-file=config.cache
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

15cross03make-3.81.tar.bz200d 00:01:15http://ftp.gnu.org/gnu/make/gcc
#!/bin/bash +h

./configure --prefix=/tools --host=${MRX_TARGET}
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

16cross03grep-2.5.1a.tar.bz200d 00:00:48http://ftp.gnu.org/gnu/grep/gcc
#!/bin/bash +h

./configure --prefix=/tools --host=${MRX_TARGET} --disable-perl-regexp
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi
17cross03sed-4.1.5.tar.bz200d 00:00:57http://ftp.gnu.org/gnu/sed/ gcc
#!/bin/bash +h

./configure --prefix=/tools --host=${MRX_TARGET}
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

18cross03gettext-0.16.1.tar.bz200d 00:03:27http://ftp.gnu.org/gnu/gettext/
#!/bin/bash +h

cd gettext-tools

echo "am_cv_func_working_getline=yes" >> config.cache
if [ $? != 0 ]; then exit 1 ; fi

./configure --prefix=/tools --host=${MRX_TARGET} --disable-shared
if [ $? != 0 ]; then exit 1 ; fi

make -C gnulib-lib
if [ $? != 0 ]; then exit 1 ; fi

make -C src msgfmt
if [ $? != 0 ]; then exit 1 ; fi

cp -fv src/msgfmt /tools/bin
if [ $? != 0 ]; then exit 1 ; fi
19cross03ncurses-5.5.tar.bz200d 00:05:08http://ftp.gnu.org/gnu/ncurses/gcc
ncurses
#!/bin/bash +h

./configure --prefix=/tools --with-shared \
--host=${MRX_TARGET} --without-debug --without-ada \
--enable-overwrite --with-build-cc=gcc
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi
20cross03patch-2.5.9.tar.bz200d 00:00:50http://ftp.gnu.org/gnu/patch gcc
#!/bin/bash +h

./configure --prefix=/tools --host=${MRX_TARGET}
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi



21cross03tar-1.16.1.tar.bz200d 00:02:19http://ftp.gnu.org/gnu/tar gcc
#!/bin/bash +h


echo "am_cv_func_working_getline=yes" >> config.cache
if [ $? != 0 ]; then exit 1 ; fi

./configure --prefix=/tools --host=${MRX_TARGET} --cache-file=config.cache
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi
22cross03bash-3.2.tar.bz200d 00:03:51ftp://ftp.cwru.edu/pub/bash/gcc
ncurses
#!/bin/bash +h

patch -Np1 -i $MRX_PATCHS/bash-3.2-fixes-4.patch
if [ $? != 0 ]; then exit 1 ; fi

echo "ac_cv_func_setvbuf_reversed=no" >> config.cache


./configure --prefix=/tools \
--without-bash-malloc --host=${MRX_TARGET} \
--cache-file=config.cache
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

ln -vfs bash /tools/bin/sh
if [ $? != 0 ]; then exit 1 ; fi
23cross04e2fsprogs-1.39.tar.bz200d 00:03:22http://sourceforge.net/projects/e2fsprogse2fsprogs
gcc
#!/bin/bash +h

mkdir build
if [ $? != 0 ]; then exit 1 ; fi

cd build
if [ $? != 0 ]; then exit 1 ; fi

../configure --prefix=/tools --enable-elf-shlibs --disable-evms --host=${MRX_TARGET}
if [ $? != 0 ]; then exit 1 ; fi

make LDFLAGS="-s"
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

make install-libs
if [ $? != 0 ]; then exit 1 ; fi

cp -afv /tools/sbin/{fsck.ext2,fsck.ext3,e2fsck} ${MRX_DEST}/sbin
if [ $? != 0 ]; then exit 1 ; fi

24cross04sysvinit-2.86.tar.bz200d 00:00:12ftp://ftp.cistron.nl/pub/people/miquels/sysvinit/gcc
#!/bin/bash +h

cp -v src/Makefile src/Makefile.orig
sed -e 's@root@0@g' \
-e "s@/dev/initctl@${MRX_DEST}&@g" \
-e 's@\(mknod \)-m \([0-9]* \)\(.* \)p@\1\3p; chmod \2\3@g' \
-e "s@/usr/lib@/tools/lib@" \
src/Makefile.orig > src/Makefile
if [ $? != 0 ]; then exit 1 ; fi

make -C src clobber
make -C src CC="${CC}"
if [ $? != 0 ]; then exit 1 ; fi

make -C src install INSTALL="install" ROOT="${MRX_DEST}"



25cross04module_init_tools-3.2.2.tar.bz200d 00:00:18http://www.kernel.org/pub/linux/utils/kernel/module-init-tools/gcc
#!/bin/bash +h


touch modprobe.conf.5
if [ $? != 0 ]; then exit 1 ; fi

./configure --prefix=/ --host=${MRX_TARGET}
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make DESTDIR="${MRX_DEST}" install
if [ $? != 0 ]; then exit 1 ; fi

26cross04util_linux-2.12r.tar.bz200d 00:01:35http://www.kernel.org/pub/linux/utils/util-linux/ e2fsprogs
gcc
ncurses
zlib
#!/bin/bash +h

patch -Np1 -i $MRX_PATCHS/util-linux-2.12r-cramfs-1.patch
if [ $? != 0 ]; then exit 1 ; fi

patch -Np1 -i $MRX_PATCHS/util-linux-2.12r-missing_header-1.patch
if [ $? != 0 ]; then exit 1 ; fi

patch -Np1 -i $MRX_PATCHS/util-linux-2.12r-missing_lseek-1.patch
if [ $? != 0 ]; then exit 1 ; fi

patch -Np1 -i $MRX_PATCHS/util-linux-2.12r-syscall_fixes-1.patch
if [ $? != 0 ]; then exit 1 ; fi



cp -v configure{,.orig}
sed -e 's@/usr/include@/tools/include@g' configure.orig > configure
if [ $? != 0 ]; then exit 1 ; fi

cp -v MCONFIG{,.orig}
sed -e 's|-o root||' MCONFIG.orig > MCONFIG

if [ $? != 0 ]; then exit 1 ; fi

./configure
if [ $? != 0 ]; then exit 1 ; fi

make HAVE_KILL=yes HAVE_SLN=yes \
HAVE_SHADOW=no CPUOPT="" ARCH="" \
CPU=""
if [ $? != 0 ]; then exit 1 ; fi

make HAVE_KILL=yes HAVE_SLN=yes HAVE_SHADOW=no \
USE_TTY_GROUP=no CPUOPT="" ARCH="" \
CPU="" DESTDIR=${MRX_DEST} install
if [ $? != 0 ]; then exit 1 ; fi




27cross04udev-103.tar.bz200d 00:00:12http://ftp.kernel.org/pub/linux/utils/kernel/hotplug/gcc
#!/bin/bash +h

make CROSS_COMPILE="${MRX_TARGET}-" CC="${CC}" LD="${CC}" udevdir=/dev
if [ $? != 0 ]; then exit 1 ; fi

make DESTDIR=${MRX_DEST} udevdir=/dev install
if [ $? != 0 ]; then exit 1 ; fi


28cross04grub-0.97.tar.bz200d 00:01:19ftp://alpha.gnu.org/gnu/grub/gcc
ncurses
#!/bin/bash +h

patch -Np1 -i $MRX_PATCHS/grub-0.97-fixes-1.patch
if [ $? != 0 ]; then exit 1 ; fi

./configure --prefix=${MRX_DEST}/usr --host=${MRX_TARGET}
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

mkdir -p ${MRX_DEST}/boot/grub
if [ $? != 0 ]; then exit 1 ; fi

cp -vf ${MRX_DEST}/usr/lib/grub/$MRX_TARGET_KERNEL_ARCH-pc/* ${MRX_DEST}/boot/grub
if [ $? != 0 ]; then exit 1 ; fi

ln -vfs /bin/true ${MRX_DEST}/sbin/lilo

29native01perl-5.8.8.tar.bz200d 00:05:18http://cpan.org/src/
#!/bin/bash +h


patch -Np1 -i $MRX_PATCHS/perl-5.8.8-libc-2.patch
if [ $? != 0 ]; then exit 1 ; fi

./configure.gnu --prefix=/tools \
-Dstatic_ext='Data/Dumper IO Fcntl POSIX' -Dcc="gcc"
if [ $? != 0 ]; then exit 1 ; fi

make perl utilities
if [ $? != 0 ]; then exit 1 ; fi

cp perl pod/pod2man /tools/bin
if [ $? != 0 ]; then exit 1 ; fi

install -d /tools/lib/perl5/5.8.8
if [ $? != 0 ]; then exit 1 ; fi

cp -R lib/* /tools/lib/perl5/5.8.8
if [ $? != 0 ]; then exit 1 ; fi

cp -afv /tools/bin/perl /usr/bin
30native02linux-2.6.18.tar.bz200d 00:01:08http://www.kernel.org/
#!/bin/bash +h

patch -Np1 -i $MRX_PATCHS/linux-2.6.18-unifdef-1.patch
if [ $? != 0 ]; then exit 1 ; fi

make mrproper
make headers_check
make INSTALL_HDR_PATH=/usr headers_install
chown -Rv root:root /usr/include/{asm,linux}
find /usr/include/{asm,linux} -type d -exec chmod -v 755 {} \;
find /usr/include/{asm,linux} -type f -exec chmod -v 644 {} \;
31native02glibc-2.5.tar.bz200d 01:21:01ftp://sources.redhat.com/pub/glibc/releases/glibc
#!/bin/bash +h


patch -Np1 -i $MRX_PATCHS/glibc-2.5-localedef_segfault-1.patch
if [ $? != 0 ]; then exit 1 ; fi


mkdir ../glibc-build
if [ $? != 0 ]; then exit 1 ; fi

cd ../glibc-build
if [ $? != 0 ]; then exit 1 ; fi

#compile fix --build=${MRX_HOST} e --with-headers=/usr/include
../`basename $OLDPWD`/configure --prefix=/usr --build=${MRX_HOST} \
--disable-profile --enable-add-ons --enable-kernel=2.6.0 \
--libexecdir=/usr/lib/glibc --with-headers=/usr/include
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

#make -k check

touch /etc/ld.so.conf
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

make localedata/install-locales
if [ $? != 0 ]; then exit 1 ; fi



32native03binutils-2.17.tar.bz200d 00:10:29ftp://sources.redhat.com/pub/binutils/releases/binutils
#!/bin/bash +h

mkdir ../binutils-build
if [ $? != 0 ]; then exit 1 ; fi

cd ../binutils-build
if [ $? != 0 ]; then exit 1 ; fi

#bug fix --host=${MRX_TARGET}
../`basename $OLDPWD`/configure --host=${MRX_TARGET} --prefix=/usr --enable-shared
if [ $? != 0 ]; then exit 1 ; fi

make configure-host
if [ $? != 0 ]; then exit 1 ; fi

make tooldir=/usr
if [ $? != 0 ]; then exit 1 ; fi


make tooldir=/usr install
if [ $? != 0 ]; then exit 1 ; fi

cp -vf ../`basename $OLDPWD`/include/libiberty.h /usr/include
if [ $? != 0 ]; then exit 1 ; fi

33native03gcc-4.1.1.tar.bz200d 00:37:05ftp://sources.redhat.com/pub/gcc/releases/gcc
#!/bin/bash +h


sed -i 's/install_to_$(INSTALL_DEST) //' libiberty/Makefile.in
if [ $? != 0 ]; then exit 1 ; fi

mkdir ../gcc-build
if [ $? != 0 ]; then exit 1 ; fi

cd ../gcc-build
if [ $? != 0 ]; then exit 1 ; fi

#bug fix --host=${MRX_TARGET}
../`basename $OLDPWD`/configure --host=${MRX_TARGET} --prefix=/usr \
--libexecdir=/usr/lib --enable-shared --enable-threads=posix \
--enable-__cxa_atexit --enable-c99 --enable-long-long \
--enable-clocale=gnu --enable-languages=c,c++ --disable-libstdcxx-pch
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi


make install
if [ $? != 0 ]; then exit 1 ; fi

ln -vfs ../usr/bin/cpp /lib
if [ $? != 0 ]; then exit 1 ; fi

ln -vfs gcc /usr/bin/cc
if [ $? != 0 ]; then exit 1 ; fi

34native03coreutils-6.7.tar.bz200d 00:05:33http://ftp.gnu.org/gnu/coreutils
#!/bin/bash +h



./configure --prefix=/usr
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi


make install
if [ $? != 0 ]; then exit 1 ; fi

mv -v /usr/bin/{[,basename,cat,chgrp,chmod,chown,cp} /bin
if [ $? != 0 ]; then exit 1 ; fi

mv -v /usr/bin/{date,dd,df,echo,false,hostname,install,ln} /bin
if [ $? != 0 ]; then exit 1 ; fi

mv -v /usr/bin/{ls,mkdir,mknod,mv,nice,pwd,readlink,rm,rmdir,sync} /bin
if [ $? != 0 ]; then exit 1 ; fi

mv -v /usr/bin/{stty,test,touch,true,uname} /bin
if [ $? != 0 ]; then exit 1 ; fi

mv -v /usr/bin/chroot /usr/sbin
if [ $? != 0 ]; then exit 1 ; fi

ln -svf ../../bin/install /usr/bin
if [ $? != 0 ]; then exit 1 ; fi

mv -v /usr/bin/{head,sleep} /bin
if [ $? != 0 ]; then exit 1 ; fi


35native03zlib-1.2.3.tar.bz200d 00:00:26http://www.zlib.org
#!/bin/bash +h

patch -Np1 -i $MRX_PATCHS/zlib-1.2.3-fPIC-1.patch
if [ $? != 0 ]; then exit 1 ; fi

./configure --prefix=/usr --shared
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

mv -v /usr/lib/libz.so.* /lib
if [ $? != 0 ]; then exit 1 ; fi
ln -svf ../../lib/libz.so.1 /usr/lib/libz.so
if [ $? != 0 ]; then exit 1 ; fi
chmod -v 644 /usr/lib/libz.a
if [ $? != 0 ]; then exit 1 ; fi

36native03findutils-4.2.29.tar.bz200d 00:01:20http://ftp.gnu.org/gnu/findutils
#!/bin/bash +h

./configure --prefix=/usr --libexecdir=/usr/lib/locate \
--localstatedir=/var/lib/locate
if [ $? != 0 ]; then exit 1 ; fi


make
if [ $? != 0 ]; then exit 1 ; fi


make install
if [ $? != 0 ]; then exit 1 ; fi

37native03gawk-3.1.5.tar.bz200d 00:01:30http://ftp.gnu.org/gnu/gawk/
#!/bin/bash +h


patch -Np1 -i $MRX_PATCHS/gawk-3.1.5-segfault_fix-1.patch
if [ $? != 0 ]; then exit 1 ; fi


./configure --prefix=/usr --libexecdir=/usr/lib
if [ $? != 0 ]; then exit 1 ; fi

echo '#define HAVE_LC_MESSAGES 1' >> config.h

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi



38native03ncurses-5.5.tar.bz200d 00:05:01http://ftp.gnu.org/gnu/ncurses/ncurses
#!/bin/bash +h

./configure --prefix=/usr --libdir=/lib \
--with-shared --without-debug
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

mv -v /lib/lib{panel,menu,form,ncurses,ncurses++,curses}.a /usr/lib
if [ $? != 0 ]; then exit 1 ; fi
rm -v /lib/lib{ncurses,menu,panel,form,curses}.so
if [ $? != 0 ]; then exit 1 ; fi
ln -svf ../../lib/libncurses.so.5 /usr/lib/libcurses.so
if [ $? != 0 ]; then exit 1 ; fi
ln -svf ../../lib/libncurses.so.5 /usr/lib/libncurses.so
if [ $? != 0 ]; then exit 1 ; fi
ln -svf ../../lib/libmenu.so.5 /usr/lib/libmenu.so
if [ $? != 0 ]; then exit 1 ; fi
ln -svf ../../lib/libpanel.so.5 /usr/lib/libpanel.so
if [ $? != 0 ]; then exit 1 ; fi
ln -svf ../../lib/libform.so.5 /usr/lib/libform.so
if [ $? != 0 ]; then exit 1 ; fi
chmod -v 755 /lib/lib{panel,menu,form,ncurses}.so.5.*
if [ $? != 0 ]; then exit 1 ; fi

39native03readline-5.2.tar.bz200d 00:01:12ftp://ftp.cwru.edu/pub/bash/ncurses
#!/bin/bash +h

patch -Np1 -i $MRX_PATCHS/readline-5.2-fixes-1.patch
if [ $? != 0 ]; then exit 1 ; fi

./configure --prefix=/usr --libdir=/lib
if [ $? != 0 ]; then exit 1 ; fi

make SHLIB_XLDFLAGS=-lncurses
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

chmod -v 755 /lib/lib{readline,history}.so*
if [ $? != 0 ]; then exit 1 ; fi

mv -v /lib/lib{readline,history}.a /usr/lib
if [ $? != 0 ]; then exit 1 ; fi

rm -fv /lib/lib{readline,history}.so
if [ $? != 0 ]; then exit 1 ; fi

ln -svf ../../lib/libreadline.so.5 /usr/lib/libreadline.so
if [ $? != 0 ]; then exit 1 ; fi

ln -svf ../../lib/libhistory.so.5 /usr/lib/libhistory.so
if [ $? != 0 ]; then exit 1 ; fi
40native03vim-7.0.tar.bz200d 00:04:20http://www.vim.orgncurses
#!/bin/bash +h

patch -Np1 -i $MRX_PATCHS/vim-7.0-fixes-2.patch
if [ $? != 0 ]; then exit 1 ; fi

echo '#define SYS_VIMRC_FILE "/etc/vimrc"' >> src/feature.h
if [ $? != 0 ]; then exit 1 ; fi

./configure --prefix=/usr --enable-multibyte
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi


make install
if [ $? != 0 ]; then exit 1 ; fi

ln -vfs vim /usr/bin/vi
if [ $? != 0 ]; then exit 1 ; fi

41native03m4-1.4.8.tar.bz200d 00:01:03http://ftp.gnu.org/gnu/m4
#!/bin/bash +h

./configure --prefix=/usr
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi


make install
if [ $? != 0 ]; then exit 1 ; fi

42native03bison-2.3.tar.bz200d 00:01:25http://ftp.gnu.org/gnu/bison/
#!/bin/bash +h

./configure --prefix=/usr
if [ $? != 0 ]; then exit 1 ; fi

echo '#define YYENABLE_NLS 1' >> config.h

make
if [ $? != 0 ]; then exit 1 ; fi


make install
if [ $? != 0 ]; then exit 1 ; fi

43native03less-382.tar.bz200d 00:00:36http://ftp.gnu.org/gnu/less/ncurses
#!/bin/bash +h


./configure --prefix=/usr --sysconfdir=/etc
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

mv -v /usr/bin/less /bin

44native03groff-1.19.2.tar.bz200d 00:03:29http://ftp.gnu.org/gnu/groff gcc
#!/bin/bash +h


PAGE=letter ./configure --prefix=/usr
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

ln -vfs soelim /usr/bin/zsoelim
if [ $? != 0 ]; then exit 1 ; fi

ln -vfs eqn /usr/bin/geqn
if [ $? != 0 ]; then exit 1 ; fi

ln -vfs tbl /usr/bin/gtbl
if [ $? != 0 ]; then exit 1 ; fi


45native03sed-4.1.5.tar.bz200d 00:00:58http://ftp.gnu.org/gnu/sed/
#!/bin/bash +h


./configure --prefix=/usr --bindir=/bin
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi


make install
if [ $? != 0 ]; then exit 1 ; fi

46native03flex-2.5.33.tar.bz200d 00:00:42http://sourceforge.net/projects/flex
#!/bin/bash +h


./configure --prefix=/usr
if [ $? != 0 ]; then exit 1 ; fi


make
if [ $? != 0 ]; then exit 1 ; fi

#make check
#if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

ln -vfs libfl.a /usr/lib/libl.a
if [ $? != 0 ]; then exit 1 ; fi

cat > /usr/bin/lex << "EOF"
#!/bin/sh
# Begin /usr/bin/lex

exec /usr/bin/flex -l "$@"

# End /usr/bin/lex
EOF
chmod -v 755 /usr/bin/lex
47native03gettext-0.16.1.tar.bz200d 00:11:04http://ftp.gnu.org/gnu/gettext/ gcc
gettext
#!/bin/bash +h


./configure --prefix=/usr
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi


make install
if [ $? != 0 ]; then exit 1 ; fi

48native03inetutils-1.5.tar.bz200d 00:02:47http://ftp.gnu.org/gnu/inetutilsncurses
readline
#!/bin/bash +h




#bugfix --enable-telnetd --enable-inetd
./configure --prefix=/usr --libexecdir=/usr/sbin \
--sysconfdir=/etc --localstatedir=/var \
--disable-logger --disable-syslogd \
--disable-whois --disable-servers --enable-telnetd --enable-inetd
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

mv -v /usr/bin/ping /bin
if [ $? != 0 ]; then exit 1 ; fi

49native03procps-3.2.7.tar.bz200d 00:00:35http://sourceforge.net/projects/procpsncurses
procps
#!/bin/bash +h


make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi




50native03perl-5.8.8.tar.bz200d 00:11:15http://cpan.org/src/
#!/bin/bash +h


./configure.gnu --prefix=/usr \
-Dman1dir=/usr/share/man/man1 \
-Dman3dir=/usr/share/man/man3 \
-Dpager="/bin/less -isR"
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi


make install
if [ $? != 0 ]; then exit 1 ; fi
51native03iproute2-2.6.19-061214.tar.bz200d 00:01:11http://developer.osdl.org/dev/iproute2/download/
#!/bin/bash +h


sed -i '/^TARGETS/s@arpd@@g' misc/Makefile
if [ $? != 0 ]; then exit 1 ; fi

make SBINDIR=/sbin
if [ $? != 0 ]; then exit 1 ; fi

make SBINDIR=/sbin install
if [ $? != 0 ]; then exit 1 ; fi

52native03texinfo-4.8a.tar.bz200d 00:01:37http://ftp.gnu.org/gnu/texinfo ncurses
#!/bin/bash +h




./configure --prefix=/usr
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi


make install
if [ $? != 0 ]; then exit 1 ; fi



53native03autoconf-2.61.tar.bz200d 00:00:10http://ftp.gnu.org/gnu/autoconf/
#!/bin/bash +h

./configure --prefix=/usr
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi


make install
if [ $? != 0 ]; then exit 1 ; fi

54native03automake-1.10.tar.bz200d 00:00:07http://ftp.gnu.org/gnu/automake/
#!/bin/bash +h


./configure --prefix=/usr
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi



make install
if [ $? != 0 ]; then exit 1 ; fi

55native03bash-3.2.tar.bz200d 00:03:13ftp://ftp.cwru.edu/pub/bash/ncurses
readline
#!/bin/bash +h


patch -Np1 -i $MRX_PATCHS/bash-3.2-fixes-4.patch
if [ $? != 0 ]; then exit 1 ; fi

./configure --prefix=/usr --bindir=/bin --without-bash-malloc --with-installed-readline
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

56native03file-4.19.tar.bz200d 00:01:00ftp://ftp.gw.com/mirrors/pub/unix/file/file
zlib
#!/bin/bash +h

./configure --prefix=/usr
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

57native03libtool-1.5.22.tar.bz200d 00:00:58http://ftp.gnu.org/gnu/libtool/
#!/bin/bash +h

./configure --prefix=/usr
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi


make install
if [ $? != 0 ]; then exit 1 ; fi

chown -R root:root /usr/share/libtool/libltdl
if [ $? != 0 ]; then exit 1 ; fi
58native03bzip2-1.0.3.tar.bz200d 00:00:25http://www.bzip.org bzip2
#!/bin/bash +h

patch -Np1 -i $MRX_PATCHS/bzip2-1.0.3-install_docs-1.patch
if [ $? != 0 ]; then exit 1 ; fi

patch -Np1 -i $MRX_PATCHS/bzip2-1.0.3-bzgrep_security-1.patch
if [ $? != 0 ]; then exit 1 ; fi

patch -Np1 -i $MRX_PATCHS/bzip2-1.0.3-remove_tempfile-1.patch
if [ $? != 0 ]; then exit 1 ; fi

make -f Makefile-libbz2_so
if [ $? != 0 ]; then exit 1 ; fi

make clean
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi
cp -v bzip2-shared /bin/bzip2
if [ $? != 0 ]; then exit 1 ; fi
cp -av libbz2.so* /lib
if [ $? != 0 ]; then exit 1 ; fi
ln -sv ../../lib/libbz2.so.1.0 /usr/lib/libbz2.so
if [ $? != 0 ]; then exit 1 ; fi
rm -v /usr/bin/{bunzip2,bzcat,bzip2}
if [ $? != 0 ]; then exit 1 ; fi
ln -sv bzip2 /bin/bunzip2
if [ $? != 0 ]; then exit 1 ; fi
ln -sv bzip2 /bin/bzcat
if [ $? != 0 ]; then exit 1 ; fi
59native03diffutils-2.8.7.tar.bz200d 00:01:05http://ftp.gnu.org/gnu/diffutils
#!/bin/bash +h


./configure --prefix=/usr
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

60native03kbd-1.12.tar.bz200d 00:00:31ftp://ftp.win.tue.nl/pub/linux-local/utils/kbd/
#!/bin/bash +h


patch -Np1 -i $MRX_PATCHS/kbd-1.12-gcc4_fixes-1.patch
if [ $? != 0 ]; then exit 1 ; fi

./configure
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi


61native03e2fsprogs-1.39.tar.bz200d 00:03:18http://sourceforge.net/projects/e2fsprogse2fsprogs
#!/bin/bash +h


mkdir build
if [ $? != 0 ]; then exit 1 ; fi

cd build
if [ $? != 0 ]; then exit 1 ; fi

../configure --prefix=/usr --with-root-prefix="" --enable-elf-shlibs --disable-evms
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi


make install
if [ $? != 0 ]; then exit 1 ; fi

make install-libs
if [ $? != 0 ]; then exit 1 ; fi

62native03grep-2.5.1a.tar.bz200d 00:00:44http://ftp.gnu.org/gnu/grep/
#!/bin/bash +h

./configure --prefix=/usr --bindir=/bin
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi


make install
if [ $? != 0 ]; then exit 1 ; fi

63native03gzip-1.3.9.tar.bz200d 00:00:33http://ftp.gnu.org/gnu/gzip
#!/bin/bash +h




./configure --prefix=/usr
if [ $? != 0 ]; then exit 1 ; fi

sed -i 's@"BINDIR"@/bin@g' gzexe.in
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

mv -v /usr/bin/gzip /bin
if [ $? != 0 ]; then exit 1 ; fi
rm -v /usr/bin/{gunzip,zcat}
if [ $? != 0 ]; then exit 1 ; fi
ln -sv gzip /bin/gunzip
if [ $? != 0 ]; then exit 1 ; fi
ln -sv gzip /bin/zcat
if [ $? != 0 ]; then exit 1 ; fi
ln -sv gzip /bin/compress
if [ $? != 0 ]; then exit 1 ; fi
ln -sv gunzip /bin/uncompress
if [ $? != 0 ]; then exit 1 ; fi



64native03man-1.6e.tar.bz200d 00:00:12http://primates.ximian.com/~flucifredi/man/
#!/bin/bash +h

sed -i 's@-is@&R@g' configure
if [ $? != 0 ]; then exit 1 ; fi

sed -i 's@MANPATH./usr/man@#&@g' src/man.conf.in
if [ $? != 0 ]; then exit 1 ; fi

sed -i 's@)) |@) |@' src/makewhatis.sh

./configure -confdir=/etc
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

65native03man_pages-2.43.tar.bz200d 00:00:21ftp://ftp.kernel.org/pub/linux/docs/manpages/
#!/bin/bash +h


make install
if [ $? != 0 ]; then exit 1 ; fi

66native03make-3.81.tar.bz200d 00:01:01http://ftp.gnu.org/gnu/make/
#!/bin/bash +h


./configure --prefix=/usr
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi



make install
if [ $? != 0 ]; then exit 1 ; fi

67native03mktemp-1.5.tar.bz200d 00:00:08http://www.mktemp.org
#!/bin/bash +h

patch -Np1 -i $MRX_PATCHS/mktemp-1.5-add_tempfile-2.patch
if [ $? != 0 ]; then exit 1 ; fi

./configure --prefix=/usr --with-libc
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

make install-tempfile
if [ $? != 0 ]; then exit 1 ; fi

68native03module_init_tools-3.2.2.tar.bz200d 00:00:18http://www.kernel.org/pub/linux/utils/kernel/module-init-tools/
#!/bin/bash +h


rm -fv /bin/lsmod
rm -fv /sbin/rmmod
rm -fv /sbin/modprobe
rm -fv /sbin/insmod.static
rm -fv /sbin/depmod
rm -fv /sbin/modinfo
rm -fv /sbin/insmod
rm -fv /sbin/generate-modprobe.conf

./configure --prefix=/ --enable-zlib
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

69native03patch-2.5.9.tar.bz200d 00:00:39http://ftp.gnu.org/gnu/patch
#!/bin/bash +h

./configure --prefix=/usr
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

70native03psmisc-22.3.tar.bz200d 00:00:24http://sourceforge.net/projects/psmiscncurses
#!/bin/bash +h


./configure --prefix=/usr --exec-prefix=""
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

mv /bin/pstree* /usr/bin
if [ $? != 0 ]; then exit 1 ; fi

ln -vfs killall /bin/pidof
if [ $? != 0 ]; then exit 1 ; fi

71native03pam-0.99.6.3.tar.bz200d 00:03:59http://www.kernel.org/pub/linux/libs/pam/pre/library/pam
#!/bin/bash +h

./configure --libdir=/usr/lib --sbindir=/lib/security \
--enable-securedir=/lib/security \
--enable-docdir=/usr/share/doc/Linux-PAM --enable-read-both-confs
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

mv -v /lib/security/pam_tally /sbin
if [ $? != 0 ]; then exit 1 ; fi

mv -v /usr/lib/libpam*.so.0* /lib
if [ $? != 0 ]; then exit 1 ; fi

ln -v -sf ../../lib/libpam.so.0 /usr/lib/libpam.so
if [ $? != 0 ]; then exit 1 ; fi

ln -v -sf ../../lib/libpamc.so.0 /usr/lib/libpamc.so
if [ $? != 0 ]; then exit 1 ; fi

ln -v -sf ../../lib/libpam_misc.so.0 /usr/lib/libpam_misc.so
if [ $? != 0 ]; then exit 1 ; fi

72native03shadow-4.0.18.1.tar.bz200d 00:03:12ftp://ftp.pld.org.pl/software/shadow pam
shadow
#!/bin/bash +h

patch -Np1 -i $MRX_PATCHS/shadow-4.0.18.1-useradd_fix-2.patch
if [ $? != 0 ]; then exit 1 ; fi


./configure --libdir=/lib --sysconfdir=/etc --enable-shared \
--with-libpam --without-audit --without-selinux
if [ $? != 0 ]; then exit 1 ; fi

sed -i 's/groups$(EXEEXT) //' src/Makefile
sed -i '/groups/d' man/Makefile

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

mv -v /usr/bin/passwd /bin
if [ $? != 0 ]; then exit 1 ; fi

mv -v /lib/libshadow.*a /usr/lib
if [ $? != 0 ]; then exit 1 ; fi

rm -v /lib/libshadow.so
if [ $? != 0 ]; then exit 1 ; fi

ln -v -sf ../../lib/libshadow.so.0 /usr/lib/libshadow.so
if [ $? != 0 ]; then exit 1 ; fi

install -dv /etc/default

73native03sysvinit-2.86.tar.bz200d 00:00:15ftp://ftp.cistron.nl/pub/people/miquels/sysvinit/
#!/bin/bash +h


sed -i 's@Sending processes@& started by init@g' src/init.c
if [ $? != 0 ]; then exit 1 ; fi

make -C src clobber
if [ $? != 0 ]; then exit 1 ; fi

make -C src
if [ $? != 0 ]; then exit 1 ; fi

make -C src install
if [ $? != 0 ]; then exit 1 ; fi

74native03tar-1.16.1.tar.bz200d 00:02:11http://ftp.gnu.org/gnu/tar
#!/bin/bash +h

./configure --prefix=/usr --bindir=/bin --libexecdir=/usr/sbin
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi


make install
if [ $? != 0 ]; then exit 1 ; fi

75native03util_linux-2.12r.tar.bz200d 00:01:24http://www.kernel.org/pub/linux/utils/util-linux/ e2fsprogs
ncurses
zlib
#!/bin/bash +h


patch -Np1 -i $MRX_PATCHS/util-linux-2.12r-cramfs-1.patch
if [ $? != 0 ]; then exit 1 ; fi

patch -Np1 -i $MRX_PATCHS/util-linux-2.12r-missing_header-1.patch
if [ $? != 0 ]; then exit 1 ; fi

patch -Np1 -i $MRX_PATCHS/util-linux-2.12r-missing_lseek-1.patch
if [ $? != 0 ]; then exit 1 ; fi

patch -Np1 -i $MRX_PATCHS/util-linux-2.12r-syscall_fixes-1.patch
if [ $? != 0 ]; then exit 1 ; fi


sed -i 's@etc/adjtime@var/lib/hwclock/adjtime@g' hwclock/hwclock.c
if [ $? != 0 ]; then exit 1 ; fi

mkdir -p /var/lib/hwclock
if [ $? != 0 ]; then exit 1 ; fi

./configure
if [ $? != 0 ]; then exit 1 ; fi

make HAVE_KILL=yes HAVE_SLN=yes
if [ $? != 0 ]; then exit 1 ; fi

make HAVE_KILL=yes HAVE_SLN=yes install
if [ $? != 0 ]; then exit 1 ; fi

mv /usr/bin/logger /bin
if [ $? != 0 ]; then exit 1 ; fi

76native03udev-103.tar.bz200d 00:00:36http://ftp.kernel.org/pub/linux/utils/kernel/hotplug/udev
#!/bin/bash +h


make EXTRAS="extras/floppy extras/cdrom_id extras/firmware \
extras/scsi_id extras/volume_id extras/ata_id extras/usb_id \
extras/edd_id extras/dasd_id extras/path_id" udevdir=/dev
if [ $? != 0 ]; then exit 1 ; fi

sed -i 's@/usr/bin/test@/bin/test@' test/udev-test.pl
if [ $? != 0 ]; then exit 1 ; fi

make DESTDIR=/ \
EXTRAS="extras/floppy extras/cdrom_id extras/firmware \
extras/scsi_id extras/volume_id extras/ata_id extras/usb_id \
extras/edd_id extras/dasd_id extras/path_id" udevdir=/dev install
if [ $? != 0 ]; then exit 1 ; fi

install -v extras/eventrecorder.sh /lib/udev
if [ $? != 0 ]; then exit 1 ; fi

install -dv /lib/firmware
if [ $? != 0 ]; then exit 1 ; fi

install -v udevstart /sbin/udevstart
if [ $? != 0 ]; then exit 1 ; fi


77native03udev_cross_lfs-1.1-pre3.tar.bz200d 00:00:00http://www.linuxfromscratch.org/lfs/view/cross-lfs/
#!/bin/bash +h

make install
if [ $? != 0 ]; then exit 1 ; fi

make install-sound
if [ $? != 0 ]; then exit 1 ; fi

make install-network
if [ $? != 0 ]; then exit 1 ; fi

78native03libaal-1.0.5.tar.bz200d 00:00:54http://www.namesys.com
#!/bin/bash +h

./configure --prefix=/usr
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

79native03reiser4progs-1.0.5.tar.bz200d 00:06:57http://www.namesys.come2fsprogs
libaal
ncurses
readline
reiser4progs
#!/bin/bash +h

./configure --prefix=/usr
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

80native03sysklogd-1.4.1.tar.bz200d 00:00:05http://www.infodrom.org/projects/sysklogd/
#!/bin/bash +h


patch -Np1 -i $MRX_PATCHS/sysklogd-1.4.1-fixes-2.patch
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

81native03grub-0.97.tar.bz200d 00:01:15ftp://alpha.gnu.org/gnu/grub/ncurses
#!/bin/bash +h

patch -Np1 -i $MRX_PATCHS/grub-0.97-fixes-1.patch
if [ $? != 0 ]; then exit 1 ; fi

./configure --prefix=/usr --enable-graphics
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

mkdir -pv /boot/grub
if [ $? != 0 ]; then exit 1 ; fi

cp -v -f /usr/lib/grub/$MRX_TARGET_KERNEL_ARCH-pc/* /boot/grub
if [ $? != 0 ]; then exit 1 ; fi

ln -vfs /bin/true /sbin/lilo

82native04pcre-6.4.tar.bz200d 00:01:50http://www.pcre.orggcc
pcre
#!/bin/bash +h



./configure --prefix=/usr --enable-utf8
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

mv -fv /usr/lib/libpcre.so.* /lib/
if [ $? != 0 ]; then exit 1 ; fi

ln -v -sf ../../lib/libpcre.so.0 /usr/lib/libpcre.so
if [ $? != 0 ]; then exit 1 ; fi


83native04keymap_for_abnt2_keyboards-1.0.tar.bz200d 00:00:00http://sourceforge.net/projects/murix
#!/bin/bash +h

make install
if [ $? != 0 ]; then exit 1 ; fi
84native04acpid-1.0.4.tar.bz200d 00:00:01http://sourceforge.net/projects/acpid/
#!/bin/bash +h

mkdir -pv /etc/acpi/events

sed -i -e "s:-Werror::" Makefile
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

85native04ipw2200-fw-3.0.tar.bz200d 00:00:00http://ipw2200.sf.net/
#!/bin/bash +h

cp -av * /lib/firmware
if [ $? != 0 ]; then exit 1 ; fi
86native04vblade-14.tar.bz200d 00:00:02http://sourceforge.net/projects/aoetools/
#!/bin/bash +h



make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

87native04dialog-0.7.tar.bz200d 00:00:09http://hightek.org/dialog/ ncurses
#!/bin/bash +h



make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi
88native04libidn-0.6.9.tar.bz200d 00:01:07ftp://alpha.gnu.org/pub/gnu/libidn/libidn
#!/bin/bash +h

./configure --prefix=/usr
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

89native04tcp_wrappers-7.6.tar.bz200d 00:00:12ftp://ftp.porcupine.org/pub/security/tcp_wrappers
#!/bin/bash +h



patch -Np1 -i $MRX_PATCHS/tcp_wrappers-7.6-shared_lib_plus_plus-1.patch
if [ $? != 0 ]; then exit 1 ; fi


sed -i -e "s,^extern char \*malloc();,/* & */," scaffold.c
if [ $? != 0 ]; then exit 1 ; fi

make REAL_DAEMON_DIR=/usr/sbin STYLE=-DPROCESS_OPTIONS linux
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi



90native04portmap-5beta.tar.bz200d 00:00:03ftp://ftp.porcupine.org/pub/security/tcp_wrappers
#!/bin/bash +h



patch -Np1 -i $MRX_PATCHS/portmap-5beta-compilation_fixes-3.patch
if [ $? != 0 ]; then exit 1 ; fi

patch -Np1 -i $MRX_PATCHS/portmap-5beta-glibc_errno_fix-1.patch
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi


91native04tcsh-6.14.00.tar.bz200d 00:01:15http://www.tcsh.orgncurses
#!/bin/bash +h

./configure --prefix=/usr
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

ln -vfs tcsh /usr/bin/csh
92native04fam-2.7.0.tar.bz200d 00:01:34http://oss.sgi.com/projects/fam/gcc
#!/bin/bash +h

./configure --prefix=/usr --sysconfdir=/etc
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi
93native04ed-0.3.tar.bz200d 00:00:05http://ftp.gnu.org/gnu/ed/
#!/bin/bash +h



./configure --prefix=/usr --exec-prefix=""
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

94native04strace-4.5.14.tar.bz200d 00:00:49http://sourceforge.net/projects/strace/
#!/bin/bash +h

patch -Np1 -i $MRX_PATCHS/strace-4.5.14-getsiginfo.patch
if [ $? != 0 ]; then exit 1 ; fi
patch -Np1 -i $MRX_PATCHS/strace-4.5.14-subcall400.patch
if [ $? != 0 ]; then exit 1 ; fi
patch -Np1 -i $MRX_PATCHS/strace-4.5.14-sysctl-proc.patch
if [ $? != 0 ]; then exit 1 ; fi

./configure --prefix=/usr
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi


95native04sysfsutils-2.1.0.tar.bz200d 00:00:52http://sourceforge.net/projects/linux-diag/sysfsutils
#!/bin/bash +h



./configure --prefix=/usr
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi


96native04cpufrequtils-002.tar.bz200d 00:00:07http://kernel.org/pub/linux/utils/kernel/cpufreq/cpufrequtils.htmlcpufrequtils
sysfsutils
#!/bin/bash +h



#./configure --prefix=/usr
#if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi


97native04lm_sensors-2.10.1.tar.bz200d 00:00:36http://secure.netroedge.com/~lm78/lm_sensors
sysfsutils
#!/bin/bash +h




make PREFIX=/usr user
if [ $? != 0 ]; then exit 1 ; fi

make PREFIX=/usr user_install
if [ $? != 0 ]; then exit 1 ; fi

98native04popt-1.10.4.tar.bz200d 00:01:04ftp://ftp.rpm.org/pub/rpm/dist/rpm-4.1.x/
#!/bin/bash +h

#sed -i -e "/*origOptString ==/c 0)" popt.c
#autoreconf -f -i

./configure --prefix=/usr
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi


99native04libusb-0.1.12.tar.bz200d 00:00:58http://sourceforge.net/projects/libusb/gcc
libusb
#!/bin/bash +h



./configure --prefix=/usr --disable-build-docs
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

100native04pciutils-2.2.4.tar.bz200d 00:00:09http://atrey.karlin.mff.cuni.cz/~mj/pciutils.shtmlzlib
#!/bin/bash +h



make PREFIX="/usr"
if [ $? != 0 ]; then exit 1 ; fi

make PREFIX="/usr" install
if [ $? != 0 ]; then exit 1 ; fi

install -v -m755 -d /usr/include/pci
if [ $? != 0 ]; then exit 1 ; fi

install -v -m 644 lib/libpci.a /usr/lib
if [ $? != 0 ]; then exit 1 ; fi

install -v -m 644 lib/*.h /usr/include/pci
if [ $? != 0 ]; then exit 1 ; fi


101native04gmp-4.2.1.tar.bz200d 00:05:58http://www.swox.com/gmp/
#!/bin/bash +h

./configure --prefix=/usr --host ${MRX_TARGET}
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi


102native04gdb-6.6.tar.bz200d 00:11:47http://ftp.gnu.org/gnu/gdb/ncurses
#!/bin/bash +h



./configure --prefix=/usr
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi
103native04libxml2-2.6.27.tar.bz200d 00:08:18ftp://xmlsoft.org/libxml2/ libxml2
zlib
#!/bin/bash +h



./configure --prefix=/usr
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

104native04libxslt-1.1.19.tar.bz200d 00:02:22ftp://xmlsoft.org/libxml2/ libxml2
libxslt
zlib
#!/bin/bash +h



./configure --prefix=/usr
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi


105native04expat-2.0.0.tar.bz200d 00:00:55http://sourceforge.net/projects/expatexpat
#!/bin/bash +h


./configure --prefix=/usr
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

106native04xml_parser-2.34.tar.bz200d 00:00:10http://search.cpan.org/~msergeant/expat
#!/bin/bash +h


perl Makefile.PL
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

#make test
#if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

107native04openssl-0.9.8d.tar.bz200d 00:08:04http://www.openssl.org/openssl
#!/bin/bash +h

sed -i -e 's/mcpu/march/' config

./config --openssldir=/etc/ssl --prefix=/usr shared
if [ $? != 0 ]; then exit 1 ; fi

make MANDIR=/usr/share/man
if [ $? != 0 ]; then exit 1 ; fi

make MANDIR=/usr/share/man install
if [ $? != 0 ]; then exit 1 ; fi

cp -f -v -r certs /etc/ssl
if [ $? != 0 ]; then exit 1 ; fi

108native04libgpg-error-1.3.tar.bz200d 00:00:47http://www.gnupg.org/download/libgpg
#!/bin/bash +h

./configure --prefix=/usr
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi


109native04libgcrypt-1.2.2.tar.bz200d 00:02:48http://www.gnupg.org/download/libgpg
#!/bin/bash +h

./configure --prefix=/usr
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi


110native04gnutls-1.6.0.tar.bz200d 00:04:58http://www.gnu.org/software/gnutls/download.htmlgcc
gnutls
libgcrypt
libgpg
ncurses
readline
zlib
#!/bin/bash +h

./configure --prefix=/usr
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi


111native04libmcrypt-2.5.8.tar.bz200d 00:01:45http://sourceforge.net/projects/mcrypt
#!/bin/bash +h

./configure --prefix=/usr
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi


112native04libpcap-0.9.5.tar.bz200d 00:00:27http://www.tcpdump.org/
#!/bin/bash +h



./configure --prefix=/usr
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi



113native04libnet-1.1.2.1.tar.bz200d 00:00:56http://www.packetfactory.net/libnet/
#!/bin/bash +h


./configure --prefix=/usr
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi
114native04curl-7.16.0.tar.bz200d 00:03:40http://curl.haxx.se/curl
libidn
openssl
zlib
#!/bin/bash +h



./configure --prefix=/usr
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi


115native04jpeg-6.b.tar.bz200d 00:01:19http://www.ijg.org/jpeg
#!/bin/bash +h



./configure --prefix=/usr --enable-shared --enable-static
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

116native04libpng-1.2.14.tar.bz200d 00:02:04http://sourceforge.net/projects/libpngzlib
#!/bin/bash +h


./configure --prefix=/usr
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi


117native04tiff-3.8.2.tar.bz200d 00:03:27http://www.remotesensing.org/libtiff/gcc
jpeg
tiff
zlib
#!/bin/bash +h



./configure --prefix=/usr
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi






118native04libungif-4.1.4.tar.bz200d 00:01:11http://sourceforge.net/projects/libungiflibungif
#!/bin/bash +h




./configure --prefix=/usr
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

119native04libexif-0.6.13.tar.bz200d 00:01:02http://sourceforge.net/projects/libexif
#!/bin/bash +h



./configure $MURIX_AUTOCONF --prefix=/usr
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install -i
if [ $? != 0 ]; then exit 1 ; fi
120native04freetype-2.1.10.tar.bz200d 00:02:49http://www.freetype.orgzlib
#!/bin/bash +h

sed -i -r 's:.*(#.*BYTE.*) .*:\1:' include/freetype/config/ftoption.h
if [ $? != 0 ]; then exit 1 ; fi

./configure --prefix=/usr
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

121native04fontconfig-2.4.2.tar.bz200d 00:01:47http://fontconfig.org/release/expat
fontconfig
freetype
zlib
#!/bin/bash +h

./configure --prefix=/usr --sysconfdir=/etc \
--without-add-fonts --disable-docs
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi


122native04htmldoc-1.8.27-source.tar.bz200d 00:00:59http://www.htmldoc.org/jpeg
libpng
openssl
zlib
#!/bin/bash +h



./configure --prefix=/usr
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi


123native04hdparm-6.7.tar.bz200d 00:00:08http://www.ibiblio.org/pub/Linux/system/hardware/
#!/bin/bash +h



make
if [ $? != 0 ]; then exit 1 ; fi

make binprefix=/usr/ install
if [ $? != 0 ]; then exit 1 ; fi
124native04smartmontools-5.37.tar.bz200d 00:00:36http://sourceforge.net/projects/smartmontoolsgcc
#!/bin/bash +h



./configure --prefix=/usr --sysconfdir=/etc
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

125native04pkgconfig-0.21.tar.bz200d 00:02:26http://pkgconfig.freedesktop.org/releases/
#!/bin/bash +h



./configure --prefix=/usr
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

126native04fuse-2.6.1.tar.bz200d 00:00:56http://sourceforge.net/projects/fuse/
#!/bin/bash +h

./configure --prefix=/usr
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi


127native04sshfs-fuse-1.8.tar.bz200d 00:00:15http://sourceforge.net/projects/fuse/ fuse
glib
#!/bin/bash +h

./configure --prefix=/usr
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi


128native04ntfsprogs-1.13.1.tar.bz200d 00:02:35http://sourceforge.net/projects/linux-ntfsfuse
ntfsprogs
#!/bin/bash +h


./configure --prefix=/usr --disable-gnome-vfs
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi


129native04ntfs-3g-1.0.tar.bz200d 00:01:49http://www.ntfs-3g.org/fuse
ntfs
#!/bin/bash +h


./configure --prefix=/usr
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi


130native04reiserfsprogs-3.6.19.tar.bz200d 00:01:12http://www.namesys.come2fsprogs
#!/bin/bash +h

patch -Np1 -i $MRX_PATCHS/reiserfsprogs-3.6.9-header-fix.patch
if [ $? != 0 ]; then exit 1 ; fi

./configure --prefix=/usr --sbindir=/sbin
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

ln -sfv reiserfsck /sbin/fsck.reiserfs
if [ $? != 0 ]; then exit 1 ; fi

ln -sfv mkreiserfs /sbin/mkfs.reiserfs
if [ $? != 0 ]; then exit 1 ; fi

131native04xfsprogs-2.8.18.tar.bz200d 00:05:34http://oss.sgi.com/projects/xfs/download.htmle2fsprogs
#!/bin/bash +h

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi


make install-dev
if [ $? != 0 ]; then exit 1 ; fi

#make install-lib
#if [ $? != 0 ]; then exit 1 ; fi
132native04attr-2.4.32.tar.bz200d 00:00:29http://oss.sgi.com/projects/xfs/download.htmlattr
#!/bin/bash +h

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi


make install-dev
if [ $? != 0 ]; then exit 1 ; fi

make install-lib
if [ $? != 0 ]; then exit 1 ; fi
133native04dmapi-2.2.5.tar.bz200d 00:00:28http://oss.sgi.com/projects/xfs/download.html
#!/bin/bash +h

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi


make install-dev
if [ $? != 0 ]; then exit 1 ; fi

#make install-lib
#if [ $? != 0 ]; then exit 1 ; fi
134native04xfsdump-2.2.42.tar.bz200d 00:02:15http://oss.sgi.com/projects/xfs/download.htmlattr
e2fsprogs
ncurses
xfsprogs
#!/bin/bash +h

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi


make install-dev
if [ $? != 0 ]; then exit 1 ; fi

#make install-lib
#if [ $? != 0 ]; then exit 1 ; fi
135native04acl-2.2.39.tar.bz200d 00:01:02http://oss.sgi.com/projects/xfs/download.htmlacl
attr
#!/bin/bash +h

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi


make install-dev
if [ $? != 0 ]; then exit 1 ; fi

make install-lib
if [ $? != 0 ]; then exit 1 ; fi
136native04jfsutils-1.1.11.tar.bz200d 00:01:11http://jfs.sourceforge.net/ e2fsprogs
#!/bin/bash +h

./configure --prefix=/usr
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

137native04unionfs-1.4.tar.bz200d 00:00:03http://www.fsl.cs.sunysb.edu/project-unionfs.htmle2fsprogs
#!/bin/bash +h

make PREFIX=/usr utils
if [ $? != 0 ]; then exit 1 ; fi

make PREFIX=/usr install-utils
if [ $? != 0 ]; then exit 1 ; fi

138native04squashfs-3.1-r2.tar.bz200d 00:00:14http://sourceforge.net/projects/squashfszlib
#!/bin/bash +h

cd squashfs-tools
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

cp -av mksquashfs unsquashfs /usr/bin
if [ $? != 0 ]; then exit 1 ; fi

139native04parted-1.8.1.tar.bz200d 00:02:07http://ftp.gnu.org/gnu/parted/ e2fsprogs
parted
#!/bin/bash +h


./configure --prefix=/usr --without-readline
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi
140native04unzip-5.52.tar.bz200d 00:00:31ftp://ftp.info-zip.org/pub/infozip/src/
#!/bin/bash +h

make -f unix/Makefile LOCAL_UNZIP=-D_FILE_OFFSET_BITS=64 linux
if [ $? != 0 ]; then exit 1 ; fi

make prefix=/usr install
if [ $? != 0 ]; then exit 1 ; fi

141native04zip-2.31.tar.bz200d 00:00:19ftp://ftp.info-zip.org/pub/infozip/src/
#!/bin/bash +h

sed -i -e 's@$(INSTALL) man/zip.1@$(INSTALL_PROGRAM) man/zip.1@' unix/Makefile
if [ $? != 0 ]; then exit 1 ; fi

make prefix=/usr -f unix/Makefile generic_gcc
if [ $? != 0 ]; then exit 1 ; fi

make prefix=/usr -f unix/Makefile install
if [ $? != 0 ]; then exit 1 ; fi


142native04sharutils-4.6.3.tar.bz200d 00:00:48http://ftp.gnu.org/gnu/sharutils
#!/bin/bash +h



./configure --prefix=/usr --disable-nls
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

143native04cpio-2.7.tar.bz200d 00:01:43http://ftp.gnu.org/gnu/cpio/
#!/bin/bash +h

./configure --prefix=/usr
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

144native04fcron-3.0.1.src.tar.bz200d 00:00:45http://fcron.free.fr/pam
#!/bin/bash +h

./configure --without-sendmail --with-boot-install=no
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

145native04which-2.16.tar.bz200d 00:00:13http://www.xs4all.nl/~carlo17/which/
#!/bin/bash +h



./configure --prefix=/usr
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi


146native04sudo-1.6.8p12.tar.bz200d 00:00:49http://www.sudo.ws/sudo/
#!/bin/bash +h



./configure --prefix=/usr --libexecdir=/usr/lib \
--enable-noargs-shell --with-ignore-dot --with-all-insults \
--enable-shell-sets-home
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

147native04db-4.5.20.tar.bz200d 00:10:46http://www.oracle.com/technology/software/products/berkeley-db/index.htmldb
gcc
#!/bin/bash +h

cd build_unix
if [ $? != 0 ]; then exit 1 ; fi

../dist/configure --prefix=/usr --enable-compat185 --enable-cxx
if [ $? != 0 ]; then exit 1 ; fi

make LIBSO_LIBS="-lpthread" LIBXSO_LIBS="-lpthread"
if [ $? != 0 ]; then exit 1 ; fi

make docdir=/usr/share/doc/db-4.3.28 install
if [ $? != 0 ]; then exit 1 ; fi

chown root:root /usr/bin/db_* /usr/lib/libdb* /usr/include/db*
if [ $? != 0 ]; then exit 1 ; fi

chown -R root:root /usr/share/doc/db-4.3.28
if [ $? != 0 ]; then exit 1 ; fi


148native04mysql-5.0.27.tar.bz200d 00:35:26http://dev.mysql.com/gcc
mysql
ncurses
readline
zlib
#!/bin/bash +h

C_EXTRA_FLAGS=-fno-strict-aliasing \
./configure --prefix=/usr \
--sysconfdir=/etc \
--libexecdir=/usr/sbin \
--localstatedir=/home/root/data \
--enable-thread-safe-client \
--enable-assembler \
--enable-local-infile \
--without-debug \
--without-bench \
--without-readline \
--with-berkeley-db \
--with-extra-charsets=all
if [ $? != 0 ]; then exit 1 ; fi

make testdir=/usr/lib/mysql/mysql-test
if [ $? != 0 ]; then exit 1 ; fi

make testdir=/usr/lib/mysql/mysql-test install
if [ $? != 0 ]; then exit 1 ; fi

cd /usr/lib
if [ $? != 0 ]; then exit 1 ; fi

ln -v -sf mysql/libmysqlclient{,_r}.so* .
if [ $? != 0 ]; then exit 1 ; fi


149native04sqlite-3.3.8.tar.bz200d 00:02:35http://www.sqlite.org/ncurses
readline
sqlite
#!/bin/bash +h



./configure --prefix=/usr --enable-threadsafe
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

150native04tcpflow-0.21.tar.bz200d 00:00:12http://www.circlemud.org/~jelson/software/tcpflow/
#!/bin/bash +h



./configure --prefix=/usr
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

151native04kismet-2006-04-R1.tar.bz200d 00:06:54http://www.kismetwireless.net/gcc
ncurses
#!/bin/bash +h


./configure --prefix=/usr
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi
152native04iptraf-3.0.0.tar.bz200d 00:00:12http://iptraf.seul.orgncurses
#!/bin/bash +h

patch -Np1 -i $MRX_PATCHS/iptraf-3.0.0-compile.fix.patch
if [ $? != 0 ]; then exit 1 ; fi
patch -Np1 -i $MRX_PATCHS/iptraf-3.0.0-longdev.patch
if [ $? != 0 ]; then exit 1 ; fi
patch -Np1 -i $MRX_PATCHS/iptraf-3.0.0-setlocale.patch
if [ $? != 0 ]; then exit 1 ; fi

make TARGET=/usr/bin -C src
if [ $? != 0 ]; then exit 1 ; fi

yes N | make TARGET=/usr/bin install -C src
if [ $? != 0 ]; then exit 1 ; fi





153native04bridge_utils-1.2.tar.bz200d 00:00:14http://sourceforge.net/projects/bridge
#!/bin/bash +h

autoconf

./configure --prefix=/usr
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi


154native04net_tools-1.60.tar.bz200d 00:00:33http://www.tazenda.demon.co.uk/phil/net-tools/
#!/bin/bash +h

patch -Np1 -i $MRX_PATCHS/net-tools-1.60-gcc34-3.patch
if [ $? != 0 ]; then exit 1 ; fi

patch -Np1 -i $MRX_PATCHS/net-tools-1.60-kernel_headers-2.patch
if [ $? != 0 ]; then exit 1 ; fi

patch -Np1 -i $MRX_PATCHS/net-tools-1.60-mii_ioctl-1.patch
if [ $? != 0 ]; then exit 1 ; fi


yes "" | make config
if [ $? != 0 ]; then exit 1 ; fi

################################################################################################3333

sed -i -e 's|HAVE_IP_TOOLS 0|HAVE_IP_TOOLS 1|g' -e 's|HAVE_MII 0|HAVE_MII 1|g' config.h
if [ $? != 0 ]; then exit 1 ; fi

sed -i -e 's|# HAVE_AFINET6 0|HAVE_AFINET6 1|g' config.h
if [ $? != 0 ]; then exit 1 ; fi

################################################################################################3333

sed -i -e 's|# HAVE_IP_TOOLS=0|HAVE_IP_TOOLS=1|g' -e 's|# HAVE_MII=0|HAVE_MII=1|g' config.make
if [ $? != 0 ]; then exit 1 ; fi

sed -i -e 's|# HAVE_AFINET6=0|HAVE_AFINET6=1|g' config.make
if [ $? != 0 ]; then exit 1 ; fi

################################################################################################3333

make
if [ $? != 0 ]; then exit 1 ; fi

make update
if [ $? != 0 ]; then exit 1 ; fi




155native04iptables-1.3.7.tar.bz200d 00:01:20http://www.iptables.org/
#!/bin/bash +h



make PREFIX=/usr LIBDIR=/lib BINDIR=/sbin
if [ $? != 0 ]; then exit 1 ; fi

make PREFIX=/usr LIBDIR=/lib BINDIR=/sbin install
if [ $? != 0 ]; then exit 1 ; fi
156native04tcpdump-3.9.5.tar.bz200d 00:01:43http://www.tcpdump.org/openssl
#!/bin/bash +h


./configure --prefix=/usr
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi
157native04traceroute-1.4a12.tar.bz200d 00:00:05ftp://ee.lbl.gov/
#!/bin/bash +h

sed -i -e 's/-o bin/-o root/' Makefile.in
if [ $? != 0 ]; then exit 1 ; fi

./configure --prefix=/usr
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

chmod -v 0755 /usr/sbin/traceroute
if [ $? != 0 ]; then exit 1 ; fi

mv -fv /usr/sbin/traceroute /usr/bin
if [ $? != 0 ]; then exit 1 ; fi
158native04whois-4.7.20.tar.bz200d 00:00:02http://ftp.debian.org/debian/pool/main/w/whois/
#!/bin/bash +h



make
if [ $? != 0 ]; then exit 1 ; fi

make prefix=/usr install
if [ $? != 0 ]; then exit 1 ; fi

159native04alsa_lib-1.0.13.tar.bz200d 00:05:07http://www.alsa-project.orgalsa_lib
#!/bin/bash +h


./configure --enable-static
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

160native04alsa_utils-1.0.13.tar.bz200d 00:00:46http://www.alsa-project.orgalsa_lib
ncurses
#!/bin/bash +h


./configure
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi




161native04libao-0.8.6.tar.bz200d 00:00:41http://www.xiph.org/alsa_lib
#!/bin/bash +h



./configure --prefix=/usr
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi


162native04libogg-1.1.3.tar.bz200d 00:00:34http://www.xiph.org/
#!/bin/bash +h



./configure --prefix=/usr
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

163native04libvorbis-1.1.2.tar.bz200d 00:01:41http://www.xiph.org/libogg
libvorbis
#!/bin/bash +h



./configure --prefix=/usr
if [ $? != 0 ]; then exit 1 ; fi

sed -i.bak -e 's/-mno-ieee-fp//' lib/Makefile
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

164native04libmad-0.15.1b.tar.bz200d 00:00:44http://sourceforge.net/projects/mad
#!/bin/bash +h



./configure $MURIX_AUTOCONF --prefix=/usr
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

cat > /usr/lib/pkgconfig/mad.pc << "EOF"
prefix=/usr
exec_prefix=${prefix}
libdir=${exec_prefix}/lib
includedir=${prefix}/include

Name: mad
Description: MPEG audio decoder
Requires:
Version: 0.15.1b
Libs: -L${libdir} -lmad
Cflags: -I${includedir}
EOF


165native04lame-3.97.tar.bz200d 00:02:46http://sourceforge.net/projects/lamencurses
#!/bin/bash +h



./configure --prefix=/usr --enable-mp3rtp
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi


166native04sox-12.18.2.tar.bz200d 00:01:08http://sourceforge.net/projects/soxalsa_lib
lame
libmad
libogg
libvorbis
#!/bin/bash +h



./configure --prefix=/usr
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi
167native04cdrtools-2.01.tar.bz200d 00:03:53ftp://ftp.berlios.de/pub/cdrecord/
#!/bin/bash +h

make INS_BASE=/usr DEFINSUSR=root DEFINSGRP=root
if [ $? != 0 ]; then exit 1 ; fi

make INS_BASE=/usr DEFINSUSR=root DEFINSGRP=root install
if [ $? != 0 ]; then exit 1 ; fi


168native04cdrdao-1.2.2.tar.bz200d 00:04:46http://sourceforge.net/projects/cdrdaogcc
lame
libao
libmad
libogg
libvorbis
#!/bin/bash +h

./configure --prefix=/usr
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi


169native04dvd+rw-tools-7.0.tar.bz200d 00:00:32http://fy.chalmers.se/~appro/linux/DVD+RW/tools/gcc
#!/bin/bash +h


make all rpl8 btcflash
if [ $? != 0 ]; then exit 1 ; fi

make prefix=/usr install
if [ $? != 0 ]; then exit 1 ; fi
170native04cups-1.2.7-source.tar.bz200d 00:04:52http://www.cups.orgacl
attr
cups
gcc
gnutls
jpeg
libgcrypt
libgpg
libpng
pam
tiff
zlib
#!/bin/bash +h

sed -i -e "s@pam/pam@security/pam@g" {config-scripts/cups-pam.m4,scheduler/auth.c,configure}
if [ $? != 0 ]; then exit 1 ; fi


./configure
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi





171native04sane-backends-1.0.18.tar.bz200d 00:10:17http://www.sane-project.org/ jpeg
libusb
sane
tiff
zlib
#!/bin/bash +h



./configure --prefix=/usr --sysconfdir=/etc
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi


172native04cyrus_sasl-2.1.21.tar.bz200d 00:01:48http://asg.web.cmu.edu/sasl/sasl-library.htmlcyrus_sasl
db
openssl
pam
#!/bin/bash +h

patch -Np1 -i $MRX_PATCHS/cyrus-sasl-2.1.21-gcc4-1.patch
if [ $? != 0 ]; then exit 1 ; fi

./configure --prefix=/usr --sysconfdir=/etc --with-dbpath=/var/lib/sasl/sasldb2 --with-saslauthd=/var/run
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

install -v -m644 saslauthd/saslauthd.8 /usr/share/man/man8
if [ $? != 0 ]; then exit 1 ; fi

install -v -m700 -d /var/lib/sasl
if [ $? != 0 ]; then exit 1 ; fi


173native04postfix-2.3.5.tar.bz200d 00:03:04http://www.postfix.orgcyrus_sasl
db
openssl
pcre
#!/bin/bash +h



#resolve bronca com aliases se nao existirem
touch /etc/aliases
if [ $? != 0 ]; then exit 1 ; fi

mkdir -p /usr/lib/postfix
if [ $? != 0 ]; then exit 1 ; fi


make tidy # if you have left-over files from a previous build
if [ $? != 0 ]; then exit 1 ; fi

make makefiles \
CCARGS='-DDEF_DAEMON_DIR=\"/usr/lib/postfix\" \
-DDEF_MANPAGE_DIR=\"/usr/share/man\" \
-DDEF_HTML_DIR=\"/usr/share/doc/postfix/html\" \
-DDEF_README_DIR=\"/usr/share/doc/postfix/README\" \
-DUSE_TLS -I/usr/include/openssl -DUSE_SASL_AUTH -DUSE_CYRUS_SASL -I/usr/include/sasl' \
AUXLIBS='-L/usr/lib -lssl -lcrypto -L/usr/lib -lsasl2'

if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

sh postfix-install -non-interactive
if [ $? != 0 ]; then exit 1 ; fi


#resolve bronca com aliases se nao existirem
newaliases
if [ $? != 0 ]; then exit 1 ; fi



174native04courier_authlib-0.58.tar.bz200d 00:07:09http://www.courier-mta.org/courier_authlib
db
libtool
pam
shadow
#!/bin/bash +h



./configure --prefix=/usr --sysconfdir=/etc/courier --libexecdir=/usr/lib \
--localstatedir=/var --without-authmysql --with-authpam
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

make install-configure
if [ $? != 0 ]; then exit 1 ; fi
175native04courier_imap-4.1.1.tar.bz200d 00:12:12http://www.courier-mta.org/courier_authlib
db
fam
gcc
openssl
#!/bin/bash +h



./configure --prefix=/usr --sysconfdir=/etc/courier --libexecdir=/usr/sbin --disable-root-check
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

make install-configure
if [ $? != 0 ]; then exit 1 ; fi
176native04dhcp-3.0.5.tar.bz200d 00:00:50http://www.isc.org/index.pl?/sw/dhcp/
#!/bin/bash +h


./configure
if [ $? != 0 ]; then exit 1 ; fi

make LIBDIR=/usr/lib INCDIR=/usr/include
if [ $? != 0 ]; then exit 1 ; fi

make LIBDIR=/usr/lib INCDIR=/usr/include install
if [ $? != 0 ]; then exit 1 ; fi
177native04bind-9.3.3.tar.bz200d 00:12:48http://www.isc.orgbind
openssl
#!/bin/bash +h

sed -i -e '247a #undef SO_BSDCOMPAT\n' lib/isc/unix/socket.c


./configure --prefix=/usr --sysconfdir=/etc --enable-threads --with-libtool
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

#chmod 755 /usr/lib/{lib{bind9,isc{,cc,cfg},lwres,dns}.so.*.?.?}
#if [ $? != 0 ]; then exit 1 ; fi

#cd doc
#install -v -d -m755 /usr/share/doc/bind-9.3.1/{arm,draft,misc,rfc}
#install -v -m644 arm/*.html /usr/share/doc/bind-9.3.1/arm
#install -v -m644 draft/*.txt /usr/share/doc/bind-9.3.1/draft
#install -v -m644 rfc/* /usr/share/doc/bind-9.3.1/rfc
#install -v -m644 misc/{dnssec,ipv6,migrat*,options,rfc-compliance,roadmap,sdb} /usr/share/doc/bind-9.3.1/misc



178native04dnsmasq-2.35.tar.bz200d 00:00:17http://thekelleys.org.uk/dnsmasq/doc.html
#!/bin/bash +h




make PREFIX=/usr
if [ $? != 0 ]; then exit 1 ; fi

make PREFIX=/usr install
if [ $? != 0 ]; then exit 1 ; fi
179native04dhcpcd-3.0.14.tar.bz200d 00:00:05http://developer.berlios.de/projects/dhcpcd/
#!/bin/bash +h


make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi


180native04ppp-2.4.3.tar.bz200d 00:00:50http://www.samba.org/ppp/
#!/bin/bash +h







./configure --prefix=/usr
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi

make install-etcppp
if [ $? != 0 ]; then exit 1 ; fi

181native04rp_pppoe-3.8.tar.bz200d 00:00:31http://www.roaringpenguin.com/products/rp-pppoe/
#!/bin/bash +h

sed -i s%/usr/bin/logger%/bin/logger% scripts/pppoe-{connect,setup,stop}.in
if [ $? != 0 ]; then exit 1 ; fi

cd src
if [ $? != 0 ]; then exit 1 ; fi

./configure
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi
182native04lftp-3.5.6.tar.bz200d 00:04:23http://lftp.yar.ru/expat
gcc
gnutls
libgcrypt
libgpg
ncurses
readline
zlib
#!/bin/bash +h



./configure --prefix=/usr
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi


183native04wget-1.10.2.tar.bz200d 00:01:04http://ftp.gnu.org/gnu/wgetopenssl
#!/bin/bash +h



./configure --prefix=/usr --sysconfdir=/etc
if [ $? != 0 ]; then exit 1 ; fi

make
if [ $? != 0 ]; then exit 1 ; fi

make install
if [ $? != 0 ]; then exit 1 ; fi


184native04httpd-2.2.3.tar.bz200d 00:12:30http://www.apache.org/e2fsprogs
expat
httpd
sqlite
zlib
#!/bin/bash +h


echo '

<Layout MURIX>
prefix: /usr
exec_prefix: ${prefix}
bindir: ${prefix}/bin
sbindir: ${prefix}/sbin<