diff options
Diffstat (limited to 'sys-cluster/drbd/drbd-8.0.6.ebuild')
-rw-r--r-- | sys-cluster/drbd/drbd-8.0.6.ebuild | 85 |
1 files changed, 85 insertions, 0 deletions
diff --git a/sys-cluster/drbd/drbd-8.0.6.ebuild b/sys-cluster/drbd/drbd-8.0.6.ebuild new file mode 100644 index 000000000000..079ec060df81 --- /dev/null +++ b/sys-cluster/drbd/drbd-8.0.6.ebuild @@ -0,0 +1,85 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-cluster/drbd/drbd-8.0.6.ebuild,v 1.1 2007/09/20 08:35:22 xmerlin Exp $ + +inherit eutils versionator linux-mod linux-info + +LICENSE="GPL-2" +KEYWORDS="~amd64 ~x86" + +MY_PV="${PV/_/}" +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}/${PN}-${MY_PV}.tar.gz" +HOMEPAGE="http://www.drbd.org" + +IUSE="" + +DEPEND="virtual/linux-sources" +RDEPEND="" +SLOT="0" +CONFIG_CHECK="CONNECTOR" + +S="${WORKDIR}/${PN}-${MY_PV}" + +pkg_setup() { + linux-mod_pkg_setup +} + +src_unpack() { + unpack ${A} + cd ${S} + + epatch ${FILESDIR}/${PN}-8.0.0-scripts.adjust_drbd_config_h.sh.patch || die +} + +src_compile() { + set_arch_to_kernel + + linux_chkconfig_present + + if kernel_is 2 6; then + emake -j1 KDIR=${KERNEL_DIR} O=${KBUILD_OUTPUT} || die "compile problem" + else + cp -R /usr/src/linux-${KV} ${WORKDIR} + emake -j1 KDIR=/${WORKDIR}/linux-${KV} O=${KBUILD_OUTPUT} || die "compile problem" + fi +} + +src_install() { + emake PREFIX=${D} install || die "install problem" + + # gentoo-ish init-script + newinitd ${FILESDIR}/${PN}-8.0.rc ${PN} || die + + # needed by drbd startup script + #keepdir /var/lib/drbd + + # docs + dodoc README ChangeLog COPYING ROADMAP INSTALL + #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*.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 "man 8 drbddisk" + einfo "man 8 drbdmeta" + einfo "" +} |