summaryrefslogtreecommitdiff
path: root/sys-kernel/kogaion-sources/kogaion-sources-3.10.25.ebuild
diff options
context:
space:
mode:
authorV3n3RiX <venerix@gmail.com>2014-10-30 13:25:21 +0200
committerV3n3RiX <venerix@gmail.com>2014-10-30 13:25:21 +0200
commitb55c33c0cf0857b24be3997951aaedb78f776279 (patch)
tree2cc030804c94d5038000101450bb00f377b2435d /sys-kernel/kogaion-sources/kogaion-sources-3.10.25.ebuild
parent24934e623441310f644e5f72855b0f2bf9f3cd1a (diff)
Somebody called for an exterminator?...starting the big purge of deprecated ebuilds
Diffstat (limited to 'sys-kernel/kogaion-sources/kogaion-sources-3.10.25.ebuild')
-rw-r--r--sys-kernel/kogaion-sources/kogaion-sources-3.10.25.ebuild55
1 files changed, 0 insertions, 55 deletions
diff --git a/sys-kernel/kogaion-sources/kogaion-sources-3.10.25.ebuild b/sys-kernel/kogaion-sources/kogaion-sources-3.10.25.ebuild
deleted file mode 100644
index dedc361b..00000000
--- a/sys-kernel/kogaion-sources/kogaion-sources-3.10.25.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils
-
-SLOT=$PVR
-CKV=3.10.25
-KV_FULL=${PN}-${PVR}
-EXTRAVERSION=kogaion
-KERNEL_ARCHIVE="linux-${PV}.tar.xz"
-PATCH_ARCHIVE="linux-${PV}-kogaion.tar.gz"
-RESTRICT="binchecks strip mirror"
-LICENSE="GPL-2"
-KEYWORDS="amd64 x86"
-
-IUSE=""
-DEPEND=""
-RDEPEND=""
-DESCRIPTION="Kogaion Linux Kernel Sources"
-HOMEPAGE="http://www.debian.org"
-SRC_URI="https://www.kernel.org/pub/linux/kernel/v3.x/${KERNEL_ARCHIVE}"
-
-S="$WORKDIR/linux-${CKV}"
-
-pkg_setup() {
- export REAL_ARCH="$ARCH"
- unset ARCH ; unset LDFLAGS #will interfere with Makefile if set
-}
-
-src_prepare() {
-
- for p in $(ls ${FILESDIR}/security); do
- epatch -p1 "${FILESDIR}/security/$p" || die
- done
-
- for p in $(ls ${FILESDIR}/desktop) ; do
- epatch -p1 "${FILESDIR}/desktop/$p" || die
- done
-
- rm -f .config || die
-}
-
-src_compile() {
- einfo "Preparing kernel sources for real-world use" || die
- make -s mrproper || die "make mrproper failed"
-}
-
-src_install() {
- dodir /usr/src/linux-${PV}-kogaion || die
- insinto /usr/src/linux-${PV}-kogaion || die
- doins -r "${S}"/* || die
- cd ${D}/usr/src/linux-${PV}-kogaion || die
- make mrproper || die
-}