From e5fe8321a9370d39d75a88a75481174f0026eb50 Mon Sep 17 00:00:00 2001 From: Manuel Canales Esparcia Date: Sat, 29 Sep 2007 18:38:16 +0000 Subject: [PATCH] Removed the now obsolete custom/ drectory. --- custom/examples/950-bc | 22 ------------- custom/examples/951-glib | 22 ------------- custom/examples/952-mc | 18 ---------- custom/examples/960-pppd | 26 --------------- custom/examples/961-openssl | 35 -------------------- custom/examples/963-gpm | 43 ------------------------ custom/examples/963-lynx | 32 ------------------ custom/examples/964-hdcpcd | 27 --------------- custom/examples/965-eject | 25 -------------- custom/examples/997-nasm | 33 ------------------- custom/examples/998-syslinux | 35 -------------------- custom/examples/999-blfs_bootscripts | 22 ------------- custom/examples_CLFS-E/950-dropbear | 49 ---------------------------- custom/examples_CLFS-E/960-iptables | 42 ------------------------ custom/template | 20 ------------ 15 files changed, 451 deletions(-) delete mode 100644 custom/examples/950-bc delete mode 100644 custom/examples/951-glib delete mode 100644 custom/examples/952-mc delete mode 100644 custom/examples/960-pppd delete mode 100644 custom/examples/961-openssl delete mode 100644 custom/examples/963-gpm delete mode 100644 custom/examples/963-lynx delete mode 100644 custom/examples/964-hdcpcd delete mode 100644 custom/examples/965-eject delete mode 100644 custom/examples/997-nasm delete mode 100644 custom/examples/998-syslinux delete mode 100644 custom/examples/999-blfs_bootscripts delete mode 100644 custom/examples_CLFS-E/950-dropbear delete mode 100644 custom/examples_CLFS-E/960-iptables delete mode 100644 custom/template diff --git a/custom/examples/950-bc b/custom/examples/950-bc deleted file mode 100644 index e70d3dc..0000000 --- a/custom/examples/950-bc +++ /dev/null @@ -1,22 +0,0 @@ -# -# $Id$ -# -PKG="bc" -PKG_VERSION="1.06" -PKG_FILE="bc-1.06.tar.gz" -URL="http://ftp.gnu.org/gnu/bc/${PKG_FILE}" -MD5="d44b5dddebd8a7a7309aea6c36fda117" -for i in PATCH{1..10}; do - unset $i -done - -( cat << "xEOFx" -sed -i '/PROTO.*readline/d' bc/scan.l && -sed -i '/flex -I8/s/8//' configure && -sed -i '/stdlib/a #include ' lib/number.c && -sed -i 's/program.*save/static &/' bc/load.c && -./configure --prefix=/usr --with-readline && -make -make install -xEOFx -) > tmp diff --git a/custom/examples/951-glib b/custom/examples/951-glib deleted file mode 100644 index ddb0985..0000000 --- a/custom/examples/951-glib +++ /dev/null @@ -1,22 +0,0 @@ -# -# $Id$ -# -PKG="glib" -PKG_VERSION="1.2.10" -PKG_FILE="glib-1.2.10.tar.gz" -URL="http://gd.tuwien.ac.at/graphics/gimp/gtk/v1.2/${PKG_FILE}" -MD5="6fe30dad87c77b91b632def29dd69ef9" -for i in PATCH{1..10}; do - unset $i -done -PATCH1="http://www.linuxfromscratch.org/patches/blfs/svn/glib-1.2.10-gcc34-1.patch 0077a1cce5e8a2231ac5a9b08c6263ba" - - -( cat << "xEOFx" -patch -Np1 -i ../glib-1.2.10-gcc34-1.patch && -./configure --prefix=/usr && -make -make install && -chmod -v 755 /usr/lib/libgmodule-1.2.so.0.0.10 -xEOFx -) > tmp diff --git a/custom/examples/952-mc b/custom/examples/952-mc deleted file mode 100644 index 43af312..0000000 --- a/custom/examples/952-mc +++ /dev/null @@ -1,18 +0,0 @@ -# -# $Id$ -# -PKG="mc" -PKG_VERSION="4.6.1" -PKG_FILE="mc-4.6.1.tar.gz" -URL="http://www.ibiblio.org/pub/Linux/utils/file/managers/mc/${PKG_FILE}" -MD5="18b20db6e40480a53bac2870c56fc3c4" -for i in PATCH{1..10}; do - unset $i -done - -( cat << "xEOFx" -./configure --prefix=/usr && -make -make install -xEOFx -) > tmp diff --git a/custom/examples/960-pppd b/custom/examples/960-pppd deleted file mode 100644 index feacb91..0000000 --- a/custom/examples/960-pppd +++ /dev/null @@ -1,26 +0,0 @@ -# -# $Id$ -# -# The PPP package contains the pppd daemon and the chat program. -# This is used for connecting to other machines; often for connecting -# to the Internet via a dial-up or PPPoE connection to an ISP. -# - -PKG="ppp" -PKG_VERSION="2.4.4" -PKG_FILE="ppp-${PKG_VERSION}.tar.gz" -URL="http://samba.org/ftp/ppp/${PKG_FILE}" -MD5="183800762e266132218b204dfb428d29" -for i in PATCH{1..10}; do - unset $i -done - -( cat << "xEOFx" -./configure --prefix=/usr && -make - -make install && -make install-etcppp - -xEOFx -) > tmp diff --git a/custom/examples/961-openssl b/custom/examples/961-openssl deleted file mode 100644 index e928c7c..0000000 --- a/custom/examples/961-openssl +++ /dev/null @@ -1,35 +0,0 @@ -# -# $Id$ -# -# The OpenSSL package contains management tools and libraries -# relating to cryptography. These are useful for providing -# cryptography functions to other packages, notably OpenSSH, -# email applications and web browsers (for accessing HTTPS sites). -# - -PKG="openssl" -PKG_VERSION="0.9.8d" -PKG_FILE="openssl-${PKG_VERSION}.tar.gz" -URL="ftp://ftp.openssl.org/source/${PKG_FILE}" -MD5="8ed1853538e1d05a1f5ada61ebf8bffa" -for i in PATCH{1..10}; do - unset $i -done -PATCH1=" http://www.linuxfromscratch.org/patches/blfs/svn/openssl-0.9.8d-fix_manpages-1.patch" - -( cat << "xEOFx" - -sed -i -e 's/mcpu/march/' config -patch -Np1 -i ../openssl-0.9.8d-fix_manpages-1.patch && -./config --openssldir=/etc/ssl --prefix=/usr shared && -make MANDIR=/usr/share/man - -make MANDIR=/usr/share/man install && -cp -v -r certs /etc/ssl && -install -v -d -m755 /usr/share/doc/openssl-0.9.8d && -cp -v -r doc/{HOWTO,README,*.{txt,html,gif}} \ - /usr/share/doc/openssl-0.9.8d - - -xEOFx -) > tmp diff --git a/custom/examples/963-gpm b/custom/examples/963-gpm deleted file mode 100644 index fce2d68..0000000 --- a/custom/examples/963-gpm +++ /dev/null @@ -1,43 +0,0 @@ -# -# $Id$ -# -PKG="gpm" -PKG_VERSION="1.20.1" -PKG_FILE="gpm-${PKG_VERSION}.tar.bz2" -URL="ftp://arcana.linux.it/pub/gpm/${PKG_FILE}" -MD5="2c63e827d755527950d9d13fe3d87692" -for i in PATCH{1..10}; do - unset $i -done -PATCH1=" http://www.linuxfromscratch.org/patches/blfs/svn/gpm-1.20.1-segfault-1.patch" -PATCH2=" http://www.linuxfromscratch.org/patches/blfs/svn/gpm-1.20.1-silent-1.patch" - - -( cat << "xEOFx" - -patch -Np1 -i ../gpm-1.20.1-segfault-1.patch && -patch -Np1 -i ../gpm-1.20.1-silent-1.patch && -./configure --prefix=/usr --sysconfdir=/etc && -LDFLAGS="-lm" make - -make install && -cp -v conf/gpm-root.conf /etc && -ldconfig - -# The normal cmd to install the boot script for gpm -# --- PUT THIS CMD INSIDE 999-blfs_bootscripts -#make install-gpm - -cat > /etc/sysconfig/mouse << "EOF" -# Begin /etc/sysconfig/mouse - -MDEVICE="/dev/psaux" -PROTOCOL="imps2" -GPMOPTS="" - -# End /etc/sysconfig/mouse -EOF - -xEOFx -) > tmp - diff --git a/custom/examples/963-lynx b/custom/examples/963-lynx deleted file mode 100644 index 45ac0da..0000000 --- a/custom/examples/963-lynx +++ /dev/null @@ -1,32 +0,0 @@ -# -# $Id$ -# -# Lynx is a text based web browser. -# - -PKG="lynx" -PKG_VERSION="2.8.6" -PKG_FILE="lynx${PKG_VERSION}.tar.bz2" -URL="ftp://lynx.isc.org/lynx2.8.6/${PKG_FILE}" -MD5="dc80497b7dda6a28fd80404684d27548" -for i in PATCH{1..10}; do - unset $i -done - -( cat << "xEOFx" - -./configure --prefix=/usr \ - --sysconfdir=/etc/lynx \ - --datadir=/usr/share/doc/lynx-2.8.6 \ - --with-zlib \ - --with-bzlib \ - --with-screen=ncursesw \ - --enable-locale-charset && - -make - -make install-full && -chgrp -v -R root /usr/share/doc/lynx-2.8.6/lynx_doc - -xEOFx -) > tmp diff --git a/custom/examples/964-hdcpcd b/custom/examples/964-hdcpcd deleted file mode 100644 index 9f07569..0000000 --- a/custom/examples/964-hdcpcd +++ /dev/null @@ -1,27 +0,0 @@ -# -# $Id$ -# -# dhcpcd is an implementation of the DHCP client specified in RFC2131. -# This is useful for connecting your computer to a network which uses -# DHCP to assign network addresses. -# - -PKG="dhcpcd" -PKG_VERSION="2.0.8" -PKG_FILE="dhcpcd-${PKG_VERSION}.tar.bz2" -URL="ftp://ftp.osuosl.org/pub/gentoo/distfiles/${PKG_FILE}" -MD5="ec91c33b6d9cb46a42f9564e573fd249" -for i in PATCH{1..10}; do - unset $i -done - -( cat << "xEOFx" - -./configure --prefix="" --mandir=/usr/share/man && -make - -make install && -chmod -v 754 /etc/dhcpc/dhcpcd.exe - -xEOFx -) > tmp diff --git a/custom/examples/965-eject b/custom/examples/965-eject deleted file mode 100644 index 686fe59..0000000 --- a/custom/examples/965-eject +++ /dev/null @@ -1,25 +0,0 @@ -# -# $Id$ -# -# Program for ejecting removable media under software control. -# Can also control the auto-eject feature of some drives and -# can be used to switch CDs on an IDE/ATAPI CD changer. -# - -PKG="eject" -PKG_VERSION="2.10" -PKG_FILE="eject-${PKG_VERSION}.tar.gz" -URL="ftp://sunsite.unc.edu/pub/Linux/utils/disk-management/${PKG_FILE}" -MD5="82e3a7a4d7e3323018c6938015ff25f7" -PATCH1="" - -( cat << "xEOFx" - -./configure --prefix=/usr \ - --enable-default-device=/dev/cdrom \ - --disable-nls -make -make install - -xEOFx -) > tmp diff --git a/custom/examples/997-nasm b/custom/examples/997-nasm deleted file mode 100644 index 514dfb5..0000000 --- a/custom/examples/997-nasm +++ /dev/null @@ -1,33 +0,0 @@ -# -# $Id$ -# NASM (Netwide Assembler) is an 80x86 assembler designed -# for portability and modularity. It includes a -# disassembler as well. - -PKG="nasm" -PKG_VERSION="0.98.39" -PKG_FILE="nasm-${PKG_VERSION}.tar.bz2" -URL="http://downloads.sourceforge.net/nasm/${PKG_FILE}" -MD5="2032ad44c7359f7a9a166a40a633e772" -for i in PATCH{1..10}; do - unset $i -done -PATCH1="http://www.linuxfromscratch.org/patches/blfs/svn/nasm-0.98.39-security_fix-1.patch" - -( cat << "xEOFx" - -patch -Np1 -i ../nasm-0.98.39-security_fix-1.patch && -./configure --prefix=/usr && -make -make -C rdoff/doc -make -C rdoff/doc html - -make install && -make install_rdf && -install -v -m644 rdoff/doc/rdoff.info /usr/share/info && -install -v -m755 -d /usr/share/doc/nasm/html && -install -v -m644 rdoff/doc/v1-v2.txt /usr/share/doc/nasm && -cp -v -R rdoff/doc/rdoff /usr/share/doc/nasm/html - -xEOFx -) > tmp diff --git a/custom/examples/998-syslinux b/custom/examples/998-syslinux deleted file mode 100644 index 59d5f12..0000000 --- a/custom/examples/998-syslinux +++ /dev/null @@ -1,35 +0,0 @@ -# -# $Id$ -# -# SYSLINUX is a collection of boot loaders for the Linux -# operating system which operates off Linux ext2/3 -# filesystems, MS-DOS FAT filesystems, network servers -# using PXE firmware, or from CD-ROMs. The FAT -# filesystem version can be installed from DOS, NT, or -# Linux. -# -# It includes a sophisticated API for add-on "COM32" -# modules, including a significant subset of the -# standard C library. -# -# It also includes MEMDISK, a tool to boot legacy -# operating systems from nontraditional media like PXE -# or CD-ROM. -# - -PKG="syslinux" -PKG_VERSION="3.36" -PKG_FILE="syslinux-$PKG_VERSION}.tar.bz2" -URL="http://www.kernel.org/pub/linux/utils/boot/syslinux/${PKG_FILE}" -MD5="d1bfdaa53d31f572f540be55d1480027" -for i in PATCH{1..10}; do - unset $i -done - -( cat << "xEOFx" - -make -make install - -xEOFx -) > tmp diff --git a/custom/examples/999-blfs_bootscripts b/custom/examples/999-blfs_bootscripts deleted file mode 100644 index 0494477..0000000 --- a/custom/examples/999-blfs_bootscripts +++ /dev/null @@ -1,22 +0,0 @@ -# -# $Id$ -# -PKG="blfs-bootscripts" -PKG_VERSION="20060910" -PKG_FILE="blfs-bootscripts-${PKG_VERSION}.tar.bz2" -URL="http://www.linuxfromscratch.org/blfs/downloads/svn/${PKG_FILE}" -MD5="e1715c58dc694bf474c4468e6bade3ad" -for i in PATCH{1..10}; do - unset $i -done - -( cat << "xEOFx" - -# -# Insert ALL the blfs bootscripts you want to install -# EXAMPLE -# -make install-gpm -make install-service-dhcpcd -xEOFx -) > tmp diff --git a/custom/examples_CLFS-E/950-dropbear b/custom/examples_CLFS-E/950-dropbear deleted file mode 100644 index bd98ae0..0000000 --- a/custom/examples_CLFS-E/950-dropbear +++ /dev/null @@ -1,49 +0,0 @@ -# -# $Id$ -# -# Code taken from CLFS-Embedded -# Chapter 12 Beyond CLFS Embedded -# -# Dropbear is a relatively small SSH 2 server and client. -# Dropbear has a small memory footprint suitable for memory-constrained -# environments, while still having the same features as OpenSSH. It -# does not depend on OpenSSL and it has a MIT style license. Optionally -# it can even be made smaller. -# - -PKG="DROPBEAR" -PKG_VERSION="0.48.1" -PKG_FILE="${PKG}-${PKG_VERSION}.tar.gz" -URL="http://matt.ucc.asn.au/dropbear/releases/${PKG_FILE}" -MD5="ca8e53a766faec831882831364568421" -for i in PATCH{1..10}; do - unset $i -done -PATCH1="http://svn.cross-lfs.org/svn/repos/cross-lfs/branches/clfs-embedded/patches/dropbear-0.48.1-autotool-1.patch" - -( cat << "xEOFx" - -patch -Np1 -i ../dropbear-0.48.1-autotool-1.patch - -cp Makefile.in{,.orig} -sed -e s/@LD@/@CC@/ Makefile.in.orig > Makefile.in - -CC="${CC} ${BUILD}" ./configure --prefix=/usr --host=${CLFS_TARGET} - -cp -v options.h options.h.backup -sed -e "s@/dev/random@/dev/urandom@" options.h.backup > options.h - -make MULTI=1 PROGRAMS="dropbear dbclient dropbearkey dropbearconvert scp" - -make MULTI=1 PROGRAMS="dropbear dbclient dropbearkey dropbearconvert scp" install DESTDIR=${CLFS} -ln -svf ../../usr/bin/dropbearmulti ${CLFS}/usr/sbin/dropbear -ln -svf ../../usr/bin/dropbearmulti ${CLFS}/usr/bin/dbclient -ln -svf ../../usr/bin/dropbearmulti ${CLFS}/usr/bin/dropbearkey -ln -svf ../../usr/bin/dropbearmulti ${CLFS}/usr/bin/dropbearconvert -ln -svf ../../usr/bin/dropbearmulti ${CLFS}/usr/bin/scp - -install -dv ${CLFS}/etc/ssh - - -xEOFx -) > tmp diff --git a/custom/examples_CLFS-E/960-iptables b/custom/examples_CLFS-E/960-iptables deleted file mode 100644 index 17c2627..0000000 --- a/custom/examples_CLFS-E/960-iptables +++ /dev/null @@ -1,42 +0,0 @@ -# -# $Id:$ -# -# Code taken from CLFS-Embedded -# Chapter 12 Beyond CLFS Embedded -# -# iptables is the userspace command line program -# used to configure the Linux firewall. -# - -PKG="iptables" -PKG_VERSION="1.3.7" -PKG_FILE="${PKG}-${PKG_VERSION}.tar.bz2" -URL=" http://www.netfilter.org/projects/iptables/files/iptables-1.3.7.tar.bz2" -MD5="077e886a9c90a11bb47f3d7a4fc4a689" -for i in PATCH{1..10}; do - unset $i -done -PATCH1="http://svn.cross-lfs.org/svn/repos/cross-lfs/branches/clfs-embedded/patches/iptables-1.3.7-do_multi-1.patch" - -( cat << "xEOFx" - -patch -Np1 -i ../iptables-1.3.7-do_multi-1.patch - -make CC="${CC} ${BUILD}" \ - COPT_FLAGS="-Os" \ - LD=${LD} DO_MULTI=1 \ - PREFIX=/usr \ - KERNEL_DIR=${CLFS}/lib/modules/2.6.19.2/build \ - LIBDIR=/lib \ - BINDIR=/sbin - -make CC="${CC} ${BUILD}" \ - COPT_FLAGS="-Os" \ - LD=${LD} DO_MULTI=1 \ - PREFIX=/usr \ - KERNEL_DIR=${CLFS}/lib/modules/2.6.19.2/build \ - LIBDIR=/lib BINDIR=/sbin \ - DESTDIR=${CLFS} install - -xEOFx -) > tmp diff --git a/custom/template b/custom/template deleted file mode 100644 index f55201e..0000000 --- a/custom/template +++ /dev/null @@ -1,20 +0,0 @@ -# -# $Id$ -# -# Any comments you wish to add -# - -PKG="" -PKG_VERSION="" -PKG_FILE="" -URL="" -MD5="" -for i in PATCH{1..10}; do - unset $i -done -PATCH1="" - -( cat << "xEOFx" - -xEOFx -) > tmp