blob: cbb5905901e53ac6df9a9ddbbf2aabcbe9e706bf (
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
80
81
82
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-cluster/keepalived/keepalived-1.1.13-r1.ebuild,v 1.12 2008/01/13 09:04:34 vapier Exp $
inherit flag-o-matic autotools
DESCRIPTION="add a strong & robust keepalive facility to the Linux Virtual Server project"
HOMEPAGE="http://www.keepalived.org/"
SRC_URI="http://www.keepalived.org/software/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 hppa ia64 ppc ppc64 s390 sparc x86"
IUSE="debug profile"
RDEPEND="dev-libs/popt
sys-apps/iproute2
dev-libs/openssl"
DEPEND="${RDEPEND}
=sys-kernel/linux-headers-2.6*"
src_unpack() {
unpack ${A}
# This patch allows us to avoid needing kernel sources for the configure phase
EPATCH_OPTS="-p1 -d${S}" epatch \
"${FILESDIR}"/${PN}-1.1.13-do-not-need-kernel-sources.patch
cd "${S}"
eautoreconf
# Prepare a suitable copy of the IPVS headers
# So that we don't need kernel sources at all!
mkdir -p "${S}"/include/net || die "Failed to prepare ipvs header directory"
cp -f "${FILESDIR}"/${PN}-1.1.13-linux-2.6.21-ip_vs.h \
"${S}"/include/net/ip_vs.h || die "Failed to add ipvs header"
# Ensure that keepalived can find the header that we are injecting
append-flags -I"${S}"/include
}
src_compile() {
local myconf
myconf="--enable-vrrp"
# This is not an error
# The upstream makefile adds man/
myconf="${myconf} --mandir=/usr/share"
use debug && myconf="${myconf} --enable-debug"
# disable -fomit-frame-pointer for profiling
if use profile; then
filter-flags -fomit-frame-pointer
myconf="${myconf} --enable-profile"
fi
econf ${myconf} STRIP=/bin/true || die "configure failed"
emake || die "emake failed (myconf=${myconf})"
}
src_install() {
# Not parallel safe
emake -j1 install DESTDIR="${D}" || die "emake install failed"
newinitd "${FILESDIR}"/init-keepalived keepalived
dodoc doc/keepalived.conf.SYNOPSIS
dodoc README CONTRIBUTORS INSTALL VERSION ChangeLog AUTHOR TODO
docinto genhash
dodoc genhash/README genhash/AUTHOR genhash/ChangeLog genhash/VERSION
# This was badly named by upstream, it's more HOWTO than anything else.
newdoc INSTALL INSTALL+HOWTO
# Security risk to bundle SSL certs
rm -f "${D}"/etc/keepalived/samples/*.pem
}
pkg_postinst() {
elog "For internal debug support, compile with USE=debug via package.use"
}
|