| id |
stage |
filename |
buildtime |
homepage |
deps |
build |
| 1 | cross01 | linux-2.6.18.tar.bz2 | 00d 00:01:28 | http://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
|
| 2 | cross01 | binutils-2.17.tar.bz2 | 00d 00:10:15 | ftp://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 |
| 3 | cross01 | gcc-4.1.1.tar.bz2 | 00d 00:26:13 | ftp://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
|
| 4 | cross02 | glibc-2.5.tar.bz2 | 00d 01:06:17 | ftp://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
|
| 5 | cross02 | gcc-4.1.1.tar.bz2 | 00d 00:47:36 | ftp://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
|
| 6 | cross03 | binutils-2.17.tar.bz2 | 00d 00:10:41 | ftp://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
|
| 7 | cross03 | gcc-4.1.1.tar.bz2 | 00d 00:38:15 | ftp://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
|
| 8 | cross03 | zlib-1.2.3.tar.bz2 | 00d 00:00:17 | http://www.zlib.org | gcc
| #!/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
|
| 9 | cross03 | gawk-3.1.5.tar.bz2 | 00d 00:01:43 | http://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
|
| 10 | cross03 | coreutils-6.7.tar.bz2 | 00d 00:05:35 | http://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
|
| 11 | cross03 | bzip2-1.0.3.tar.bz2 | 00d 00:00:13 | http://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
|
| 12 | cross03 | gzip-1.3.9.tar.bz2 | 00d 00:00:37 | http://ftp.gnu.org/gnu/gzip | gcc
| #!/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
|
| 13 | cross03 | diffutils-2.8.7.tar.bz2 | 00d 00:01:10 | http://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
|
| 14 | cross03 | findutils-4.2.29.tar.bz2 | 00d 00:01:25 | http://ftp.gnu.org/gnu/findutils | 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
|
| 15 | cross03 | make-3.81.tar.bz2 | 00d 00:01:15 | http://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
|
| 16 | cross03 | grep-2.5.1a.tar.bz2 | 00d 00:00:48 | http://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
|
| 17 | cross03 | sed-4.1.5.tar.bz2 | 00d 00:00:57 | http://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
|
| 18 | cross03 | gettext-0.16.1.tar.bz2 | 00d 00:03:27 | http://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
|
| 19 | cross03 | ncurses-5.5.tar.bz2 | 00d 00:05:08 | http://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
|
| 20 | cross03 | patch-2.5.9.tar.bz2 | 00d 00:00:50 | http://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
|
| 21 | cross03 | tar-1.16.1.tar.bz2 | 00d 00:02:19 | http://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
|
| 22 | cross03 | bash-3.2.tar.bz2 | 00d 00:03:51 | ftp://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
|
| 23 | cross04 | e2fsprogs-1.39.tar.bz2 | 00d 00:03:22 | http://sourceforge.net/projects/e2fsprogs | e2fsprogs 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
|
| 24 | cross04 | sysvinit-2.86.tar.bz2 | 00d 00:00:12 | ftp://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}"
|
| 25 | cross04 | module_init_tools-3.2.2.tar.bz2 | 00d 00:00:18 | http://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
|
| 26 | cross04 | util_linux-2.12r.tar.bz2 | 00d 00:01:35 | http://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
|
| 27 | cross04 | udev-103.tar.bz2 | 00d 00:00:12 | http://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
|
| 28 | cross04 | grub-0.97.tar.bz2 | 00d 00:01:19 | ftp://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
|
| 29 | native01 | perl-5.8.8.tar.bz2 | 00d 00:05:18 | http://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 |
| 30 | native02 | linux-2.6.18.tar.bz2 | 00d 00:01:08 | http://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 {} \;
|
| 31 | native02 | glibc-2.5.tar.bz2 | 00d 01:21:01 | ftp://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
|
| 32 | native03 | binutils-2.17.tar.bz2 | 00d 00:10:29 | ftp://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
|
| 33 | native03 | gcc-4.1.1.tar.bz2 | 00d 00:37:05 | ftp://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
|
| 34 | native03 | coreutils-6.7.tar.bz2 | 00d 00:05:33 | http://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
|
| 35 | native03 | zlib-1.2.3.tar.bz2 | 00d 00:00:26 | http://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
|
| 36 | native03 | findutils-4.2.29.tar.bz2 | 00d 00:01:20 | http://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
|
| 37 | native03 | gawk-3.1.5.tar.bz2 | 00d 00:01:30 | http://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
|
| 38 | native03 | ncurses-5.5.tar.bz2 | 00d 00:05:01 | http://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
|
| 39 | native03 | readline-5.2.tar.bz2 | 00d 00:01:12 | ftp://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
|
| 40 | native03 | vim-7.0.tar.bz2 | 00d 00:04:20 | http://www.vim.org | ncurses
| #!/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
|
| 41 | native03 | m4-1.4.8.tar.bz2 | 00d 00:01:03 | http://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
|
| 42 | native03 | bison-2.3.tar.bz2 | 00d 00:01:25 | http://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
|
| 43 | native03 | less-382.tar.bz2 | 00d 00:00:36 | http://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
|
| 44 | native03 | groff-1.19.2.tar.bz2 | 00d 00:03:29 | http://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
|
| 45 | native03 | sed-4.1.5.tar.bz2 | 00d 00:00:58 | http://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
|
| 46 | native03 | flex-2.5.33.tar.bz2 | 00d 00:00:42 | http://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
|
| 47 | native03 | gettext-0.16.1.tar.bz2 | 00d 00:11:04 | http://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
|
| 48 | native03 | inetutils-1.5.tar.bz2 | 00d 00:02:47 | http://ftp.gnu.org/gnu/inetutils | ncurses 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
|
| 49 | native03 | procps-3.2.7.tar.bz2 | 00d 00:00:35 | http://sourceforge.net/projects/procps | ncurses procps
| #!/bin/bash +h
make if [ $? != 0 ]; then exit 1 ; fi
make install if [ $? != 0 ]; then exit 1 ; fi
|
| 50 | native03 | perl-5.8.8.tar.bz2 | 00d 00:11:15 | http://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
|
| 51 | native03 | iproute2-2.6.19-061214.tar.bz2 | 00d 00:01:11 | http://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
|
| 52 | native03 | texinfo-4.8a.tar.bz2 | 00d 00:01:37 | http://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
|
| 53 | native03 | autoconf-2.61.tar.bz2 | 00d 00:00:10 | http://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
|
| 54 | native03 | automake-1.10.tar.bz2 | 00d 00:00:07 | http://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
|
| 55 | native03 | bash-3.2.tar.bz2 | 00d 00:03:13 | ftp://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
|
| 56 | native03 | file-4.19.tar.bz2 | 00d 00:01:00 | ftp://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
|
| 57 | native03 | libtool-1.5.22.tar.bz2 | 00d 00:00:58 | http://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
|
| 58 | native03 | bzip2-1.0.3.tar.bz2 | 00d 00:00:25 | http://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
|
| 59 | native03 | diffutils-2.8.7.tar.bz2 | 00d 00:01:05 | http://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
|
| 60 | native03 | kbd-1.12.tar.bz2 | 00d 00:00:31 | ftp://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
|
| 61 | native03 | e2fsprogs-1.39.tar.bz2 | 00d 00:03:18 | http://sourceforge.net/projects/e2fsprogs | e2fsprogs
| #!/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
|
| 62 | native03 | grep-2.5.1a.tar.bz2 | 00d 00:00:44 | http://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
|
| 63 | native03 | gzip-1.3.9.tar.bz2 | 00d 00:00:33 | http://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
|
| 64 | native03 | man-1.6e.tar.bz2 | 00d 00:00:12 | http://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
|
| 65 | native03 | man_pages-2.43.tar.bz2 | 00d 00:00:21 | ftp://ftp.kernel.org/pub/linux/docs/manpages/ | | #!/bin/bash +h
make install if [ $? != 0 ]; then exit 1 ; fi
|
| 66 | native03 | make-3.81.tar.bz2 | 00d 00:01:01 | http://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
|
| 67 | native03 | mktemp-1.5.tar.bz2 | 00d 00:00:08 | http://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
|
| 68 | native03 | module_init_tools-3.2.2.tar.bz2 | 00d 00:00:18 | http://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
|
| 69 | native03 | patch-2.5.9.tar.bz2 | 00d 00:00:39 | http://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
|
| 70 | native03 | psmisc-22.3.tar.bz2 | 00d 00:00:24 | http://sourceforge.net/projects/psmisc | ncurses
| #!/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
|
| 71 | native03 | pam-0.99.6.3.tar.bz2 | 00d 00:03:59 | http://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
|
| 72 | native03 | shadow-4.0.18.1.tar.bz2 | 00d 00:03:12 | ftp://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
|
| 73 | native03 | sysvinit-2.86.tar.bz2 | 00d 00:00:15 | ftp://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
|
| 74 | native03 | tar-1.16.1.tar.bz2 | 00d 00:02:11 | http://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
|
| 75 | native03 | util_linux-2.12r.tar.bz2 | 00d 00:01:24 | http://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
|
| 76 | native03 | udev-103.tar.bz2 | 00d 00:00:36 | http://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
|
| 77 | native03 | udev_cross_lfs-1.1-pre3.tar.bz2 | 00d 00:00:00 | http://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
|
| 78 | native03 | libaal-1.0.5.tar.bz2 | 00d 00:00:54 | http://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
|
| 79 | native03 | reiser4progs-1.0.5.tar.bz2 | 00d 00:06:57 | http://www.namesys.com | e2fsprogs 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
|
| 80 | native03 | sysklogd-1.4.1.tar.bz2 | 00d 00:00:05 | http://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
|
| 81 | native03 | grub-0.97.tar.bz2 | 00d 00:01:15 | ftp://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
|
| 82 | native04 | pcre-6.4.tar.bz2 | 00d 00:01:50 | http://www.pcre.org | gcc 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
|
| 83 | native04 | keymap_for_abnt2_keyboards-1.0.tar.bz2 | 00d 00:00:00 | http://sourceforge.net/projects/murix
| | #!/bin/bash +h
make install if [ $? != 0 ]; then exit 1 ; fi
|
| 84 | native04 | acpid-1.0.4.tar.bz2 | 00d 00:00:01 | http://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
|
| 85 | native04 | ipw2200-fw-3.0.tar.bz2 | 00d 00:00:00 | http://ipw2200.sf.net/ | | #!/bin/bash +h
cp -av * /lib/firmware if [ $? != 0 ]; then exit 1 ; fi
|
| 86 | native04 | vblade-14.tar.bz2 | 00d 00:00:02 | http://sourceforge.net/projects/aoetools/ | | #!/bin/bash +h
make if [ $? != 0 ]; then exit 1 ; fi
make install if [ $? != 0 ]; then exit 1 ; fi
|
| 87 | native04 | dialog-0.7.tar.bz2 | 00d 00:00:09 | http://hightek.org/dialog/
| ncurses
| #!/bin/bash +h
make if [ $? != 0 ]; then exit 1 ; fi
make install if [ $? != 0 ]; then exit 1 ; fi
|
| 88 | native04 | libidn-0.6.9.tar.bz2 | 00d 00:01:07 | ftp://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
|
| 89 | native04 | tcp_wrappers-7.6.tar.bz2 | 00d 00:00:12 | ftp://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
|
| 90 | native04 | portmap-5beta.tar.bz2 | 00d 00:00:03 | ftp://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
|
| 91 | native04 | tcsh-6.14.00.tar.bz2 | 00d 00:01:15 | http://www.tcsh.org | 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
ln -vfs tcsh /usr/bin/csh
|
| 92 | native04 | fam-2.7.0.tar.bz2 | 00d 00:01:34 | http://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 |
| 93 | native04 | ed-0.3.tar.bz2 | 00d 00:00:05 | http://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
|
| 94 | native04 | strace-4.5.14.tar.bz2 | 00d 00:00:49 | http://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
|
| 95 | native04 | sysfsutils-2.1.0.tar.bz2 | 00d 00:00:52 | http://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
|
| 96 | native04 | cpufrequtils-002.tar.bz2 | 00d 00:00:07 | http://kernel.org/pub/linux/utils/kernel/cpufreq/cpufrequtils.html | cpufrequtils 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
|
| 97 | native04 | lm_sensors-2.10.1.tar.bz2 | 00d 00:00:36 | http://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
|
| 98 | native04 | popt-1.10.4.tar.bz2 | 00d 00:01:04 | ftp://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
|
| 99 | native04 | libusb-0.1.12.tar.bz2 | 00d 00:00:58 | http://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
|
| 100 | native04 | pciutils-2.2.4.tar.bz2 | 00d 00:00:09 | http://atrey.karlin.mff.cuni.cz/~mj/pciutils.shtml | zlib
| #!/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
|
| 101 | native04 | gmp-4.2.1.tar.bz2 | 00d 00:05:58 | http://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
|
| 102 | native04 | gdb-6.6.tar.bz2 | 00d 00:11:47 | http://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
|
| 103 | native04 | libxml2-2.6.27.tar.bz2 | 00d 00:08:18 | ftp://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
|
| 104 | native04 | libxslt-1.1.19.tar.bz2 | 00d 00:02:22 | ftp://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
|
| 105 | native04 | expat-2.0.0.tar.bz2 | 00d 00:00:55 | http://sourceforge.net/projects/expat | expat
| #!/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
|
| 106 | native04 | xml_parser-2.34.tar.bz2 | 00d 00:00:10 | http://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
|
| 107 | native04 | openssl-0.9.8d.tar.bz2 | 00d 00:08:04 | http://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
|
| 108 | native04 | libgpg-error-1.3.tar.bz2 | 00d 00:00:47 | http://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
|
| 109 | native04 | libgcrypt-1.2.2.tar.bz2 | 00d 00:02:48 | http://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
|
| 110 | native04 | gnutls-1.6.0.tar.bz2 | 00d 00:04:58 | http://www.gnu.org/software/gnutls/download.html | 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
|
| 111 | native04 | libmcrypt-2.5.8.tar.bz2 | 00d 00:01:45 | http://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
|
| 112 | native04 | libpcap-0.9.5.tar.bz2 | 00d 00:00:27 | http://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
|
| 113 | native04 | libnet-1.1.2.1.tar.bz2 | 00d 00:00:56 | http://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
|
| 114 | native04 | curl-7.16.0.tar.bz2 | 00d 00:03:40 | http://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
|
| 115 | native04 | jpeg-6.b.tar.bz2 | 00d 00:01:19 | http://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
|
| 116 | native04 | libpng-1.2.14.tar.bz2 | 00d 00:02:04 | http://sourceforge.net/projects/libpng | 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
|
| 117 | native04 | tiff-3.8.2.tar.bz2 | 00d 00:03:27 | http://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
|
| 118 | native04 | libungif-4.1.4.tar.bz2 | 00d 00:01:11 | http://sourceforge.net/projects/libungif | libungif
| #!/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
|
| 119 | native04 | libexif-0.6.13.tar.bz2 | 00d 00:01:02 | http://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
|
| 120 | native04 | freetype-2.1.10.tar.bz2 | 00d 00:02:49 | http://www.freetype.org | zlib
| #!/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
|
| 121 | native04 | fontconfig-2.4.2.tar.bz2 | 00d 00:01:47 | http://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
|
| 122 | native04 | htmldoc-1.8.27-source.tar.bz2 | 00d 00:00:59 | http://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
|
| 123 | native04 | hdparm-6.7.tar.bz2 | 00d 00:00:08 | http://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
|
| 124 | native04 | smartmontools-5.37.tar.bz2 | 00d 00:00:36 | http://sourceforge.net/projects/smartmontools | 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
|
| 125 | native04 | pkgconfig-0.21.tar.bz2 | 00d 00:02:26 | http://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
|
| 126 | native04 | fuse-2.6.1.tar.bz2 | 00d 00:00:56 | http://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
|
| 127 | native04 | sshfs-fuse-1.8.tar.bz2 | 00d 00:00:15 | http://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
|
| 128 | native04 | ntfsprogs-1.13.1.tar.bz2 | 00d 00:02:35 | http://sourceforge.net/projects/linux-ntfs | fuse 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
|
| 129 | native04 | ntfs-3g-1.0.tar.bz2 | 00d 00:01:49 | http://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
|
| 130 | native04 | reiserfsprogs-3.6.19.tar.bz2 | 00d 00:01:12 | http://www.namesys.com | e2fsprogs
| #!/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
|
| 131 | native04 | xfsprogs-2.8.18.tar.bz2 | 00d 00:05:34 | http://oss.sgi.com/projects/xfs/download.html | e2fsprogs
| #!/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
|
| 132 | native04 | attr-2.4.32.tar.bz2 | 00d 00:00:29 | http://oss.sgi.com/projects/xfs/download.html | 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
|
| 133 | native04 | dmapi-2.2.5.tar.bz2 | 00d 00:00:28 | http://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
|
| 134 | native04 | xfsdump-2.2.42.tar.bz2 | 00d 00:02:15 | http://oss.sgi.com/projects/xfs/download.html | attr 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
|
| 135 | native04 | acl-2.2.39.tar.bz2 | 00d 00:01:02 | http://oss.sgi.com/projects/xfs/download.html | acl 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
|
| 136 | native04 | jfsutils-1.1.11.tar.bz2 | 00d 00:01:11 | http://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
|
| 137 | native04 | unionfs-1.4.tar.bz2 | 00d 00:00:03 | http://www.fsl.cs.sunysb.edu/project-unionfs.html | e2fsprogs
| #!/bin/bash +h
make PREFIX=/usr utils if [ $? != 0 ]; then exit 1 ; fi
make PREFIX=/usr install-utils if [ $? != 0 ]; then exit 1 ; fi
|
| 138 | native04 | squashfs-3.1-r2.tar.bz2 | 00d 00:00:14 | http://sourceforge.net/projects/squashfs | zlib
| #!/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
|
| 139 | native04 | parted-1.8.1.tar.bz2 | 00d 00:02:07 | http://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
|
| 140 | native04 | unzip-5.52.tar.bz2 | 00d 00:00:31 | ftp://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
|
| 141 | native04 | zip-2.31.tar.bz2 | 00d 00:00:19 | ftp://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
|
| 142 | native04 | sharutils-4.6.3.tar.bz2 | 00d 00:00:48 | http://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
|
| 143 | native04 | cpio-2.7.tar.bz2 | 00d 00:01:43 | http://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
|
| 144 | native04 | fcron-3.0.1.src.tar.bz2 | 00d 00:00:45 | http://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
|
| 145 | native04 | which-2.16.tar.bz2 | 00d 00:00:13 | http://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
|
| 146 | native04 | sudo-1.6.8p12.tar.bz2 | 00d 00:00:49 | http://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
|
| 147 | native04 | db-4.5.20.tar.bz2 | 00d 00:10:46 | http://www.oracle.com/technology/software/products/berkeley-db/index.html | db 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
|
| 148 | native04 | mysql-5.0.27.tar.bz2 | 00d 00:35:26 | http://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
|
| 149 | native04 | sqlite-3.3.8.tar.bz2 | 00d 00:02:35 | http://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
|
| 150 | native04 | tcpflow-0.21.tar.bz2 | 00d 00:00:12 | http://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
|
| 151 | native04 | kismet-2006-04-R1.tar.bz2 | 00d 00:06:54 | http://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
|
| 152 | native04 | iptraf-3.0.0.tar.bz2 | 00d 00:00:12 | http://iptraf.seul.org | ncurses
| #!/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
|
| 153 | native04 | bridge_utils-1.2.tar.bz2 | 00d 00:00:14 | http://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
|
| 154 | native04 | net_tools-1.60.tar.bz2 | 00d 00:00:33 | http://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
|
| 155 | native04 | iptables-1.3.7.tar.bz2 | 00d 00:01:20 | http://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
|
| 156 | native04 | tcpdump-3.9.5.tar.bz2 | 00d 00:01:43 | http://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
|
| 157 | native04 | traceroute-1.4a12.tar.bz2 | 00d 00:00:05 | ftp://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
|
| 158 | native04 | whois-4.7.20.tar.bz2 | 00d 00:00:02 | http://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
|
| 159 | native04 | alsa_lib-1.0.13.tar.bz2 | 00d 00:05:07 | http://www.alsa-project.org | alsa_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
|
| 160 | native04 | alsa_utils-1.0.13.tar.bz2 | 00d 00:00:46 | http://www.alsa-project.org | alsa_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
|
| 161 | native04 | libao-0.8.6.tar.bz2 | 00d 00:00:41 | http://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
|
| 162 | native04 | libogg-1.1.3.tar.bz2 | 00d 00:00:34 | http://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
|
| 163 | native04 | libvorbis-1.1.2.tar.bz2 | 00d 00:01:41 | http://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
|
| 164 | native04 | libmad-0.15.1b.tar.bz2 | 00d 00:00:44 | http://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
|
| 165 | native04 | lame-3.97.tar.bz2 | 00d 00:02:46 | http://sourceforge.net/projects/lame | ncurses
| #!/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
|
| 166 | native04 | sox-12.18.2.tar.bz2 | 00d 00:01:08 | http://sourceforge.net/projects/sox | alsa_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
|
| 167 | native04 | cdrtools-2.01.tar.bz2 | 00d 00:03:53 | ftp://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
|
| 168 | native04 | cdrdao-1.2.2.tar.bz2 | 00d 00:04:46 | http://sourceforge.net/projects/cdrdao | gcc 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
|
| 169 | native04 | dvd+rw-tools-7.0.tar.bz2 | 00d 00:00:32 | http://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
|
| 170 | native04 | cups-1.2.7-source.tar.bz2 | 00d 00:04:52 | http://www.cups.org | acl 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
|
| 171 | native04 | sane-backends-1.0.18.tar.bz2 | 00d 00:10:17 | http://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
|
| 172 | native04 | cyrus_sasl-2.1.21.tar.bz2 | 00d 00:01:48 | http://asg.web.cmu.edu/sasl/sasl-library.html | cyrus_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
|
| 173 | native04 | postfix-2.3.5.tar.bz2 | 00d 00:03:04 | http://www.postfix.org | cyrus_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
|
| 174 | native04 | courier_authlib-0.58.tar.bz2 | 00d 00:07:09 | http://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
|
| 175 | native04 | courier_imap-4.1.1.tar.bz2 | 00d 00:12:12 | http://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
|
| 176 | native04 | dhcp-3.0.5.tar.bz2 | 00d 00:00:50 | http://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
|
| 177 | native04 | bind-9.3.3.tar.bz2 | 00d 00:12:48 | http://www.isc.org | bind 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
|
| 178 | native04 | dnsmasq-2.35.tar.bz2 | 00d 00:00:17 | http://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
|
| 179 | native04 | dhcpcd-3.0.14.tar.bz2 | 00d 00:00:05 | http://developer.berlios.de/projects/dhcpcd/ | | #!/bin/bash +h
make if [ $? != 0 ]; then exit 1 ; fi
make install if [ $? != 0 ]; then exit 1 ; fi
|
| 180 | native04 | ppp-2.4.3.tar.bz2 | 00d 00:00:50 | http://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
|
| 181 | native04 | rp_pppoe-3.8.tar.bz2 | 00d 00:00:31 | http://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
|
| 182 | native04 | lftp-3.5.6.tar.bz2 | 00d 00:04:23 | http://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
|
| 183 | native04 | wget-1.10.2.tar.bz2 | 00d 00:01:04 | http://ftp.gnu.org/gnu/wget | openssl
| #!/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
|
| 184 | native04 | httpd-2.2.3.tar.bz2 | 00d 00:12:30 | http://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< |