blob: 327021bbf0f2bf524b9fd76f8d27e6171ac5af4b (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-kernel/gentoo-dev-sources/gentoo-dev-sources-2.6.4.ebuild,v 1.6 2004/07/15 03:48:34 agriffis Exp $
ETYPE="sources"
inherit kernel-2
detect_version
#version of gentoo patchset
GPV=4.26
GPV_SRC="mirror://gentoo/genpatches-${KV_MAJOR}.${KV_MINOR}-${GPV}.tar.bz2"
KEYWORDS="~x86 ~amd64 ~ppc"
IUSE=""
UNIPATCH_LIST="${DISTDIR}/genpatches-${KV_MAJOR}.${KV_MINOR}-${GPV}.tar.bz2"
UNIPATCH_DOCS="${WORKDIR}/patches/genpatches-${KV_MAJOR}.${KV_MINOR}-${GPV}/README"
DESCRIPTION="Full sources including the gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree"
SRC_URI="${KERNEL_URI} ${GPV_SRC}"
DEPEND="${DEPEND} >=dev-libs/ucl-1"
pkg_postinst() {
postinst_sources
ewarn "If you choose to use UCL/gcloop please ensure you compile gcloop"
ewarn "without -fstack-protector."
echo
}
|