diff options
author | Mike Frysinger <vapier@gentoo.org> | 2002-10-23 19:30:16 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2002-10-23 19:30:16 +0000 |
commit | 450fa780ab14b7e91e00d3a8ee3c0b6ba73f07a9 (patch) | |
tree | 468b135f120cf6b01d153f5d10dffd13948bbb11 | |
parent | Removed bootcd USE flag (diff) | |
download | gentoo-2-450fa780ab14b7e91e00d3a8ee3c0b6ba73f07a9.tar.gz gentoo-2-450fa780ab14b7e91e00d3a8ee3c0b6ba73f07a9.tar.bz2 gentoo-2-450fa780ab14b7e91e00d3a8ee3c0b6ba73f07a9.zip |
Removed bootcd USE flag
-rw-r--r-- | net-misc/wget/ChangeLog | 8 | ||||
-rw-r--r-- | net-misc/wget/wget-1.8.1-r1.ebuild | 6 | ||||
-rw-r--r-- | net-misc/wget/wget-1.8.2.ebuild | 6 | ||||
-rw-r--r-- | scripts/autodist.sh | 2 |
4 files changed, 14 insertions, 8 deletions
diff --git a/net-misc/wget/ChangeLog b/net-misc/wget/ChangeLog index f1debc6485d7..4edd8b441044 100644 --- a/net-misc/wget/ChangeLog +++ b/net-misc/wget/ChangeLog @@ -1,9 +1,12 @@ # ChangeLog for net-misc/wget # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/ChangeLog,v 1.4 2002/07/09 11:36:09 phoenix Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/ChangeLog,v 1.5 2002/10/23 19:29:38 vapier Exp $ *wget-1.8.2 (29 May 2002) + 23 Oct 2002; Mike Frysinger <vapier@gentoo.org> : + Removed bootcd USE flag + 09 Jul 2002; phoen][x <phoenix@gentoo.org> wget-1.8.2.ebuild : Added KEYWORDS, LICENSE, SLOT. @@ -15,6 +18,9 @@ *wget-1.8.1-r1 (22 Feb 2002) + 23 Oct 2002; Mike Frysinger <vapier@gentoo.org> : + Removed bootcd USE flag + 09 Jul 2002; phoen][x <phoenix@gentoo.org> wget-1.8.2.ebuild : Added KEYWORDS, LICENSE, SLOT. diff --git a/net-misc/wget/wget-1.8.1-r1.ebuild b/net-misc/wget/wget-1.8.1-r1.ebuild index fca22e3c6e12..1a6a935f7232 100644 --- a/net-misc/wget/wget-1.8.1-r1.ebuild +++ b/net-misc/wget/wget-1.8.1-r1.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/wget-1.8.1-r1.ebuild,v 1.6 2002/10/05 05:39:23 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/wget-1.8.1-r1.ebuild,v 1.7 2002/10/23 19:29:38 vapier Exp $ -IUSE="ssl nls bootcd static" +IUSE="ssl nls static" NPVER=20011209 S=${WORKDIR}/${P} @@ -41,7 +41,7 @@ src_compile() { } src_install() { - if use build || use bootcd; then + if use build; then insinto /usr dobin ${S}/src/wget return diff --git a/net-misc/wget/wget-1.8.2.ebuild b/net-misc/wget/wget-1.8.2.ebuild index f6748bab77c9..89313a484504 100644 --- a/net-misc/wget/wget-1.8.2.ebuild +++ b/net-misc/wget/wget-1.8.2.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/wget-1.8.2.ebuild,v 1.7 2002/10/05 05:39:23 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/wget-1.8.2.ebuild,v 1.8 2002/10/23 19:29:38 vapier Exp $ -IUSE="ssl nls bootcd static" +IUSE="ssl nls static" NPVER=20011209 S=${WORKDIR}/${P} @@ -41,7 +41,7 @@ src_compile() { } src_install() { - if use build || use bootcd; then + if use build; then insinto /usr dobin ${S}/src/wget return diff --git a/scripts/autodist.sh b/scripts/autodist.sh index 006c20526527..49d40820dc8b 100644 --- a/scripts/autodist.sh +++ b/scripts/autodist.sh @@ -44,7 +44,7 @@ fi [ -z "${KERNEL_SRC}" ] && KERNEL_SRC="/usr/src/`readlink /usr/src/linux`" [ -z "${KERNEL_VERSION}" ] && KERNEL_VERSION="`echo ${KERNEL_SRC} | sed 's,.*-\([0-9]\.[0-9]\.[0-9]\+\(-ac[0-9]\+\)\?\)$,\1,'`" -[ -z "${INITRD_USE}" ] && INITRD_USE="bootcd lvm ext3" +[ -z "${INITRD_USE}" ] && INITRD_USE="lvm ext3" # size of the initrd in kbytes [ -z "${INITRD_SIZE}" ] && INITRD_SIZE=24576 [ -z "${INITRD_BSIZE}" ] && INITRD_BSIZE=4096 |