diff options
Diffstat (limited to 'sys-kernel')
40 files changed, 0 insertions, 1609 deletions
diff --git a/sys-kernel/development-sources/development-sources-2.5.50.ebuild b/sys-kernel/development-sources/development-sources-2.5.50.ebuild deleted file mode 100644 index fd360ca44bd0..000000000000 --- a/sys-kernel/development-sources/development-sources-2.5.50.ebuild +++ /dev/null @@ -1,102 +0,0 @@ -# Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/development-sources/development-sources-2.5.50.ebuild,v 1.2 2002/12/18 00:12:48 lostlogic Exp $ -#OKV=original kernel version, KV=patched kernel version. They can be the same. - -#we use this next variable to avoid duplicating stuff on cvs -GFILESDIR=${PORTDIR}/sys-kernel/linux-sources/files -OKV=${PV} -KV=${PV} -S=${WORKDIR}/linux-${KV} -ETYPE="sources" - -# What's in this kernel? - -# INCLUDED: -# beta 2.5.36 kernel sources - -DESCRIPTION="Full sources for the Gentoo Linux kernel" -SRC_URI="http://www.kernel.org/pub/linux/kernel/v2.5/linux-${OKV}.tar.bz2" -PROVIDE="virtual/linux-sources" -HOMEPAGE="http://www.kernel.org/ http://www.gentoo.org/" -LICENSE="GPL-2" -SLOT="${KV}" -KEYWORDS="x86 ppc" - -if [ $ETYPE = "sources" ] && [ -z "`use build`" ] -then - #console-tools is needed to solve the loadkeys fiasco; binutils version needed to avoid Athlon/PIII/SSE assembler bugs. - DEPEND=">=sys-devel/binutils-2.11.90.0.31" - RDEPEND=">=sys-libs/ncurses-5.2 sys-devel/perl >=sys-apps/modutils-2.4.2 sys-devel/make" -fi - -[ -z "$LINUX_HOSTCFLAGS" ] && LINUX_HOSTCFLAGS="-Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -I${S}/include" - -src_unpack() { - cd ${WORKDIR} - unpack linux-${OKV}.tar.bz2 -# mv linux linux-${KV} || die - cd ${S} - - #sometimes we have icky kernel symbols; this seems to get rid of them - make mrproper || die - - #this file is required for other things to build properly, so we autogenerate it -# make include/linux/version.h || die - - #fix silly permissions in tarball - cd ${WORKDIR} - chown -R 0.0 * - chmod -R a+r-w+X,u+w * - - # Gentoo Linux uses /boot, so fix 'make install' to work properly -# cd ${S} -# mv Makefile Makefile.orig -# sed -e 's:#export\tINSTALL_PATH:export\tINSTALL_PATH:' \ -# Makefile.orig >Makefile || die # test, remove me if Makefile ok -# rm Makefile.orig -} - -src_compile() { - if [ "$ETYPE" = "headers" ] - then - yes "" | make oldconfig - echo "Ignore any errors from the yes command above." - fi -} - -src_install() { - if [ "$ETYPE" = "sources" ] - then - dodir /usr/src - echo ">>> Copying sources..." - mv ${WORKDIR}/* ${D}/usr/src - else - #linux-headers - dodir /usr/include/linux - cp -ax ${S}/include/linux/* ${D}/usr/include/linux - rm -rf ${D}/usr/include/linux/modules - dodir /usr/include/asm - cp -ax ${S}/include/asm-i386/* ${D}/usr/include/asm - fi -} - -pkg_preinst() { - if [ "$ETYPE" = "headers" ] - then - [ -L ${ROOT}usr/include/linux ] && rm ${ROOT}usr/include/linux - [ -L ${ROOT}usr/include/asm ] && rm ${ROOT}usr/include/asm - true - fi -} - -pkg_postinst() { - [ "$ETYPE" = "headers" ] && return - if [ ! -e ${ROOT}usr/src/linux-beta ] - then - - ln -sf linux-${KV} ${ROOT}/usr/src/linux-beta - fi -} - - diff --git a/sys-kernel/development-sources/development-sources-2.5.51.ebuild b/sys-kernel/development-sources/development-sources-2.5.51.ebuild deleted file mode 100644 index b21ff11b5893..000000000000 --- a/sys-kernel/development-sources/development-sources-2.5.51.ebuild +++ /dev/null @@ -1,102 +0,0 @@ -# Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/development-sources/development-sources-2.5.51.ebuild,v 1.2 2002/12/18 00:12:48 lostlogic Exp $ -#OKV=original kernel version, KV=patched kernel version. They can be the same. - -#we use this next variable to avoid duplicating stuff on cvs -GFILESDIR=${PORTDIR}/sys-kernel/linux-sources/files -OKV=${PV} -KV=${PV} -S=${WORKDIR}/linux-${KV} -ETYPE="sources" - -# What's in this kernel? - -# INCLUDED: -# beta 2.5.36 kernel sources - -DESCRIPTION="Full sources for the Gentoo Linux kernel" -SRC_URI="http://www.kernel.org/pub/linux/kernel/v2.5/linux-${OKV}.tar.bz2" -PROVIDE="virtual/linux-sources" -HOMEPAGE="http://www.kernel.org/ http://www.gentoo.org/" -LICENSE="GPL-2" -SLOT="${KV}" -KEYWORDS="x86 ppc" - -if [ $ETYPE = "sources" ] && [ -z "`use build`" ] -then - #console-tools is needed to solve the loadkeys fiasco; binutils version needed to avoid Athlon/PIII/SSE assembler bugs. - DEPEND=">=sys-devel/binutils-2.11.90.0.31" - RDEPEND=">=sys-libs/ncurses-5.2 sys-devel/perl >=sys-apps/modutils-2.4.2 sys-devel/make" -fi - -[ -z "$LINUX_HOSTCFLAGS" ] && LINUX_HOSTCFLAGS="-Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -I${S}/include" - -src_unpack() { - cd ${WORKDIR} - unpack linux-${OKV}.tar.bz2 -# mv linux linux-${KV} || die - cd ${S} - - #sometimes we have icky kernel symbols; this seems to get rid of them - make mrproper || die - - #this file is required for other things to build properly, so we autogenerate it -# make include/linux/version.h || die - - #fix silly permissions in tarball - cd ${WORKDIR} - chown -R 0.0 * - chmod -R a+r-w+X,u+w * - - # Gentoo Linux uses /boot, so fix 'make install' to work properly -# cd ${S} -# mv Makefile Makefile.orig -# sed -e 's:#export\tINSTALL_PATH:export\tINSTALL_PATH:' \ -# Makefile.orig >Makefile || die # test, remove me if Makefile ok -# rm Makefile.orig -} - -src_compile() { - if [ "$ETYPE" = "headers" ] - then - yes "" | make oldconfig - echo "Ignore any errors from the yes command above." - fi -} - -src_install() { - if [ "$ETYPE" = "sources" ] - then - dodir /usr/src - echo ">>> Copying sources..." - mv ${WORKDIR}/* ${D}/usr/src - else - #linux-headers - dodir /usr/include/linux - cp -ax ${S}/include/linux/* ${D}/usr/include/linux - rm -rf ${D}/usr/include/linux/modules - dodir /usr/include/asm - cp -ax ${S}/include/asm-i386/* ${D}/usr/include/asm - fi -} - -pkg_preinst() { - if [ "$ETYPE" = "headers" ] - then - [ -L ${ROOT}usr/include/linux ] && rm ${ROOT}usr/include/linux - [ -L ${ROOT}usr/include/asm ] && rm ${ROOT}usr/include/asm - true - fi -} - -pkg_postinst() { - [ "$ETYPE" = "headers" ] && return - if [ ! -e ${ROOT}usr/src/linux-beta ] - then - - ln -sf linux-${KV} ${ROOT}/usr/src/linux-beta - fi -} - - diff --git a/sys-kernel/development-sources/development-sources-2.5.52.ebuild b/sys-kernel/development-sources/development-sources-2.5.52.ebuild deleted file mode 100644 index 3e1f8bb226ce..000000000000 --- a/sys-kernel/development-sources/development-sources-2.5.52.ebuild +++ /dev/null @@ -1,102 +0,0 @@ -# Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/development-sources/development-sources-2.5.52.ebuild,v 1.2 2002/12/18 00:12:48 lostlogic Exp $ -#OKV=original kernel version, KV=patched kernel version. They can be the same. - -#we use this next variable to avoid duplicating stuff on cvs -GFILESDIR=${PORTDIR}/sys-kernel/linux-sources/files -OKV=${PV} -KV=${PV} -S=${WORKDIR}/linux-${KV} -ETYPE="sources" - -# What's in this kernel? - -# INCLUDED: -# beta 2.5.36 kernel sources - -DESCRIPTION="Full sources for the Gentoo Linux kernel" -SRC_URI="http://www.kernel.org/pub/linux/kernel/v2.5/linux-${OKV}.tar.bz2" -PROVIDE="virtual/linux-sources" -HOMEPAGE="http://www.kernel.org/ http://www.gentoo.org/" -LICENSE="GPL-2" -SLOT="${KV}" -KEYWORDS="x86 ppc" - -if [ $ETYPE = "sources" ] && [ -z "`use build`" ] -then - #console-tools is needed to solve the loadkeys fiasco; binutils version needed to avoid Athlon/PIII/SSE assembler bugs. - DEPEND=">=sys-devel/binutils-2.11.90.0.31" - RDEPEND=">=sys-libs/ncurses-5.2 sys-devel/perl >=sys-apps/modutils-2.4.2 sys-devel/make" -fi - -[ -z "$LINUX_HOSTCFLAGS" ] && LINUX_HOSTCFLAGS="-Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -I${S}/include" - -src_unpack() { - cd ${WORKDIR} - unpack linux-${OKV}.tar.bz2 -# mv linux linux-${KV} || die - cd ${S} - - #sometimes we have icky kernel symbols; this seems to get rid of them - make mrproper || die - - #this file is required for other things to build properly, so we autogenerate it -# make include/linux/version.h || die - - #fix silly permissions in tarball - cd ${WORKDIR} - chown -R 0.0 * - chmod -R a+r-w+X,u+w * - - # Gentoo Linux uses /boot, so fix 'make install' to work properly -# cd ${S} -# mv Makefile Makefile.orig -# sed -e 's:#export\tINSTALL_PATH:export\tINSTALL_PATH:' \ -# Makefile.orig >Makefile || die # test, remove me if Makefile ok -# rm Makefile.orig -} - -src_compile() { - if [ "$ETYPE" = "headers" ] - then - yes "" | make oldconfig - echo "Ignore any errors from the yes command above." - fi -} - -src_install() { - if [ "$ETYPE" = "sources" ] - then - dodir /usr/src - echo ">>> Copying sources..." - mv ${WORKDIR}/* ${D}/usr/src - else - #linux-headers - dodir /usr/include/linux - cp -ax ${S}/include/linux/* ${D}/usr/include/linux - rm -rf ${D}/usr/include/linux/modules - dodir /usr/include/asm - cp -ax ${S}/include/asm-i386/* ${D}/usr/include/asm - fi -} - -pkg_preinst() { - if [ "$ETYPE" = "headers" ] - then - [ -L ${ROOT}usr/include/linux ] && rm ${ROOT}usr/include/linux - [ -L ${ROOT}usr/include/asm ] && rm ${ROOT}usr/include/asm - true - fi -} - -pkg_postinst() { - [ "$ETYPE" = "headers" ] && return - if [ ! -e ${ROOT}usr/src/linux-beta ] - then - - ln -sf linux-${KV} ${ROOT}/usr/src/linux-beta - fi -} - - diff --git a/sys-kernel/development-sources/development-sources-2.5.53.ebuild b/sys-kernel/development-sources/development-sources-2.5.53.ebuild deleted file mode 100644 index c166dd22e4fa..000000000000 --- a/sys-kernel/development-sources/development-sources-2.5.53.ebuild +++ /dev/null @@ -1,102 +0,0 @@ -# Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/development-sources/development-sources-2.5.53.ebuild,v 1.1 2002/12/24 07:51:21 lostlogic Exp $ -#OKV=original kernel version, KV=patched kernel version. They can be the same. - -#we use this next variable to avoid duplicating stuff on cvs -GFILESDIR=${PORTDIR}/sys-kernel/linux-sources/files -OKV=${PV} -KV=${PV} -S=${WORKDIR}/linux-${KV} -ETYPE="sources" - -# What's in this kernel? - -# INCLUDED: -# beta 2.5.36 kernel sources - -DESCRIPTION="Full sources for the Gentoo Linux kernel" -SRC_URI="http://www.kernel.org/pub/linux/kernel/v2.5/linux-${OKV}.tar.bz2" -PROVIDE="virtual/linux-sources" -HOMEPAGE="http://www.kernel.org/ http://www.gentoo.org/" -LICENSE="GPL-2" -SLOT="${KV}" -KEYWORDS="x86 ppc" - -if [ $ETYPE = "sources" ] && [ -z "`use build`" ] -then - #console-tools is needed to solve the loadkeys fiasco; binutils version needed to avoid Athlon/PIII/SSE assembler bugs. - DEPEND=">=sys-devel/binutils-2.11.90.0.31" - RDEPEND=">=sys-libs/ncurses-5.2 sys-devel/perl >=sys-apps/modutils-2.4.2 sys-devel/make" -fi - -[ -z "$LINUX_HOSTCFLAGS" ] && LINUX_HOSTCFLAGS="-Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -I${S}/include" - -src_unpack() { - cd ${WORKDIR} - unpack linux-${OKV}.tar.bz2 -# mv linux linux-${KV} || die - cd ${S} - - #sometimes we have icky kernel symbols; this seems to get rid of them - make mrproper || die - - #this file is required for other things to build properly, so we autogenerate it -# make include/linux/version.h || die - - #fix silly permissions in tarball - cd ${WORKDIR} - chown -R 0.0 * - chmod -R a+r-w+X,u+w * - - # Gentoo Linux uses /boot, so fix 'make install' to work properly -# cd ${S} -# mv Makefile Makefile.orig -# sed -e 's:#export\tINSTALL_PATH:export\tINSTALL_PATH:' \ -# Makefile.orig >Makefile || die # test, remove me if Makefile ok -# rm Makefile.orig -} - -src_compile() { - if [ "$ETYPE" = "headers" ] - then - yes "" | make oldconfig - echo "Ignore any errors from the yes command above." - fi -} - -src_install() { - if [ "$ETYPE" = "sources" ] - then - dodir /usr/src - echo ">>> Copying sources..." - mv ${WORKDIR}/* ${D}/usr/src - else - #linux-headers - dodir /usr/include/linux - cp -ax ${S}/include/linux/* ${D}/usr/include/linux - rm -rf ${D}/usr/include/linux/modules - dodir /usr/include/asm - cp -ax ${S}/include/asm-i386/* ${D}/usr/include/asm - fi -} - -pkg_preinst() { - if [ "$ETYPE" = "headers" ] - then - [ -L ${ROOT}usr/include/linux ] && rm ${ROOT}usr/include/linux - [ -L ${ROOT}usr/include/asm ] && rm ${ROOT}usr/include/asm - true - fi -} - -pkg_postinst() { - [ "$ETYPE" = "headers" ] && return - if [ ! -e ${ROOT}usr/src/linux-beta ] - then - - ln -sf linux-${KV} ${ROOT}/usr/src/linux-beta - fi -} - - diff --git a/sys-kernel/development-sources/development-sources-2.5.54.ebuild b/sys-kernel/development-sources/development-sources-2.5.54.ebuild deleted file mode 100644 index 550bec40b5fc..000000000000 --- a/sys-kernel/development-sources/development-sources-2.5.54.ebuild +++ /dev/null @@ -1,102 +0,0 @@ -# Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/development-sources/development-sources-2.5.54.ebuild,v 1.1 2003/01/02 07:49:51 lostlogic Exp $ -#OKV=original kernel version, KV=patched kernel version. They can be the same. - -#we use this next variable to avoid duplicating stuff on cvs -GFILESDIR=${PORTDIR}/sys-kernel/linux-sources/files -OKV=${PV} -KV=${PV} -S=${WORKDIR}/linux-${KV} -ETYPE="sources" - -# What's in this kernel? - -# INCLUDED: -# beta 2.5.36 kernel sources - -DESCRIPTION="Full sources for the Gentoo Linux kernel" -SRC_URI="http://www.kernel.org/pub/linux/kernel/v2.5/linux-${OKV}.tar.bz2" -PROVIDE="virtual/linux-sources" -HOMEPAGE="http://www.kernel.org/ http://www.gentoo.org/" -LICENSE="GPL-2" -SLOT="${KV}" -KEYWORDS="x86 ppc" - -if [ $ETYPE = "sources" ] && [ -z "`use build`" ] -then - #console-tools is needed to solve the loadkeys fiasco; binutils version needed to avoid Athlon/PIII/SSE assembler bugs. - DEPEND=">=sys-devel/binutils-2.11.90.0.31" - RDEPEND=">=sys-libs/ncurses-5.2 sys-devel/perl >=sys-apps/modutils-2.4.2 sys-devel/make" -fi - -[ -z "$LINUX_HOSTCFLAGS" ] && LINUX_HOSTCFLAGS="-Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -I${S}/include" - -src_unpack() { - cd ${WORKDIR} - unpack linux-${OKV}.tar.bz2 -# mv linux linux-${KV} || die - cd ${S} - - #sometimes we have icky kernel symbols; this seems to get rid of them - make mrproper || die - - #this file is required for other things to build properly, so we autogenerate it -# make include/linux/version.h || die - - #fix silly permissions in tarball - cd ${WORKDIR} - chown -R 0.0 * - chmod -R a+r-w+X,u+w * - - # Gentoo Linux uses /boot, so fix 'make install' to work properly -# cd ${S} -# mv Makefile Makefile.orig -# sed -e 's:#export\tINSTALL_PATH:export\tINSTALL_PATH:' \ -# Makefile.orig >Makefile || die # test, remove me if Makefile ok -# rm Makefile.orig -} - -src_compile() { - if [ "$ETYPE" = "headers" ] - then - yes "" | make oldconfig - echo "Ignore any errors from the yes command above." - fi -} - -src_install() { - if [ "$ETYPE" = "sources" ] - then - dodir /usr/src - echo ">>> Copying sources..." - mv ${WORKDIR}/* ${D}/usr/src - else - #linux-headers - dodir /usr/include/linux - cp -ax ${S}/include/linux/* ${D}/usr/include/linux - rm -rf ${D}/usr/include/linux/modules - dodir /usr/include/asm - cp -ax ${S}/include/asm-i386/* ${D}/usr/include/asm - fi -} - -pkg_preinst() { - if [ "$ETYPE" = "headers" ] - then - [ -L ${ROOT}usr/include/linux ] && rm ${ROOT}usr/include/linux - [ -L ${ROOT}usr/include/asm ] && rm ${ROOT}usr/include/asm - true - fi -} - -pkg_postinst() { - [ "$ETYPE" = "headers" ] && return - if [ ! -e ${ROOT}usr/src/linux-beta ] - then - - ln -sf linux-${KV} ${ROOT}/usr/src/linux-beta - fi -} - - diff --git a/sys-kernel/development-sources/development-sources-2.5.55.ebuild b/sys-kernel/development-sources/development-sources-2.5.55.ebuild deleted file mode 100644 index 17c6f2f56dc0..000000000000 --- a/sys-kernel/development-sources/development-sources-2.5.55.ebuild +++ /dev/null @@ -1,102 +0,0 @@ -# Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/development-sources/development-sources-2.5.55.ebuild,v 1.1 2003/01/09 04:54:59 lostlogic Exp $ -#OKV=original kernel version, KV=patched kernel version. They can be the same. - -#we use this next variable to avoid duplicating stuff on cvs -GFILESDIR=${PORTDIR}/sys-kernel/linux-sources/files -OKV=${PV} -KV=${PV} -S=${WORKDIR}/linux-${KV} -ETYPE="sources" - -# What's in this kernel? - -# INCLUDED: -# beta 2.5.36 kernel sources - -DESCRIPTION="Full sources for the Gentoo Linux kernel" -SRC_URI="http://www.kernel.org/pub/linux/kernel/v2.5/linux-${OKV}.tar.bz2" -PROVIDE="virtual/linux-sources" -HOMEPAGE="http://www.kernel.org/ http://www.gentoo.org/" -LICENSE="GPL-2" -SLOT="${KV}" -KEYWORDS="x86 ppc" - -if [ $ETYPE = "sources" ] && [ -z "`use build`" ] -then - #console-tools is needed to solve the loadkeys fiasco; binutils version needed to avoid Athlon/PIII/SSE assembler bugs. - DEPEND=">=sys-devel/binutils-2.11.90.0.31" - RDEPEND=">=sys-libs/ncurses-5.2 sys-devel/perl >=sys-apps/modutils-2.4.2 sys-devel/make" -fi - -[ -z "$LINUX_HOSTCFLAGS" ] && LINUX_HOSTCFLAGS="-Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -I${S}/include" - -src_unpack() { - cd ${WORKDIR} - unpack linux-${OKV}.tar.bz2 -# mv linux linux-${KV} || die - cd ${S} - - #sometimes we have icky kernel symbols; this seems to get rid of them - make mrproper || die - - #this file is required for other things to build properly, so we autogenerate it -# make include/linux/version.h || die - - #fix silly permissions in tarball - cd ${WORKDIR} - chown -R 0.0 * - chmod -R a+r-w+X,u+w * - - # Gentoo Linux uses /boot, so fix 'make install' to work properly -# cd ${S} -# mv Makefile Makefile.orig -# sed -e 's:#export\tINSTALL_PATH:export\tINSTALL_PATH:' \ -# Makefile.orig >Makefile || die # test, remove me if Makefile ok -# rm Makefile.orig -} - -src_compile() { - if [ "$ETYPE" = "headers" ] - then - yes "" | make oldconfig - echo "Ignore any errors from the yes command above." - fi -} - -src_install() { - if [ "$ETYPE" = "sources" ] - then - dodir /usr/src - echo ">>> Copying sources..." - mv ${WORKDIR}/* ${D}/usr/src - else - #linux-headers - dodir /usr/include/linux - cp -ax ${S}/include/linux/* ${D}/usr/include/linux - rm -rf ${D}/usr/include/linux/modules - dodir /usr/include/asm - cp -ax ${S}/include/asm-i386/* ${D}/usr/include/asm - fi -} - -pkg_preinst() { - if [ "$ETYPE" = "headers" ] - then - [ -L ${ROOT}usr/include/linux ] && rm ${ROOT}usr/include/linux - [ -L ${ROOT}usr/include/asm ] && rm ${ROOT}usr/include/asm - true - fi -} - -pkg_postinst() { - [ "$ETYPE" = "headers" ] && return - if [ ! -e ${ROOT}usr/src/linux-beta ] - then - - ln -sf linux-${KV} ${ROOT}/usr/src/linux-beta - fi -} - - diff --git a/sys-kernel/development-sources/development-sources-2.5.56.ebuild b/sys-kernel/development-sources/development-sources-2.5.56.ebuild deleted file mode 100644 index 408623599cf9..000000000000 --- a/sys-kernel/development-sources/development-sources-2.5.56.ebuild +++ /dev/null @@ -1,102 +0,0 @@ -# Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/development-sources/development-sources-2.5.56.ebuild,v 1.1 2003/01/10 21:12:56 lostlogic Exp $ -#OKV=original kernel version, KV=patched kernel version. They can be the same. - -#we use this next variable to avoid duplicating stuff on cvs -GFILESDIR=${PORTDIR}/sys-kernel/linux-sources/files -OKV=${PV} -KV=${PV} -S=${WORKDIR}/linux-${KV} -ETYPE="sources" - -# What's in this kernel? - -# INCLUDED: -# beta 2.5.36 kernel sources - -DESCRIPTION="Full sources for the Gentoo Linux kernel" -SRC_URI="http://www.kernel.org/pub/linux/kernel/v2.5/linux-${OKV}.tar.bz2" -PROVIDE="virtual/linux-sources" -HOMEPAGE="http://www.kernel.org/ http://www.gentoo.org/" -LICENSE="GPL-2" -SLOT="${KV}" -KEYWORDS="x86 ppc" - -if [ $ETYPE = "sources" ] && [ -z "`use build`" ] -then - #console-tools is needed to solve the loadkeys fiasco; binutils version needed to avoid Athlon/PIII/SSE assembler bugs. - DEPEND=">=sys-devel/binutils-2.11.90.0.31" - RDEPEND=">=sys-libs/ncurses-5.2 sys-devel/perl >=sys-apps/modutils-2.4.2 sys-devel/make" -fi - -[ -z "$LINUX_HOSTCFLAGS" ] && LINUX_HOSTCFLAGS="-Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -I${S}/include" - -src_unpack() { - cd ${WORKDIR} - unpack linux-${OKV}.tar.bz2 -# mv linux linux-${KV} || die - cd ${S} - - #sometimes we have icky kernel symbols; this seems to get rid of them - make mrproper || die - - #this file is required for other things to build properly, so we autogenerate it -# make include/linux/version.h || die - - #fix silly permissions in tarball - cd ${WORKDIR} - chown -R 0.0 * - chmod -R a+r-w+X,u+w * - - # Gentoo Linux uses /boot, so fix 'make install' to work properly -# cd ${S} -# mv Makefile Makefile.orig -# sed -e 's:#export\tINSTALL_PATH:export\tINSTALL_PATH:' \ -# Makefile.orig >Makefile || die # test, remove me if Makefile ok -# rm Makefile.orig -} - -src_compile() { - if [ "$ETYPE" = "headers" ] - then - yes "" | make oldconfig - echo "Ignore any errors from the yes command above." - fi -} - -src_install() { - if [ "$ETYPE" = "sources" ] - then - dodir /usr/src - echo ">>> Copying sources..." - mv ${WORKDIR}/* ${D}/usr/src - else - #linux-headers - dodir /usr/include/linux - cp -ax ${S}/include/linux/* ${D}/usr/include/linux - rm -rf ${D}/usr/include/linux/modules - dodir /usr/include/asm - cp -ax ${S}/include/asm-i386/* ${D}/usr/include/asm - fi -} - -pkg_preinst() { - if [ "$ETYPE" = "headers" ] - then - [ -L ${ROOT}usr/include/linux ] && rm ${ROOT}usr/include/linux - [ -L ${ROOT}usr/include/asm ] && rm ${ROOT}usr/include/asm - true - fi -} - -pkg_postinst() { - [ "$ETYPE" = "headers" ] && return - if [ ! -e ${ROOT}usr/src/linux-beta ] - then - - ln -sf linux-${KV} ${ROOT}/usr/src/linux-beta - fi -} - - diff --git a/sys-kernel/development-sources/development-sources-2.5.57.ebuild b/sys-kernel/development-sources/development-sources-2.5.57.ebuild deleted file mode 100644 index a8769d0387f3..000000000000 --- a/sys-kernel/development-sources/development-sources-2.5.57.ebuild +++ /dev/null @@ -1,102 +0,0 @@ -# Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/development-sources/development-sources-2.5.57.ebuild,v 1.1 2003/01/14 00:10:35 lostlogic Exp $ -#OKV=original kernel version, KV=patched kernel version. They can be the same. - -#we use this next variable to avoid duplicating stuff on cvs -GFILESDIR=${PORTDIR}/sys-kernel/linux-sources/files -OKV=${PV} -KV=${PV} -S=${WORKDIR}/linux-${KV} -ETYPE="sources" - -# What's in this kernel? - -# INCLUDED: -# beta 2.5.36 kernel sources - -DESCRIPTION="Full sources for the Gentoo Linux kernel" -SRC_URI="http://www.kernel.org/pub/linux/kernel/v2.5/linux-${OKV}.tar.bz2" -PROVIDE="virtual/linux-sources" -HOMEPAGE="http://www.kernel.org/ http://www.gentoo.org/" -LICENSE="GPL-2" -SLOT="${KV}" -KEYWORDS="x86 ppc" - -if [ $ETYPE = "sources" ] && [ -z "`use build`" ] -then - #console-tools is needed to solve the loadkeys fiasco; binutils version needed to avoid Athlon/PIII/SSE assembler bugs. - DEPEND=">=sys-devel/binutils-2.11.90.0.31" - RDEPEND=">=sys-libs/ncurses-5.2 sys-devel/perl >=sys-apps/modutils-2.4.2 sys-devel/make" -fi - -[ -z "$LINUX_HOSTCFLAGS" ] && LINUX_HOSTCFLAGS="-Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -I${S}/include" - -src_unpack() { - cd ${WORKDIR} - unpack linux-${OKV}.tar.bz2 -# mv linux linux-${KV} || die - cd ${S} - - #sometimes we have icky kernel symbols; this seems to get rid of them - make mrproper || die - - #this file is required for other things to build properly, so we autogenerate it -# make include/linux/version.h || die - - #fix silly permissions in tarball - cd ${WORKDIR} - chown -R 0.0 * - chmod -R a+r-w+X,u+w * - - # Gentoo Linux uses /boot, so fix 'make install' to work properly -# cd ${S} -# mv Makefile Makefile.orig -# sed -e 's:#export\tINSTALL_PATH:export\tINSTALL_PATH:' \ -# Makefile.orig >Makefile || die # test, remove me if Makefile ok -# rm Makefile.orig -} - -src_compile() { - if [ "$ETYPE" = "headers" ] - then - yes "" | make oldconfig - echo "Ignore any errors from the yes command above." - fi -} - -src_install() { - if [ "$ETYPE" = "sources" ] - then - dodir /usr/src - echo ">>> Copying sources..." - mv ${WORKDIR}/* ${D}/usr/src - else - #linux-headers - dodir /usr/include/linux - cp -ax ${S}/include/linux/* ${D}/usr/include/linux - rm -rf ${D}/usr/include/linux/modules - dodir /usr/include/asm - cp -ax ${S}/include/asm-i386/* ${D}/usr/include/asm - fi -} - -pkg_preinst() { - if [ "$ETYPE" = "headers" ] - then - [ -L ${ROOT}usr/include/linux ] && rm ${ROOT}usr/include/linux - [ -L ${ROOT}usr/include/asm ] && rm ${ROOT}usr/include/asm - true - fi -} - -pkg_postinst() { - [ "$ETYPE" = "headers" ] && return - if [ ! -e ${ROOT}usr/src/linux-beta ] - then - - ln -sf linux-${KV} ${ROOT}/usr/src/linux-beta - fi -} - - diff --git a/sys-kernel/development-sources/files/digest-development-sources-2.5.50 b/sys-kernel/development-sources/files/digest-development-sources-2.5.50 deleted file mode 100644 index b2458d542aa8..000000000000 --- a/sys-kernel/development-sources/files/digest-development-sources-2.5.50 +++ /dev/null @@ -1 +0,0 @@ -MD5 29efe7ab8b0b919f31c38c4ae3b764c7 linux-2.5.50.tar.bz2 31189888 diff --git a/sys-kernel/development-sources/files/digest-development-sources-2.5.51 b/sys-kernel/development-sources/files/digest-development-sources-2.5.51 deleted file mode 100644 index 5315912120c7..000000000000 --- a/sys-kernel/development-sources/files/digest-development-sources-2.5.51 +++ /dev/null @@ -1 +0,0 @@ -MD5 2300b7b7d2ce4c017fe6dae49717fd9a linux-2.5.51.tar.bz2 31126764 diff --git a/sys-kernel/development-sources/files/digest-development-sources-2.5.52 b/sys-kernel/development-sources/files/digest-development-sources-2.5.52 deleted file mode 100644 index 090a08388c34..000000000000 --- a/sys-kernel/development-sources/files/digest-development-sources-2.5.52 +++ /dev/null @@ -1 +0,0 @@ -MD5 8d69fc81b029ec7f19ee6080929d1fe8 linux-2.5.52.tar.bz2 31173836 diff --git a/sys-kernel/development-sources/files/digest-development-sources-2.5.53 b/sys-kernel/development-sources/files/digest-development-sources-2.5.53 deleted file mode 100644 index 86e78406c666..000000000000 --- a/sys-kernel/development-sources/files/digest-development-sources-2.5.53 +++ /dev/null @@ -1 +0,0 @@ -MD5 e1da8dbda1a51e05c2eaf3d26c0ebacd linux-2.5.53.tar.bz2 31457681 diff --git a/sys-kernel/development-sources/files/digest-development-sources-2.5.54 b/sys-kernel/development-sources/files/digest-development-sources-2.5.54 deleted file mode 100644 index 9d7c0e1aefbb..000000000000 --- a/sys-kernel/development-sources/files/digest-development-sources-2.5.54 +++ /dev/null @@ -1 +0,0 @@ -MD5 13d1fcc77b9245b09f2317e277c99cdc linux-2.5.54.tar.bz2 31556230 diff --git a/sys-kernel/development-sources/files/digest-development-sources-2.5.55 b/sys-kernel/development-sources/files/digest-development-sources-2.5.55 deleted file mode 100644 index 0592123d54ad..000000000000 --- a/sys-kernel/development-sources/files/digest-development-sources-2.5.55 +++ /dev/null @@ -1 +0,0 @@ -MD5 b588bd723c595bec509caf30a2d64867 linux-2.5.55.tar.bz2 31509109 diff --git a/sys-kernel/development-sources/files/digest-development-sources-2.5.56 b/sys-kernel/development-sources/files/digest-development-sources-2.5.56 deleted file mode 100644 index 95f538a32c2a..000000000000 --- a/sys-kernel/development-sources/files/digest-development-sources-2.5.56 +++ /dev/null @@ -1 +0,0 @@ -MD5 21c4dc7ef27395097edc8eb5ff47bbd7 linux-2.5.56.tar.bz2 31562012 diff --git a/sys-kernel/development-sources/files/digest-development-sources-2.5.57 b/sys-kernel/development-sources/files/digest-development-sources-2.5.57 deleted file mode 100644 index 370053ba54e9..000000000000 --- a/sys-kernel/development-sources/files/digest-development-sources-2.5.57 +++ /dev/null @@ -1 +0,0 @@ -MD5 ea388e66e9e5ba373c7070e73cd9b19e linux-2.5.57.tar.bz2 31483124 diff --git a/sys-kernel/usermode-sources/files/digest-usermode-sources-2.4.18-r1 b/sys-kernel/usermode-sources/files/digest-usermode-sources-2.4.18-r1 deleted file mode 100644 index 32e99373d31a..000000000000 --- a/sys-kernel/usermode-sources/files/digest-usermode-sources-2.4.18-r1 +++ /dev/null @@ -1,2 +0,0 @@ -MD5 ad92859baaa837847b34d842b9f39d38 linux-2.4.18.tar.bz2 24161675 -MD5 b55ead34476cefa8825b2c2660516e9c uml-patch-2.4.18-2.bz2 114495 diff --git a/sys-kernel/usermode-sources/files/digest-usermode-sources-2.4.18-r2 b/sys-kernel/usermode-sources/files/digest-usermode-sources-2.4.18-r2 deleted file mode 100644 index 1212d8e365a7..000000000000 --- a/sys-kernel/usermode-sources/files/digest-usermode-sources-2.4.18-r2 +++ /dev/null @@ -1,2 +0,0 @@ -MD5 ad92859baaa837847b34d842b9f39d38 linux-2.4.18.tar.bz2 24161675 -MD5 7690aef828dc8528b873cbab851f8446 uml-patch-2.4.18-37.bz2 134965 diff --git a/sys-kernel/usermode-sources/files/digest-usermode-sources-2.4.19-r20 b/sys-kernel/usermode-sources/files/digest-usermode-sources-2.4.19-r20 deleted file mode 100644 index 26ee541a3794..000000000000 --- a/sys-kernel/usermode-sources/files/digest-usermode-sources-2.4.19-r20 +++ /dev/null @@ -1,2 +0,0 @@ -MD5 2bb60b7594a416f2c593923ce446160b linux-2.4.19.tar.bz2 26042494 -MD5 081f0e090b037e1ed3f64f643865db22 uml-patch-2.4.19-20.bz2 158696 diff --git a/sys-kernel/usermode-sources/files/digest-usermode-sources-2.4.19-r21 b/sys-kernel/usermode-sources/files/digest-usermode-sources-2.4.19-r21 deleted file mode 100644 index 4bb7d2a09ae4..000000000000 --- a/sys-kernel/usermode-sources/files/digest-usermode-sources-2.4.19-r21 +++ /dev/null @@ -1,2 +0,0 @@ -MD5 2bb60b7594a416f2c593923ce446160b linux-2.4.19.tar.bz2 26042494 -MD5 03e4540cb4352aae2a635bf140a3f465 uml-patch-2.4.19-21.bz2 158938 diff --git a/sys-kernel/usermode-sources/files/digest-usermode-sources-2.4.19-r22 b/sys-kernel/usermode-sources/files/digest-usermode-sources-2.4.19-r22 deleted file mode 100644 index a7570cd0c0a5..000000000000 --- a/sys-kernel/usermode-sources/files/digest-usermode-sources-2.4.19-r22 +++ /dev/null @@ -1,2 +0,0 @@ -MD5 2bb60b7594a416f2c593923ce446160b linux-2.4.19.tar.bz2 26042494 -MD5 5a801b0f4e05d66ab9b347590b910736 uml-patch-2.4.19-22.bz2 159242 diff --git a/sys-kernel/usermode-sources/files/digest-usermode-sources-2.4.19-r23 b/sys-kernel/usermode-sources/files/digest-usermode-sources-2.4.19-r23 deleted file mode 100644 index c2ccab8f53bc..000000000000 --- a/sys-kernel/usermode-sources/files/digest-usermode-sources-2.4.19-r23 +++ /dev/null @@ -1,2 +0,0 @@ -MD5 2bb60b7594a416f2c593923ce446160b linux-2.4.19.tar.bz2 26042494 -MD5 7978866af02235c5cb15ff72f60fca18 uml-patch-2.4.19-23.bz2 161413 diff --git a/sys-kernel/usermode-sources/files/digest-usermode-sources-2.4.19-r24 b/sys-kernel/usermode-sources/files/digest-usermode-sources-2.4.19-r24 deleted file mode 100644 index 23ad60363145..000000000000 --- a/sys-kernel/usermode-sources/files/digest-usermode-sources-2.4.19-r24 +++ /dev/null @@ -1,2 +0,0 @@ -MD5 2bb60b7594a416f2c593923ce446160b linux-2.4.19.tar.bz2 26042494 -MD5 62a5bc033ecef3783d68f2e01c02d2a6 uml-patch-2.4.19-24.bz2 161337 diff --git a/sys-kernel/usermode-sources/files/digest-usermode-sources-2.4.19-r25 b/sys-kernel/usermode-sources/files/digest-usermode-sources-2.4.19-r25 deleted file mode 100644 index 3bd5b019be16..000000000000 --- a/sys-kernel/usermode-sources/files/digest-usermode-sources-2.4.19-r25 +++ /dev/null @@ -1,2 +0,0 @@ -MD5 2bb60b7594a416f2c593923ce446160b linux-2.4.19.tar.bz2 26042494 -MD5 d860d92be065828caf5861fb95c00564 uml-patch-2.4.19-25.bz2 165187 diff --git a/sys-kernel/usermode-sources/files/digest-usermode-sources-2.4.19-r26 b/sys-kernel/usermode-sources/files/digest-usermode-sources-2.4.19-r26 deleted file mode 100644 index 7a4683d01f33..000000000000 --- a/sys-kernel/usermode-sources/files/digest-usermode-sources-2.4.19-r26 +++ /dev/null @@ -1,2 +0,0 @@ -MD5 2bb60b7594a416f2c593923ce446160b linux-2.4.19.tar.bz2 26042494 -MD5 576d63a8a3ca4295d1931bbbc2b30434 uml-patch-2.4.19-26.bz2 165321 diff --git a/sys-kernel/usermode-sources/files/digest-usermode-sources-2.4.19-r27 b/sys-kernel/usermode-sources/files/digest-usermode-sources-2.4.19-r27 deleted file mode 100644 index 55f426446a0d..000000000000 --- a/sys-kernel/usermode-sources/files/digest-usermode-sources-2.4.19-r27 +++ /dev/null @@ -1,2 +0,0 @@ -MD5 2bb60b7594a416f2c593923ce446160b linux-2.4.19.tar.bz2 26042494 -MD5 79dd09decafbb993c8bd59a116a33c0f uml-patch-2.4.19-27.bz2 165773 diff --git a/sys-kernel/usermode-sources/files/digest-usermode-sources-2.4.19-r28 b/sys-kernel/usermode-sources/files/digest-usermode-sources-2.4.19-r28 deleted file mode 100644 index 16698d86bd48..000000000000 --- a/sys-kernel/usermode-sources/files/digest-usermode-sources-2.4.19-r28 +++ /dev/null @@ -1,2 +0,0 @@ -MD5 2bb60b7594a416f2c593923ce446160b linux-2.4.19.tar.bz2 26042494 -MD5 30efc9788e58f34eaa381d7a6ee6eabf uml-patch-2.4.19-28.bz2 166732 diff --git a/sys-kernel/usermode-sources/files/digest-usermode-sources-2.4.19-r29 b/sys-kernel/usermode-sources/files/digest-usermode-sources-2.4.19-r29 deleted file mode 100644 index 08600b92a6ac..000000000000 --- a/sys-kernel/usermode-sources/files/digest-usermode-sources-2.4.19-r29 +++ /dev/null @@ -1,2 +0,0 @@ -MD5 2bb60b7594a416f2c593923ce446160b linux-2.4.19.tar.bz2 26042494 -MD5 125632cb2b530f00a79d8e558ed94caf uml-patch-2.4.19-29.bz2 167991 diff --git a/sys-kernel/usermode-sources/usermode-sources-2.4.18-r1.ebuild b/sys-kernel/usermode-sources/usermode-sources-2.4.18-r1.ebuild deleted file mode 100644 index 17b2cad77301..000000000000 --- a/sys-kernel/usermode-sources/usermode-sources-2.4.18-r1.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/usermode-sources/usermode-sources-2.4.18-r1.ebuild,v 1.9 2002/12/18 00:12:48 lostlogic Exp $ -#OKV=original kernel version, KV=patched kernel version. They can be the same. - -#we use this next variable to avoid duplicating stuff on cvs -GFILESDIR=${PORTDIR}/sys-kernel/linux-sources/files -OKV=${PV} -KV=${PVR} -UML_PATCH="uml-patch-${PV}-2" -S=${WORKDIR}/linux-${KV} - -# What's in this kernel? - -# INCLUDED: -# User mode linux patch -# http://user-mode-linux.sourceforge.net -# UML clashes with the current Gentoo patch, so I've ignored it for now. - -DESCRIPTION="Full (vanilla) sources for the User Mode Linux kernel" -SRC_URI="http://www.kernel.org/pub/linux/kernel/v2.4/linux-${OKV}.tar.bz2 http://uml-pub.ists.dartmouth.edu/uml/${UML_PATCH}.bz2" -HOMEPAGE="http://www.kernel.org/ http://user-mode-linux.sourceforge.net" -LICENSE="GPL-2" -SLOT="${KV}" -KEYWORDS="x86 -ppc -sparc -alpha" - -#console-tools is needed to solve the loadkeys fiasco. -#binutils version needed to avoid Athlon/PIII/SSE assembler bugs. -DEPEND=">=sys-devel/binutils-2.11.90.0.31 sys-devel/perl" -RDEPEND=">=sys-libs/ncurses-5.2" - -[ -z "$LINUX_HOSTCFLAGS" ] && LINUX_HOSTCFLAGS="-Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -I${S}/include" - -src_unpack() { - - cd ${WORKDIR} - unpack linux-${OKV}.tar.bz2 - mv linux linux-${KV} || die - cd ${S} - bzcat ${DISTDIR}/${UML_PATCH}.bz2 | patch -d ${S} -p1 - echo "Preparing for compilation..." - - #fix silly permissions in tarball - cd ${WORKDIR} - chown -R 0.0 * - chmod -R a+r-w+X,u+w * - -} - -src_compile() { - echo "Nothing to compile. That's up to the user" -} - -src_install() { - dodir /usr/src/uml - cd ${S} - echo ">>> Copying sources..." - mv ${WORKDIR}/* ${D}/usr/src/uml - cd ${D}/usr/src/uml - ln -sf linux-${KV} linux -} - - diff --git a/sys-kernel/usermode-sources/usermode-sources-2.4.18-r2.ebuild b/sys-kernel/usermode-sources/usermode-sources-2.4.18-r2.ebuild deleted file mode 100644 index 52eca068769c..000000000000 --- a/sys-kernel/usermode-sources/usermode-sources-2.4.18-r2.ebuild +++ /dev/null @@ -1,68 +0,0 @@ -# Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/usermode-sources/usermode-sources-2.4.18-r2.ebuild,v 1.5 2002/12/18 00:12:48 lostlogic Exp $ -#OKV=original kernel version, KV=patched kernel version. They can be the same. - -#we use this next variable to avoid duplicating stuff on cvs -GFILESDIR=${PORTDIR}/sys-kernel/linux-sources/files -OKV=${PV} -KV=${PVR} -# -# 2002-07-23/UBa -# i decided to "upgrade" this ebuild to uml-patch-2.4.37 because this -# is the one i successfully use on debian these days. -# -UML_PATCH="uml-patch-${PV}-37" -S=${WORKDIR}/linux-${KV} - -# What's in this kernel? - -# INCLUDED: -# User mode linux patch -# http://user-mode-linux.sourceforge.net -# UML clashes with the current Gentoo patch, so I've ignored it for now. - -DESCRIPTION="Full (vanilla) sources for the User Mode Linux kernel" -SRC_URI="http://www.kernel.org/pub/linux/kernel/v2.4/linux-${OKV}.tar.bz2 http://uml-pub.ists.dartmouth.edu/uml/${UML_PATCH}.bz2" -HOMEPAGE="http://www.kernel.org/ http://user-mode-linux.sourceforge.net" -LICENSE="GPL-2" -SLOT="${KV}" -KEYWORDS="x86 -ppc -sparc -alpha" - -#console-tools is needed to solve the loadkeys fiasco. -#binutils version needed to avoid Athlon/PIII/SSE assembler bugs. -DEPEND=">=sys-devel/binutils-2.11.90.0.31 sys-devel/perl" -RDEPEND=">=sys-libs/ncurses-5.2" - -[ -z "$LINUX_HOSTCFLAGS" ] && LINUX_HOSTCFLAGS="-Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -I${S}/include" - -src_unpack() { - - cd ${WORKDIR} - unpack linux-${OKV}.tar.bz2 - mv linux linux-${KV} || die - cd ${S} - bzcat ${DISTDIR}/${UML_PATCH}.bz2 | patch -d ${S} -p1 - echo "Preparing for compilation..." - - #fix silly permissions in tarball - cd ${WORKDIR} - chown -R 0.0 * - chmod -R a+r-w+X,u+w * - -} - -src_compile() { - echo "Nothing to compile. That's up to the user" -} - -src_install() { - dodir /usr/src/uml - cd ${S} - echo ">>> Copying sources..." - mv ${WORKDIR}/* ${D}/usr/src/uml - cd ${D}/usr/src/uml - ln -sf linux-${KV} linux -} - - diff --git a/sys-kernel/usermode-sources/usermode-sources-2.4.19-r20.ebuild b/sys-kernel/usermode-sources/usermode-sources-2.4.19-r20.ebuild deleted file mode 100644 index 0f7a19ac6abf..000000000000 --- a/sys-kernel/usermode-sources/usermode-sources-2.4.19-r20.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/usermode-sources/usermode-sources-2.4.19-r20.ebuild,v 1.5 2002/12/18 00:12:48 lostlogic Exp $ -#OKV=original kernel version, KV=patched kernel version. They can be the same. - -#we use this next variable to avoid duplicating stuff on cvs -GFILESDIR=${PORTDIR}/sys-kernel/linux-sources/files -OKV=${PV} -KV=${PVR} -UML_PATCH="uml-patch-${PV}-`echo ${PR}|sed -e 's:r\([0-9]\+\):\1:'`" -S=${WORKDIR}/linux-${KV} - -# What's in this kernel? - -# INCLUDED: -# User mode linux patch -# http://user-mode-linux.sourceforge.net -# UML clashes with the current Gentoo patch, so I've ignored it for now. - -DESCRIPTION="Full (vanilla) sources for the User Mode Linux kernel" -SRC_URI="http://www.kernel.org/pub/linux/kernel/v2.4/linux-${OKV}.tar.bz2 http://uml-pub.ists.dartmouth.edu/uml/${UML_PATCH}.bz2" -HOMEPAGE="http://www.kernel.org/ http://user-mode-linux.sourceforge.net" -LICENSE="GPL-2" -SLOT="${KV}" -KEYWORDS="x86 -ppc -sparc -alpha" - -#console-tools is needed to solve the loadkeys fiasco. -#binutils version needed to avoid Athlon/PIII/SSE assembler bugs. -DEPEND=">=sys-devel/binutils-2.11.90.0.31 sys-devel/perl" -RDEPEND=">=sys-libs/ncurses-5.2" - -[ -z "$LINUX_HOSTCFLAGS" ] && LINUX_HOSTCFLAGS="-Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -I${S}/include" - -src_unpack() { - - cd ${WORKDIR} - unpack linux-${OKV}.tar.bz2 - mv linux-${OKV} linux-${KV} || die - cd ${S} - bzcat ${DISTDIR}/${UML_PATCH}.bz2 | patch -d ${S} -p1 - echo "Preparing for compilation..." - - #fix silly permissions in tarball - cd ${WORKDIR} - chown -R 0.0 * - chmod -R a+r-w+X,u+w * - -} - -src_compile() { - echo "Nothing to compile. That's up to the user" -} - -src_install() { - dodir /usr/src/uml - cd ${S} - echo ">>> Copying sources..." - mv ${WORKDIR}/* ${D}/usr/src/uml - cd ${D}/usr/src/uml - ln -sf linux-${KV} linux -} - - diff --git a/sys-kernel/usermode-sources/usermode-sources-2.4.19-r21.ebuild b/sys-kernel/usermode-sources/usermode-sources-2.4.19-r21.ebuild deleted file mode 100644 index db03273ee0e9..000000000000 --- a/sys-kernel/usermode-sources/usermode-sources-2.4.19-r21.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/usermode-sources/usermode-sources-2.4.19-r21.ebuild,v 1.5 2002/12/18 00:12:48 lostlogic Exp $ -#OKV=original kernel version, KV=patched kernel version. They can be the same. - -#we use this next variable to avoid duplicating stuff on cvs -GFILESDIR=${PORTDIR}/sys-kernel/linux-sources/files -OKV=${PV} -KV=${PVR} -UML_PATCH="uml-patch-${PV}-`echo ${PR}|sed -e 's:r\([0-9]\+\):\1:'`" -S=${WORKDIR}/linux-${KV} - -# What's in this kernel? - -# INCLUDED: -# User mode linux patch -# http://user-mode-linux.sourceforge.net -# UML clashes with the current Gentoo patch, so I've ignored it for now. - -DESCRIPTION="Full (vanilla) sources for the User Mode Linux kernel" -SRC_URI="http://www.kernel.org/pub/linux/kernel/v2.4/linux-${OKV}.tar.bz2 http://uml-pub.ists.dartmouth.edu/uml/${UML_PATCH}.bz2" -HOMEPAGE="http://www.kernel.org/ http://user-mode-linux.sourceforge.net" -LICENSE="GPL-2" -SLOT="${KV}" -KEYWORDS="x86 -ppc -sparc -alpha" - -#console-tools is needed to solve the loadkeys fiasco. -#binutils version needed to avoid Athlon/PIII/SSE assembler bugs. -DEPEND=">=sys-devel/binutils-2.11.90.0.31 sys-devel/perl" -RDEPEND=">=sys-libs/ncurses-5.2" - -[ -z "$LINUX_HOSTCFLAGS" ] && LINUX_HOSTCFLAGS="-Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -I${S}/include" - -src_unpack() { - - cd ${WORKDIR} - unpack linux-${OKV}.tar.bz2 - mv linux-${OKV} linux-${KV} || die - cd ${S} - bzcat ${DISTDIR}/${UML_PATCH}.bz2 | patch -d ${S} -p1 - echo "Preparing for compilation..." - - #fix silly permissions in tarball - cd ${WORKDIR} - chown -R 0.0 * - chmod -R a+r-w+X,u+w * - -} - -src_compile() { - echo "Nothing to compile. That's up to the user" -} - -src_install() { - dodir /usr/src/uml - cd ${S} - echo ">>> Copying sources..." - mv ${WORKDIR}/* ${D}/usr/src/uml - cd ${D}/usr/src/uml - ln -sf linux-${KV} linux -} - - diff --git a/sys-kernel/usermode-sources/usermode-sources-2.4.19-r22.ebuild b/sys-kernel/usermode-sources/usermode-sources-2.4.19-r22.ebuild deleted file mode 100644 index 59baa1d79ccb..000000000000 --- a/sys-kernel/usermode-sources/usermode-sources-2.4.19-r22.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/usermode-sources/usermode-sources-2.4.19-r22.ebuild,v 1.5 2002/12/18 00:12:48 lostlogic Exp $ -#OKV=original kernel version, KV=patched kernel version. They can be the same. - -#we use this next variable to avoid duplicating stuff on cvs -GFILESDIR=${PORTDIR}/sys-kernel/linux-sources/files -OKV=${PV} -KV=${PVR} -UML_PATCH="uml-patch-${PV}-`echo ${PR}|sed -e 's:r\([0-9]\+\):\1:'`" -S=${WORKDIR}/linux-${KV} - -# What's in this kernel? - -# INCLUDED: -# User mode linux patch -# http://user-mode-linux.sourceforge.net -# UML clashes with the current Gentoo patch, so I've ignored it for now. - -DESCRIPTION="Full (vanilla) sources for the User Mode Linux kernel" -SRC_URI="http://www.kernel.org/pub/linux/kernel/v2.4/linux-${OKV}.tar.bz2 http://uml-pub.ists.dartmouth.edu/uml/${UML_PATCH}.bz2" -HOMEPAGE="http://www.kernel.org/ http://user-mode-linux.sourceforge.net" -LICENSE="GPL-2" -SLOT="${KV}" -KEYWORDS="x86 -ppc -sparc -alpha" - -#console-tools is needed to solve the loadkeys fiasco. -#binutils version needed to avoid Athlon/PIII/SSE assembler bugs. -DEPEND=">=sys-devel/binutils-2.11.90.0.31 sys-devel/perl" -RDEPEND=">=sys-libs/ncurses-5.2" - -[ -z "$LINUX_HOSTCFLAGS" ] && LINUX_HOSTCFLAGS="-Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -I${S}/include" - -src_unpack() { - - cd ${WORKDIR} - unpack linux-${OKV}.tar.bz2 - mv linux-${OKV} linux-${KV} || die - cd ${S} - bzcat ${DISTDIR}/${UML_PATCH}.bz2 | patch -d ${S} -p1 - echo "Preparing for compilation..." - - #fix silly permissions in tarball - cd ${WORKDIR} - chown -R 0.0 * - chmod -R a+r-w+X,u+w * - -} - -src_compile() { - echo "Nothing to compile. That's up to the user" -} - -src_install() { - dodir /usr/src/uml - cd ${S} - echo ">>> Copying sources..." - mv ${WORKDIR}/* ${D}/usr/src/uml - cd ${D}/usr/src/uml - ln -sf linux-${KV} linux -} - - diff --git a/sys-kernel/usermode-sources/usermode-sources-2.4.19-r23.ebuild b/sys-kernel/usermode-sources/usermode-sources-2.4.19-r23.ebuild deleted file mode 100644 index eec90dc082fd..000000000000 --- a/sys-kernel/usermode-sources/usermode-sources-2.4.19-r23.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/usermode-sources/usermode-sources-2.4.19-r23.ebuild,v 1.5 2002/12/18 00:12:48 lostlogic Exp $ -#OKV=original kernel version, KV=patched kernel version. They can be the same. - -#we use this next variable to avoid duplicating stuff on cvs -GFILESDIR=${PORTDIR}/sys-kernel/linux-sources/files -OKV=${PV} -KV=${PVR} -UML_PATCH="uml-patch-${PV}-`echo ${PR}|sed -e 's:r\([0-9]\+\):\1:'`" -S=${WORKDIR}/linux-${KV} - -# What's in this kernel? - -# INCLUDED: -# User mode linux patch -# http://user-mode-linux.sourceforge.net -# UML clashes with the current Gentoo patch, so I've ignored it for now. - -DESCRIPTION="Full (vanilla) sources for the User Mode Linux kernel" -SRC_URI="http://www.kernel.org/pub/linux/kernel/v2.4/linux-${OKV}.tar.bz2 http://uml-pub.ists.dartmouth.edu/uml/${UML_PATCH}.bz2" -HOMEPAGE="http://www.kernel.org/ http://user-mode-linux.sourceforge.net" -LICENSE="GPL-2" -SLOT="${KV}" -KEYWORDS="x86 -ppc -sparc -alpha" - -#console-tools is needed to solve the loadkeys fiasco. -#binutils version needed to avoid Athlon/PIII/SSE assembler bugs. -DEPEND=">=sys-devel/binutils-2.11.90.0.31 sys-devel/perl" -RDEPEND=">=sys-libs/ncurses-5.2" - -[ -z "$LINUX_HOSTCFLAGS" ] && LINUX_HOSTCFLAGS="-Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -I${S}/include" - -src_unpack() { - - cd ${WORKDIR} - unpack linux-${OKV}.tar.bz2 - mv linux-${OKV} linux-${KV} || die - cd ${S} - bzcat ${DISTDIR}/${UML_PATCH}.bz2 | patch -d ${S} -p1 - echo "Preparing for compilation..." - - #fix silly permissions in tarball - cd ${WORKDIR} - chown -R 0.0 * - chmod -R a+r-w+X,u+w * - -} - -src_compile() { - echo "Nothing to compile. That's up to the user" -} - -src_install() { - dodir /usr/src/uml - cd ${S} - echo ">>> Copying sources..." - mv ${WORKDIR}/* ${D}/usr/src/uml - cd ${D}/usr/src/uml - ln -sf linux-${KV} linux -} - - diff --git a/sys-kernel/usermode-sources/usermode-sources-2.4.19-r24.ebuild b/sys-kernel/usermode-sources/usermode-sources-2.4.19-r24.ebuild deleted file mode 100644 index 8eddce11f7d3..000000000000 --- a/sys-kernel/usermode-sources/usermode-sources-2.4.19-r24.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/usermode-sources/usermode-sources-2.4.19-r24.ebuild,v 1.5 2002/12/18 00:12:48 lostlogic Exp $ -#OKV=original kernel version, KV=patched kernel version. They can be the same. - -#we use this next variable to avoid duplicating stuff on cvs -GFILESDIR=${PORTDIR}/sys-kernel/linux-sources/files -OKV=${PV} -KV=${PVR} -UML_PATCH="uml-patch-${PV}-`echo ${PR}|sed -e 's:r\([0-9]\+\):\1:'`" -S=${WORKDIR}/linux-${KV} - -# What's in this kernel? - -# INCLUDED: -# User mode linux patch -# http://user-mode-linux.sourceforge.net -# UML clashes with the current Gentoo patch, so I've ignored it for now. - -DESCRIPTION="Full (vanilla) sources for the User Mode Linux kernel" -SRC_URI="http://www.kernel.org/pub/linux/kernel/v2.4/linux-${OKV}.tar.bz2 http://uml-pub.ists.dartmouth.edu/uml/${UML_PATCH}.bz2" -HOMEPAGE="http://www.kernel.org/ http://user-mode-linux.sourceforge.net" -LICENSE="GPL-2" -SLOT="${KV}" -KEYWORDS="x86 -ppc -sparc -alpha" - -#console-tools is needed to solve the loadkeys fiasco. -#binutils version needed to avoid Athlon/PIII/SSE assembler bugs. -DEPEND=">=sys-devel/binutils-2.11.90.0.31 sys-devel/perl" -RDEPEND=">=sys-libs/ncurses-5.2" - -[ -z "$LINUX_HOSTCFLAGS" ] && LINUX_HOSTCFLAGS="-Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -I${S}/include" - -src_unpack() { - - cd ${WORKDIR} - unpack linux-${OKV}.tar.bz2 - mv linux-${OKV} linux-${KV} || die - cd ${S} - bzcat ${DISTDIR}/${UML_PATCH}.bz2 | patch -d ${S} -p1 - echo "Preparing for compilation..." - - #fix silly permissions in tarball - cd ${WORKDIR} - chown -R 0.0 * - chmod -R a+r-w+X,u+w * - -} - -src_compile() { - echo "Nothing to compile. That's up to the user" -} - -src_install() { - dodir /usr/src/uml - cd ${S} - echo ">>> Copying sources..." - mv ${WORKDIR}/* ${D}/usr/src/uml - cd ${D}/usr/src/uml - ln -sf linux-${KV} linux -} - - diff --git a/sys-kernel/usermode-sources/usermode-sources-2.4.19-r25.ebuild b/sys-kernel/usermode-sources/usermode-sources-2.4.19-r25.ebuild deleted file mode 100644 index f50837e0763d..000000000000 --- a/sys-kernel/usermode-sources/usermode-sources-2.4.19-r25.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/usermode-sources/usermode-sources-2.4.19-r25.ebuild,v 1.5 2002/12/18 00:12:48 lostlogic Exp $ -#OKV=original kernel version, KV=patched kernel version. They can be the same. - -#we use this next variable to avoid duplicating stuff on cvs -GFILESDIR=${PORTDIR}/sys-kernel/linux-sources/files -OKV=${PV} -KV=${PVR} -UML_PATCH="uml-patch-${PV}-`echo ${PR}|sed -e 's:r\([0-9]\+\):\1:'`" -S=${WORKDIR}/linux-${KV} - -# What's in this kernel? - -# INCLUDED: -# User mode linux patch -# http://user-mode-linux.sourceforge.net -# UML clashes with the current Gentoo patch, so I've ignored it for now. - -DESCRIPTION="Full (vanilla) sources for the User Mode Linux kernel" -SRC_URI="http://www.kernel.org/pub/linux/kernel/v2.4/linux-${OKV}.tar.bz2 http://uml-pub.ists.dartmouth.edu/uml/${UML_PATCH}.bz2" -HOMEPAGE="http://www.kernel.org/ http://user-mode-linux.sourceforge.net" -LICENSE="GPL-2" -SLOT="${KV}" -KEYWORDS="x86 -ppc -sparc -alpha" - -#console-tools is needed to solve the loadkeys fiasco. -#binutils version needed to avoid Athlon/PIII/SSE assembler bugs. -DEPEND=">=sys-devel/binutils-2.11.90.0.31 sys-devel/perl" -RDEPEND=">=sys-libs/ncurses-5.2" - -[ -z "$LINUX_HOSTCFLAGS" ] && LINUX_HOSTCFLAGS="-Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -I${S}/include" - -src_unpack() { - - cd ${WORKDIR} - unpack linux-${OKV}.tar.bz2 - mv linux-${OKV} linux-${KV} || die - cd ${S} - bzcat ${DISTDIR}/${UML_PATCH}.bz2 | patch -d ${S} -p1 - echo "Preparing for compilation..." - - #fix silly permissions in tarball - cd ${WORKDIR} - chown -R 0.0 * - chmod -R a+r-w+X,u+w * - -} - -src_compile() { - echo "Nothing to compile. That's up to the user" -} - -src_install() { - dodir /usr/src/uml - cd ${S} - echo ">>> Copying sources..." - mv ${WORKDIR}/* ${D}/usr/src/uml - cd ${D}/usr/src/uml - ln -sf linux-${KV} linux -} - - diff --git a/sys-kernel/usermode-sources/usermode-sources-2.4.19-r26.ebuild b/sys-kernel/usermode-sources/usermode-sources-2.4.19-r26.ebuild deleted file mode 100644 index ed8fd35b43fb..000000000000 --- a/sys-kernel/usermode-sources/usermode-sources-2.4.19-r26.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/usermode-sources/usermode-sources-2.4.19-r26.ebuild,v 1.5 2002/12/18 00:12:48 lostlogic Exp $ -#OKV=original kernel version, KV=patched kernel version. They can be the same. - -#we use this next variable to avoid duplicating stuff on cvs -GFILESDIR=${PORTDIR}/sys-kernel/linux-sources/files -OKV=${PV} -KV=${PVR} -UML_PATCH="uml-patch-${PV}-`echo ${PR}|sed -e 's:r\([0-9]\+\):\1:'`" -S=${WORKDIR}/linux-${KV} - -# What's in this kernel? - -# INCLUDED: -# User mode linux patch -# http://user-mode-linux.sourceforge.net -# UML clashes with the current Gentoo patch, so I've ignored it for now. - -DESCRIPTION="Full (vanilla) sources for the User Mode Linux kernel" -SRC_URI="http://www.kernel.org/pub/linux/kernel/v2.4/linux-${OKV}.tar.bz2 http://uml-pub.ists.dartmouth.edu/uml/${UML_PATCH}.bz2" -HOMEPAGE="http://www.kernel.org/ http://user-mode-linux.sourceforge.net" -LICENSE="GPL-2" -SLOT="${KV}" -KEYWORDS="~x86 -ppc -sparc -alpha" - -#console-tools is needed to solve the loadkeys fiasco. -#binutils version needed to avoid Athlon/PIII/SSE assembler bugs. -DEPEND=">=sys-devel/binutils-2.11.90.0.31 sys-devel/perl" -RDEPEND=">=sys-libs/ncurses-5.2" - -[ -z "$LINUX_HOSTCFLAGS" ] && LINUX_HOSTCFLAGS="-Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -I${S}/include" - -src_unpack() { - - cd ${WORKDIR} - unpack linux-${OKV}.tar.bz2 - mv linux-${OKV} linux-${KV} || die - cd ${S} - bzcat ${DISTDIR}/${UML_PATCH}.bz2 | patch -d ${S} -p1 - echo "Preparing for compilation..." - - #fix silly permissions in tarball - cd ${WORKDIR} - chown -R 0.0 * - chmod -R a+r-w+X,u+w * - -} - -src_compile() { - echo "Nothing to compile. That's up to the user" -} - -src_install() { - dodir /usr/src/uml - cd ${S} - echo ">>> Copying sources..." - mv ${WORKDIR}/* ${D}/usr/src/uml - cd ${D}/usr/src/uml - ln -sf linux-${KV} linux -} - - diff --git a/sys-kernel/usermode-sources/usermode-sources-2.4.19-r27.ebuild b/sys-kernel/usermode-sources/usermode-sources-2.4.19-r27.ebuild deleted file mode 100644 index 60644e7ea079..000000000000 --- a/sys-kernel/usermode-sources/usermode-sources-2.4.19-r27.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/usermode-sources/usermode-sources-2.4.19-r27.ebuild,v 1.5 2002/12/18 00:12:48 lostlogic Exp $ -#OKV=original kernel version, KV=patched kernel version. They can be the same. - -#we use this next variable to avoid duplicating stuff on cvs -GFILESDIR=${PORTDIR}/sys-kernel/linux-sources/files -OKV=${PV} -KV=${PVR} -UML_PATCH="uml-patch-${PV}-`echo ${PR}|sed -e 's:r\([0-9]\+\):\1:'`" -S=${WORKDIR}/linux-${KV} - -# What's in this kernel? - -# INCLUDED: -# User mode linux patch -# http://user-mode-linux.sourceforge.net -# UML clashes with the current Gentoo patch, so I've ignored it for now. - -DESCRIPTION="Full (vanilla) sources for the User Mode Linux kernel" -SRC_URI="http://www.kernel.org/pub/linux/kernel/v2.4/linux-${OKV}.tar.bz2 http://uml-pub.ists.dartmouth.edu/uml/${UML_PATCH}.bz2" -HOMEPAGE="http://www.kernel.org/ http://user-mode-linux.sourceforge.net" -LICENSE="GPL-2" -SLOT="${KV}" -KEYWORDS="~x86 -ppc -sparc -alpha" - -#console-tools is needed to solve the loadkeys fiasco. -#binutils version needed to avoid Athlon/PIII/SSE assembler bugs. -DEPEND=">=sys-devel/binutils-2.11.90.0.31 sys-devel/perl" -RDEPEND=">=sys-libs/ncurses-5.2" - -[ -z "$LINUX_HOSTCFLAGS" ] && LINUX_HOSTCFLAGS="-Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -I${S}/include" - -src_unpack() { - - cd ${WORKDIR} - unpack linux-${OKV}.tar.bz2 - mv linux-${OKV} linux-${KV} || die - cd ${S} - bzcat ${DISTDIR}/${UML_PATCH}.bz2 | patch -d ${S} -p1 - echo "Preparing for compilation..." - - #fix silly permissions in tarball - cd ${WORKDIR} - chown -R 0.0 * - chmod -R a+r-w+X,u+w * - -} - -src_compile() { - echo "Nothing to compile. That's up to the user" -} - -src_install() { - dodir /usr/src/uml - cd ${S} - echo ">>> Copying sources..." - mv ${WORKDIR}/* ${D}/usr/src/uml - cd ${D}/usr/src/uml - ln -sf linux-${KV} linux -} - - diff --git a/sys-kernel/usermode-sources/usermode-sources-2.4.19-r28.ebuild b/sys-kernel/usermode-sources/usermode-sources-2.4.19-r28.ebuild deleted file mode 100644 index 7f5726ca6edb..000000000000 --- a/sys-kernel/usermode-sources/usermode-sources-2.4.19-r28.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/usermode-sources/usermode-sources-2.4.19-r28.ebuild,v 1.5 2002/12/18 00:12:48 lostlogic Exp $ -#OKV=original kernel version, KV=patched kernel version. They can be the same. - -#we use this next variable to avoid duplicating stuff on cvs -GFILESDIR=${PORTDIR}/sys-kernel/linux-sources/files -OKV=${PV} -KV=${PVR} -UML_PATCH="uml-patch-${PV}-`echo ${PR}|sed -e 's:r\([0-9]\+\):\1:'`" -S=${WORKDIR}/linux-${KV} - -# What's in this kernel? - -# INCLUDED: -# User mode linux patch -# http://user-mode-linux.sourceforge.net -# UML clashes with the current Gentoo patch, so I've ignored it for now. - -DESCRIPTION="Full (vanilla) sources for the User Mode Linux kernel" -SRC_URI="http://www.kernel.org/pub/linux/kernel/v2.4/linux-${OKV}.tar.bz2 http://uml-pub.ists.dartmouth.edu/uml/${UML_PATCH}.bz2" -HOMEPAGE="http://www.kernel.org/ http://user-mode-linux.sourceforge.net" -LICENSE="GPL-2" -SLOT="${KV}" -KEYWORDS="~x86 -ppc -sparc -alpha" - -#console-tools is needed to solve the loadkeys fiasco. -#binutils version needed to avoid Athlon/PIII/SSE assembler bugs. -DEPEND=">=sys-devel/binutils-2.11.90.0.31 sys-devel/perl" -RDEPEND=">=sys-libs/ncurses-5.2" - -[ -z "$LINUX_HOSTCFLAGS" ] && LINUX_HOSTCFLAGS="-Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -I${S}/include" - -src_unpack() { - - cd ${WORKDIR} - unpack linux-${OKV}.tar.bz2 - mv linux-${OKV} linux-${KV} || die - cd ${S} - bzcat ${DISTDIR}/${UML_PATCH}.bz2 | patch -d ${S} -p1 - echo "Preparing for compilation..." - - #fix silly permissions in tarball - cd ${WORKDIR} - chown -R 0.0 * - chmod -R a+r-w+X,u+w * - -} - -src_compile() { - echo "Nothing to compile. That's up to the user" -} - -src_install() { - dodir /usr/src/uml - cd ${S} - echo ">>> Copying sources..." - mv ${WORKDIR}/* ${D}/usr/src/uml - cd ${D}/usr/src/uml - ln -sf linux-${KV} linux -} - - diff --git a/sys-kernel/usermode-sources/usermode-sources-2.4.19-r29.ebuild b/sys-kernel/usermode-sources/usermode-sources-2.4.19-r29.ebuild deleted file mode 100644 index ecd76ea2c099..000000000000 --- a/sys-kernel/usermode-sources/usermode-sources-2.4.19-r29.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/usermode-sources/usermode-sources-2.4.19-r29.ebuild,v 1.5 2002/12/18 00:12:48 lostlogic Exp $ -#OKV=original kernel version, KV=patched kernel version. They can be the same. - -#we use this next variable to avoid duplicating stuff on cvs -GFILESDIR=${PORTDIR}/sys-kernel/linux-sources/files -OKV=${PV} -KV=${PVR} -UML_PATCH="uml-patch-${PV}-`echo ${PR}|sed -e 's:r\([0-9]\+\):\1:'`" -S=${WORKDIR}/linux-${KV} - -# What's in this kernel? - -# INCLUDED: -# User mode linux patch -# http://user-mode-linux.sourceforge.net -# UML clashes with the current Gentoo patch, so I've ignored it for now. - -DESCRIPTION="Full (vanilla) sources for the User Mode Linux kernel" -SRC_URI="http://www.kernel.org/pub/linux/kernel/v2.4/linux-${OKV}.tar.bz2 http://uml-pub.ists.dartmouth.edu/uml/${UML_PATCH}.bz2" -HOMEPAGE="http://www.kernel.org/ http://user-mode-linux.sourceforge.net" -LICENSE="GPL-2" -SLOT="${KV}" -KEYWORDS="~x86 -ppc -sparc -alpha" - -#console-tools is needed to solve the loadkeys fiasco. -#binutils version needed to avoid Athlon/PIII/SSE assembler bugs. -DEPEND=">=sys-devel/binutils-2.11.90.0.31 sys-devel/perl" -RDEPEND=">=sys-libs/ncurses-5.2" - -[ -z "$LINUX_HOSTCFLAGS" ] && LINUX_HOSTCFLAGS="-Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -I${S}/include" - -src_unpack() { - - cd ${WORKDIR} - unpack linux-${OKV}.tar.bz2 - mv linux-${OKV} linux-${KV} || die - cd ${S} - bzcat ${DISTDIR}/${UML_PATCH}.bz2 | patch -d ${S} -p1 - echo "Preparing for compilation..." - - #fix silly permissions in tarball - cd ${WORKDIR} - chown -R 0.0 * - chmod -R a+r-w+X,u+w * - -} - -src_compile() { - echo "Nothing to compile. That's up to the user" -} - -src_install() { - dodir /usr/src/uml - cd ${S} - echo ">>> Copying sources..." - mv ${WORKDIR}/* ${D}/usr/src/uml - cd ${D}/usr/src/uml - ln -sf linux-${KV} linux -} - - |