blob: f23b0952c431cde3b6459edc6e931fc5bc0b1f46 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-kernel/acpi-sources/acpi-sources-2.4.20-r5.ebuild,v 1.2 2002/12/18 00:12:48 lostlogic Exp $
IUSE="build"
# OKV=original kernel version, KV=patched kernel version. They can be the same.
ETYPE="sources"
inherit kernel || die
OKV="2.4.19"
ACPI_PATCH="acpi-20021002-2.4.20-pre8.diff.gz"
KERN_PATCH="patch-2.4.20-pre8.bz2"
DESCRIPTION="Full sources for the latest ACPI Linux kernel"
SRC_URI="http://www.kernel.org/pub/linux/kernel/v2.4/linux-${OKV}.tar.bz2
http://www.kernel.org/pub/linux/kernel/v2.4/testing/${KERN_PATCH}
http://unc.dl.sourceforge.net/sourceforge/acpi/${ACPI_PATCH}"
KEYWORDS="x86"
SLOT="${KV}"
src_unpack() {
unpack linux-${OKV}.tar.bz2
mv linux-${OKV} linux-${KV} || die
cd linux-${KV}
bzcat ${DISTDIR}/${KERN_PATCH}|patch -p1 || die "-marcelo patch failed"
zcat ${DISTDIR}/${ACPI_PATCH}|patch -p1 || die "-acpi patch failed"
kernel_universal_unpack
}
|