diff options
author | Christian Zoffoli <xmerlin@gentoo.org> | 2005-01-31 13:42:35 +0000 |
---|---|---|
committer | Christian Zoffoli <xmerlin@gentoo.org> | 2005-01-31 13:42:35 +0000 |
commit | 9008e011df61051c2bac9878ce40938977ebaee4 (patch) | |
tree | ca03a9c7c58e5b55f9adaaf1a62816c1bb45c28d /sys-cluster/drbd/drbd-0.7.10.ebuild | |
parent | Move a few packages that are now distributed with KDE. (diff) | |
download | gentoo-2-9008e011df61051c2bac9878ce40938977ebaee4.tar.gz gentoo-2-9008e011df61051c2bac9878ce40938977ebaee4.tar.bz2 gentoo-2-9008e011df61051c2bac9878ce40938977ebaee4.zip |
new bugfix release 0.7.10, removed old 0.7.9
(Portage version: 2.0.51-r15)
Diffstat (limited to 'sys-cluster/drbd/drbd-0.7.10.ebuild')
-rw-r--r-- | sys-cluster/drbd/drbd-0.7.10.ebuild | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/sys-cluster/drbd/drbd-0.7.10.ebuild b/sys-cluster/drbd/drbd-0.7.10.ebuild new file mode 100644 index 000000000000..504f96024997 --- /dev/null +++ b/sys-cluster/drbd/drbd-0.7.10.ebuild @@ -0,0 +1,78 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-cluster/drbd/drbd-0.7.10.ebuild,v 1.1 2005/01/31 13:42:35 xmerlin Exp $ + +inherit eutils versionator linux-mod + +LICENSE="GPL-2" +KEYWORDS="~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=">=sys-cluster/heartbeat-1.0.4" +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 "" + einfo "Please don't use XFS with drbd (see drbd mailing list archives)" + einfo "" + + emake KDIR=${KERNEL_DIR} || die "compile problem" +} + +src_install() { + make PREFIX=${D} install || die "install problem" + + # gentoo-ish init-script + dodir /etc/init.d + exeinto /etc/init.d + newexe ${FILESDIR}/drbd-0.7-init drbd || 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 "" +} |