diff options
author | Daniel Robbins <drobbins@gentoo.org> | 2003-09-17 18:23:52 +0000 |
---|---|---|
committer | Daniel Robbins <drobbins@gentoo.org> | 2003-09-17 18:23:52 +0000 |
commit | 5875aa599c437f037d38c1e8ea1cae035c558327 (patch) | |
tree | cab766bf08cb8b215fd0458c8514fccd3762a700 /sys-kernel | |
parent | *** empty log message *** (diff) | |
download | historical-5875aa599c437f037d38c1e8ea1cae035c558327.tar.gz historical-5875aa599c437f037d38c1e8ea1cae035c558327.tar.bz2 historical-5875aa599c437f037d38c1e8ea1cae035c558327.zip |
ia64-sources for Itanium systems
Diffstat (limited to 'sys-kernel')
-rw-r--r-- | sys-kernel/ia64-sources/ChangeLog | 9 | ||||
-rw-r--r-- | sys-kernel/ia64-sources/Manifest | 3 | ||||
-rw-r--r-- | sys-kernel/ia64-sources/ia64-sources-2.4.22.ebuild | 48 |
3 files changed, 59 insertions, 1 deletions
diff --git a/sys-kernel/ia64-sources/ChangeLog b/sys-kernel/ia64-sources/ChangeLog new file mode 100644 index 000000000000..4afb443b93cb --- /dev/null +++ b/sys-kernel/ia64-sources/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for sys-kernel/ia64-sources +# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/ia64-sources/ChangeLog,v 1.1 2003/09/17 18:23:49 drobbins Exp $ + +*ia64-sources-2.4.22 (17 Sep 2003) + + 17 Sep 2003; Daniel Robbins <drobbins@gentoo.org> + ia64-sources-2.4.22.ebuild: New ebuild to provide a kernel for ia64 + (Itanium) systems. diff --git a/sys-kernel/ia64-sources/Manifest b/sys-kernel/ia64-sources/Manifest index 0f1be70075a8..24a556852ff1 100644 --- a/sys-kernel/ia64-sources/Manifest +++ b/sys-kernel/ia64-sources/Manifest @@ -1,2 +1,3 @@ -MD5 ea4ad303b33581decae4c59adaa293a6 ia64-sources-2.4.22.ebuild 1598 +MD5 87b0e55a26621da157a8172ca4b1b76e ia64-sources-2.4.22.ebuild 1742 +MD5 73fb4cee2d0d7e7568a2eea27bf12fc5 ChangeLog 409 MD5 0c6294c3aa0faccb86f4f0ecd275c15f files/digest-ia64-sources-2.4.22 145 diff --git a/sys-kernel/ia64-sources/ia64-sources-2.4.22.ebuild b/sys-kernel/ia64-sources/ia64-sources-2.4.22.ebuild new file mode 100644 index 000000000000..25a44b8e1846 --- /dev/null +++ b/sys-kernel/ia64-sources/ia64-sources-2.4.22.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/ia64-sources/ia64-sources-2.4.22.ebuild,v 1.1 2003/09/17 18:23:49 drobbins Exp $ + +IUSE="" + +# OKV=original kernel version, KV=patched kernel version. They can be the same. + +# Kernel ebuilds using the kernel.eclass can remove any patch that you +# do not want to apply by simply setting the KERNEL_EXCLUDE shell +# variable to the string you want to exclude (for instance +# KERNEL_EXCLUDE="evms" would not patch any patches whose names match +# *evms*). Kernels are only tested in the default configuration, but +# this may be useful if you know that a particular patch is causing a +# conflict with a patch you personally want to apply, or some other +# similar situation. + +ETYPE="sources" + +inherit kernel +OKV="2.4.22" +KV="${KV/-r0//}" +# Documentation on the patches contained in this kernel will be installed +# to /usr/share/doc/gentoo-sources-${PV}/patches.txt.gz + +MYCSET="1.1063.2.37-to-1.1088" +DESCRIPTION="Full sources for the Gentoo Kernel." +SRC_URI="mirror://kernel/linux/kernel/v2.4/linux-${OKV}.tar.bz2 +http://www.kernel.org/pub/linux/kernel/ports/ia64/v2.4/testing/cset/cset-${MYCSET}.txt.gz" + +HOMEPAGE="http://www.gentoo.org/ http://www.kernel.org/" +LICENSE="GPL-2" +KEYWORDS="-* ia64" +SLOT="${KV}" + +src_unpack() { + unpack linux-${OKV}.tar.bz2 + cd ${WORKDIR} + mv linux-${OKV} linux-${KV} || die "Error moving kernel source tree to linux-${KV}" + cd ${WORKDIR}/linux-${KV} + [ ! -e ${DISTDIR}/cset-${MYCSET}.txt.gz ] && die "patch file not found" + cat ${DISTDIR}/cset-${MYCSET}.txt.gz | gzip -d | patch -f -p1 + kernel_universal_unpack +} + +pkg_postinst() { + kernel_pkg_postinst +} |