blob: d7738fe1e4fc3425386f531529766e198f1e4fdd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-cluster/drbd/drbd-0.7.17.ebuild,v 1.3 2006/05/20 14:00:44 xmerlin Exp $
inherit eutils versionator linux-mod
LICENSE="GPL-2"
KEYWORDS="~ppc x86"
MY_MAJ_PV="$(get_version_component_range 1-2 ${PV})"
DESCRIPTION="mirror/replicate block-devices across a network-connection"
SRC_URI="http://oss.linbit.com/drbd/${MY_MAJ_PV}/${P}.tar.gz"
HOMEPAGE="http://www.drbd.org"
IUSE=""
DEPEND="virtual/linux-sources"
RDEPEND=""
SLOT="0"
src_unpack() {
unpack ${A}
cd ${S}
# epatch ${FILESDIR}/${PN}-${MY_MAJ_PV}-module-Makefile.patch || die
}
src_compile() {
check_KV
set_arch_to_kernel
einfo ""
einfo "Your kernel-sources in /usr/src/linux-${KV} must be properly configured"
#einfo "and match the currently running kernel version ${KV}"
einfo "If otherwise -> build will fail."
einfo ""
if kernel_is 2 6; then
emake KDIR=${KERNEL_DIR} || die "compile problem"
else
cp -R /usr/src/linux-${KV} ${WORKDIR}
emake KDIR=/${WORKDIR}/linux-${KV} || die "compile problem"
fi
}
src_install() {
make PREFIX=${D} install || die "install problem"
# gentoo-ish init-script
newinitd ${FILESDIR}/${PN}-0.7.rc ${PN} || die
# needed by drbd startup script
#keepdir /var/lib/drbd
# docs
dodoc README ChangeLog COPYING
dodoc documentation/NFS-Server-README.txt
# we put drbd.conf into docs
# it doesnt make sense to install a default conf in /etc
# put it to the docs
rm -f ${D}/etc/drbd.conf
dodoc scripts/drbd.conf || die
dodoc upgrade_0.6.x_to_0.7.0.txt upgrade_0.7.0_to_0.7.1.txt || die
}
pkg_postinst() {
linux-mod_pkg_postinst
einfo ""
einfo "Please remember to re-emerge drbd when you upgrade your kernel!"
einfo ""
einfo "Please copy and gunzip the configuration file"
einfo "from /usr/share/doc/${PF}/drbd.conf.gz to /etc"
einfo "and edit it to your needs. Helpful commands:"
einfo "man 5 drbd.conf"
einfo "man 8 drbdsetup"
einfo "man 8 drbdadm"
einfo ""
}
|