diff options
author | Joachim Blaabjerg <styx@gentoo.org> | 2002-10-30 18:23:44 +0000 |
---|---|---|
committer | Joachim Blaabjerg <styx@gentoo.org> | 2002-10-30 18:23:44 +0000 |
commit | 19fc648c3cc85e7a266d17c4da8facd46548a903 (patch) | |
tree | 88244816638fa4e8129ef39bc108b5209d41b855 /sys-kernel | |
parent | Tightened dependancies. (diff) | |
download | gentoo-2-19fc648c3cc85e7a266d17c4da8facd46548a903.tar.gz gentoo-2-19fc648c3cc85e7a266d17c4da8facd46548a903.tar.bz2 gentoo-2-19fc648c3cc85e7a266d17c4da8facd46548a903.zip |
Adding ~x86 masked selinux-sources
Diffstat (limited to 'sys-kernel')
-rw-r--r-- | sys-kernel/selinux-sources/ChangeLog | 11 | ||||
-rw-r--r-- | sys-kernel/selinux-sources/files/digest-selinux-sources-2.4.19 | 2 | ||||
-rw-r--r-- | sys-kernel/selinux-sources/selinux-sources-2.4.19.ebuild | 37 |
3 files changed, 50 insertions, 0 deletions
diff --git a/sys-kernel/selinux-sources/ChangeLog b/sys-kernel/selinux-sources/ChangeLog new file mode 100644 index 000000000000..36474d2fade0 --- /dev/null +++ b/sys-kernel/selinux-sources/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for sys-kernel/selinux-sources +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/selinux-sources/ChangeLog,v 1.1 2002/10/30 18:23:44 styx Exp $ + +*selinux-sources-2.4.19 (30 Oct 2002) + + 30 Oct 2002; Joachim Blaabjerg <styx@gentoo.org> + selinux-sources-2.4.19.ebuild, ChangeLog, files/digest-selinux-sources-2.4.19: + + Initial submission. Ebuild originally written by Joshua Brindle + <method@gentoo.org>. diff --git a/sys-kernel/selinux-sources/files/digest-selinux-sources-2.4.19 b/sys-kernel/selinux-sources/files/digest-selinux-sources-2.4.19 new file mode 100644 index 000000000000..185405b287c2 --- /dev/null +++ b/sys-kernel/selinux-sources/files/digest-selinux-sources-2.4.19 @@ -0,0 +1,2 @@ +MD5 2bb60b7594a416f2c593923ce446160b linux-2.4.19.tar.bz2 26042494 +MD5 b57fb4535efb92214e4cda410e28d85e patches-2.4.19-selinux.tar.bz2 202557 diff --git a/sys-kernel/selinux-sources/selinux-sources-2.4.19.ebuild b/sys-kernel/selinux-sources/selinux-sources-2.4.19.ebuild new file mode 100644 index 000000000000..419733614879 --- /dev/null +++ b/sys-kernel/selinux-sources/selinux-sources-2.4.19.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 + +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 || die + +KV=2.4.19-selinux +EXTRAVERSION=selinux +S=${WORKDIR}/linux-${KV} +OKV=2.4.19 +DESCRIPTION="LSM patched kernel with SELinux archive" +SRC_URI="http://www.kernel.org/pub/linux/kernel/v2.4/linux-${OKV}.tar.bz2 + http://gentoo.org/~styx/patches-${KV}.tar.bz2" +HOMEPAGE="http://www.kernel.org/ http://www.nsa.gov/selinux" +KEYWORDS="~x86 -ppc -sparc -sparc64" + +src_unpack() { + unpack ${A} + mv linux-${OKV} linux-${KV} || die + + cd ${KV} + kernel_src_unpack +} |