blob: b973fa9c6df669f44845eb05edbf9e6e417612c9 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-cluster/csync2/csync2-1.29.ebuild,v 1.2 2006/03/12 23:34:51 xmerlin Exp $
DESCRIPTION="Cluster synchronization tool."
SRC_URI="http://oss.linbit.com/csync2/${P}.tar.gz"
HOMEPAGE="http://oss.linbit.com/csync2/"
LICENSE="GPL-2"
KEYWORDS="x86"
IUSE=""
DEPEND=">=net-libs/librsync-0.9.5
=dev-db/sqlite-2.8*
>=net-libs/gnutls-1.0.0
"
RDEPEND="${DEPEND}"
SLOT="0"
src_compile() {
econf --localstatedir=/var || die
emake || die
}
src_install() {
make DESTDIR=${D} localstatedir=${D}/var install || die "install problem"
insinto /etc/xinetd.d
newins ${FILESDIR}/${PN}.xinetd ${PN} || die
dodoc AUTHORS COPYING ChangeLog INSTALL NEWS README TODO
}
pkg_postinst() {
echo
einfo "After you setup your conf file, edit the xinetd"
einfo "entry in /etc/xinetd.d/${PN} to enable, then"
einfo "start xinetd: /etc/init.d/xinetd start"
echo
einfo "To add ${PN} to your services file just run"
einfo "this command after you install:"
echo
einfo "emerge --config =${PF}"
}
pkg_config() {
einfo "Updating /etc/services"
{ grep -v ^${PN} /etc/services;
echo "csync2 30865/tcp"
} > /etc/services.new
mv -f /etc/services.new /etc/services
}
|