53 lines
1.4 KiB
Bash
53 lines
1.4 KiB
Bash
# Copyright 1999-2011 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/sys-cluster/drbd-kernel/drbd-kernel-8.0.16.ebuild,v 1.4 2011/06/06 00:44:15 robbat2 Exp $
|
|
|
|
inherit eutils versionator linux-mod
|
|
|
|
LICENSE="GPL-2"
|
|
KEYWORDS="amd64 x86"
|
|
|
|
MY_PN="${PN/-kernel/}"
|
|
MY_P="${MY_PN}-${PV}"
|
|
MY_MAJ_PV="$(get_version_component_range 1-2 ${PV})"
|
|
|
|
HOMEPAGE="http://www.drbd.org"
|
|
DESCRIPTION="mirror/replicate block-devices across a network-connection"
|
|
SRC_URI="http://oss.linbit.com/drbd/${MY_MAJ_PV}/${MY_PN}-${PV}.tar.gz"
|
|
|
|
IUSE=""
|
|
|
|
DEPEND="virtual/linux-sources"
|
|
RDEPEND=""
|
|
SLOT="0"
|
|
|
|
S="${WORKDIR}/${MY_P}"
|
|
|
|
pkg_setup() {
|
|
if ! kernel_is -ge 2 6; then
|
|
die "Unsupported kernel, drbd-8.0.x needs kernel 2.6.x ."
|
|
fi
|
|
|
|
MODULE_NAMES="drbd(block:${S}/drbd)"
|
|
BUILD_TARGETS="default"
|
|
CONFIG_CHECK="CONNECTOR"
|
|
CONNECTOR_ERROR="You must enable \"CONNECTOR - unified userspace <-> kernelspace linker\" in your kernel configuration, because drbd needs it."
|
|
linux-mod_pkg_setup
|
|
BUILD_PARAMS="-j1 KDIR=${KERNEL_DIR} O=${KBUILD_OUTPUT}"
|
|
}
|
|
|
|
src_unpack() {
|
|
unpack ${A}
|
|
cd "${S}"
|
|
|
|
epatch "${FILESDIR}"/${PN}-8.0.0-scripts.adjust_drbd_config_h.sh.patch || die
|
|
epatch "${FILESDIR}"/${MY_P}-kernel-2.6.30-compile-fix.patch || die
|
|
}
|
|
|
|
pkg_postinst() {
|
|
linux-mod_pkg_postinst
|
|
|
|
einfo ""
|
|
einfo "Please remember to re-emerge drbd when you upgrade your kernel!"
|
|
einfo ""
|
|
}
|