summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Yamin <plasmaroo@gentoo.org>2004-01-18 21:13:24 +0000
committerTim Yamin <plasmaroo@gentoo.org>2004-01-18 21:13:24 +0000
commit63699f491558f9846f4ad7efb1665e2808cc8bcd (patch)
tree99221067d34840a72e0f85dc2f8babfcfcf2ad3e /eclass/kmod.eclass
parentNew ant & ant-optional local use flags (diff)
downloadhistorical-63699f491558f9846f4ad7efb1665e2808cc8bcd.tar.gz
historical-63699f491558f9846f4ad7efb1665e2808cc8bcd.tar.bz2
historical-63699f491558f9846f4ad7efb1665e2808cc8bcd.zip
Removed kmod.eclass; it was not being utilized anywhere and it's full of
bugs, not to mention that kernel-mod.eclass is a better alternative.
Diffstat (limited to 'eclass/kmod.eclass')
-rw-r--r--eclass/kmod.eclass28
1 files changed, 0 insertions, 28 deletions
diff --git a/eclass/kmod.eclass b/eclass/kmod.eclass
deleted file mode 100644
index 381c6e345660..000000000000
--- a/eclass/kmod.eclass
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2003 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/kmod.eclass,v 1.9 2003/03/01 19:11:04 lostlogic Exp $
-#
-# Author Dan Armak <danarmak@gentoo.org>
-#
-# The base eclass defines some default functions and variables. Nearly everything
-# else inherits from here.
-
-ECLASS=kmod
-INHERITED="$INHERITED $ECLASS"
-S=${WORKDIR}/${P}
-DESCRIPTION="Based on the $ECLASS eclass"
-
-SRC_URI="mirrof://gentoo/${P}.patch.bz2"
-
-kmod_src_unpack() {
-
- debug-print-function $FUNCNAME $*
- [ -z "$1" ] && base_src_unpack all
-
- debug-print-section patch
- cd /usr/src/linux-${KV}
- patch -p1 < ${DISTDIR}/${P}.patch
-
-}
-
-EXPORT_FUNCTIONS src_unpack