blob: 08fda65eeee79da1f3a67194c19aa913ffc0a9fb (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-kernel/linux-headers/linux-headers-2.6.16.ebuild,v 1.12 2006/10/26 06:55:40 vapier Exp $
ETYPE="headers"
H_SUPPORTEDARCH="alpha amd64 arm hppa m68k ia64 ppc ppc64 s390 sh sparc x86"
inherit eutils multilib kernel-2
detect_version
PATCHES_V='4'
SRC_URI="${KERNEL_URI} mirror://gentoo/linux-2.6.11-m68k-headers.patch.bz2
http://dev.gentoo.org/~plasmaroo/patches/kernel/gentoo-headers/gentoo-headers-${PV}-${PATCHES_V}.tar.bz2"
KEYWORDS="-* ~amd64 ppc ppc64"
IUSE="gcc64"
DEPEND="ppc? ( gcc64? ( sys-devel/gcc-powerpc64 ) )
sparc? ( gcc64? ( sys-devel/gcc-sparc64 ) )"
UNIPATCH_LIST="${DISTDIR}/gentoo-headers-${PV}-${PATCHES_V}.tar.bz2"
wrap_headers_fix() {
for i in $*
do
echo -n " $1/"
cd ${S}/include/$1
headers___fix $(find . -type f -print)
shift
done
echo
}
src_unpack() {
ABI=${KERNEL_ABI}
kernel-2_src_unpack
# This should always be used but it has a bunch of hunks which
# apply to include/linux/ which i'm unsure of so only use with
# m68k for now (dont want to break other arches)
[[ $(tc-arch) == "m68k" ]] && epatch "${DISTDIR}"/linux-2.6.11-m68k-headers.patch.bz2
# Fixes ... all the wrapper magic is to keep sed from dumping
# ugly warnings about how it can't work on a directory.
cd "${S}"/include
einfo "Applying automated fixes:"
wrap_headers_fix asm-* linux
einfo "... done"
}
|