Files
sablink-distro/sys-kernel/linux-sabayon/linux-sabayon-2.6.24.ebuild
T
dontpanic 9eb2e766c8 Updating sys-kernel/linux-sabayon ebuilds to accommodate package
name changes to the sabayon artwork ebuilds.


git-svn-id: http://svn.sabayonlinux.org/overlay@2681 d7aec97c-591d-0410-af39-a8856400b30a
2008-12-16 16:00:45 +00:00

158 lines
4.2 KiB
Bash

# Copyright 2007 Sabayon Linux
# Distributed under the terms of the GNU General Public License v2
ETYPE="sources"
K_WANT_GENPATCHES=""
K_GENPATCHES_VER=""
inherit kernel-2
detect_version
detect_arch
UNIPATCH_STRICTORDER="yes"
KEYWORDS="~amd64 ~x86"
HOMEPAGE="http://www.sabayonlinux.org"
DEPEND="
!only_sources? ( >=sys-kernel/genkernel-3.4.9 )
splash? ( || ( x11-themes/sabayonlinux-artwork
x11-themes/sabayon-artwork ) )
!=sys-kernel/sabayon-sources-${PVR}
"
RDEPEND="grub? ( sys-boot/grub )"
IUSE="splash dmraid grub no_sources only_sources"
DESCRIPTION="Official Sabayon Linux kernel images and sources"
MY_P="${PV}/linux-sabayon-${PV}"
KV_FULL=${KV_FULL/linux/sabayon}
K_NOSETEXTRAVERSION="1"
EXTRAVERSION=${EXTRAVERSION/linux/sabayon}
SLOT="${PV}"
S="${WORKDIR}/linux-${KV_FULL}"
## INIT: Exported data
SL_PATCHES_URI="
http://dev.gentoo.org/~spock/projects/fbcondecor/archive/fbcondecor-0.9.4-${PV}-rc7.patch
http://download.filesystems.org/unionfs/unionfs-2.x/unionfs-2.2.3_for_2.6.24.diff.gz
"
SUSPEND2_VERSION="3.0-rc5"
SUSPEND2_TARGET="2.6.24"
SUSPEND2_SRC="tuxonice-${SUSPEND2_VERSION}-for-${SUSPEND2_TARGET}"
SUSPEND2_URI="http://www.tuxonice.net/downloads/all/${SUSPEND2_SRC}.patch.bz2"
UNIPATCH_LIST="
${DISTDIR}/fbcondecor-0.9.4-${PV}-rc7.patch
${FILESDIR}/${MY_P}-squashfs-3.3.patch
${DISTDIR}/${SUSPEND2_SRC}.patch.bz2
${FILESDIR}/${MY_P}-ipw3945-1.2.0-2.6.22.patch
${FILESDIR}/${MY_P}-from-ext4dev-to-ext4.patch
${DISTDIR}/unionfs-2.2.3_for_2.6.24.diff.gz
${FILESDIR}/${MY_P}-aufs-cvs-20080121.patch
${FILESDIR}/${PV}/2.6.24.2.patch
${FILESDIR}/${PV}/${P}-atl2.patch
${FILESDIR}/${PV}/${P}-logfs-744.patch.bz2
"
SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI} ${SUSPEND2_URI} ${SL_PATCHES_URI}"
## END: Exported data
src_unpack() {
kernel-2_src_unpack
cd "${S}"
# manually set extraversion
sed -i -e "s:^\(EXTRAVERSION =\).*:\1 ${EXTRAVERSION}:" Makefile
}
src_compile() {
if ! use only_sources; then
# disable sandbox
export SANDBOX_ON=0
# creating workdirs
mkdir -p ${WORKDIR}/boot/grub
mkdir ${WORKDIR}/lib
mkdir ${WORKDIR}/cache
mkdir ${S}/temp
einfo "Starting to compile kernel..."
cp ${FILESDIR}/${P}-${ARCH}.config ${WORKDIR}/config
if use grub; then
if [ -e "/boot/grub/grub.conf" ]; then
cp /boot/grub/grub.conf ${WORKDIR}/boot/grub -p
fi
fi
# do some cleanup
rm -rf "${WORKDIR}"/lib
rm -rf "${WORKDIR}"/cache
rm -rf "${S}"/temp
OLDARCH=${ARCH}
unset ARCH
cd ${S}
GK_ARGS=""
use splash && GKARGS="${GKARGS} --splash=sabayon"
use dmraid && GKARGS="${GKARGS} --dmraid"
use grub && GKARGS="${GKARGS} --bootloader=grub"
export DEFAULT_KERNEL_SOURCE="${S}"
export CMD_KERNEL_DIR="${S}"
DEFAULT_KERNEL_SOURCE="${S}" CMD_KERNEL_DIR="${S}" genkernel ${GKARGS} \
--kerneldir=${S} \
--kernel-config=${WORKDIR}/config \
--cachedir=${WORKDIR}/cache \
--makeopts=-j3 \
--tempdir=${S}/temp \
--logfile=${WORKDIR}/genkernel.log \
--bootdir=${WORKDIR}/boot \
--mountboot \
--lvm \
--luks \
--module-prefix=${WORKDIR}/lib \
all || die "genkernel failed"
ARCH=${OLDARCH}
fi
}
src_install() {
if ! use no_sources || use only_sources; then
kernel-2_src_install || die "sources install failed"
if ! use only_sources; then
cd ${D}/usr/src/linux-${KV_FULL} || die "cannot cd into sources directory"
OLDARCH=${ARCH}
unset ARCH
make distclean || die "cannot run make distclean"
cp ${FILESDIR}/${P}-${OLDARCH}.config ${D}/usr/src/linux-${KV_FULL}/.config || die "cannot copy kernel configuration"
make prepare modules_prepare || die "cannot run make prepare modules_prepare"
ARCH=${OLDARCH}
fi
fi
if ! use only_sources; then
insinto /boot
doins ${WORKDIR}/boot/*
cp -Rp ${WORKDIR}/lib/* ${D}/
rm ${D}/lib/modules/${KV_FULL}/source
rm ${D}/lib/modules/${KV_FULL}/build
ln -s /usr/src/linux-${KV_FULL} ${D}/lib/modules/${KV_FULL}/source
ln -s /usr/src/linux-${KV_FULL} ${D}/lib/modules/${KV_FULL}/build
if use grub; then
if [ -e "${WORKDIR}/boot/grub.conf" ]; then
insinto /boot/grub/
doins ${WORKDIR}/boot/grub.conf
fi
fi
fi
}
pkg_postinst() {
kernel-2_pkg_postinst
einfo "Please report kernel bugs at:"
einfo "http://bugs.sabayonlinux.org"
}