diff options
author | Michael Imhof <tantive@gentoo.org> | 2004-09-19 19:02:21 +0000 |
---|---|---|
committer | Michael Imhof <tantive@gentoo.org> | 2004-09-19 19:02:21 +0000 |
commit | 9e6f0d2ccdb67138642e42a3df3916acc9db1fc8 (patch) | |
tree | ae014f60d4cf4919035a3f779ca85e254dd6cd7c /sys-cluster | |
parent | Cleaned out old ebuilds. (diff) | |
download | historical-9e6f0d2ccdb67138642e42a3df3916acc9db1fc8.tar.gz historical-9e6f0d2ccdb67138642e42a3df3916acc9db1fc8.tar.bz2 historical-9e6f0d2ccdb67138642e42a3df3916acc9db1fc8.zip |
Cleaned out old ebuild.
Diffstat (limited to 'sys-cluster')
-rw-r--r-- | sys-cluster/keepalived/ChangeLog | 5 | ||||
-rw-r--r-- | sys-cluster/keepalived/files/digest-keepalived-1.1.3 | 1 | ||||
-rw-r--r-- | sys-cluster/keepalived/keepalived-1.1.3.ebuild | 59 |
3 files changed, 4 insertions, 61 deletions
diff --git a/sys-cluster/keepalived/ChangeLog b/sys-cluster/keepalived/ChangeLog index 8b540fc76b33..149e50fd14fa 100644 --- a/sys-cluster/keepalived/ChangeLog +++ b/sys-cluster/keepalived/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-cluster/keepalived # Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-cluster/keepalived/ChangeLog,v 1.14 2004/09/03 19:44:42 pvdabeel Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-cluster/keepalived/ChangeLog,v 1.15 2004/09/19 19:02:21 tantive Exp $ + + 19 Sep 2004; Michael Imhof <tantive@gentoo.org> -keepalived-1.1.3.ebuild: + Cleaned out old ebuild. 03 Sep 2004; Pieter Van den Abeele <pvdabeel@gentoo.org> keepalived-1.1.3.ebuild, keepalived-1.1.5.ebuild, keepalived-1.1.6.ebuild, diff --git a/sys-cluster/keepalived/files/digest-keepalived-1.1.3 b/sys-cluster/keepalived/files/digest-keepalived-1.1.3 deleted file mode 100644 index e04bc3e01914..000000000000 --- a/sys-cluster/keepalived/files/digest-keepalived-1.1.3 +++ /dev/null @@ -1 +0,0 @@ -MD5 e8e185f46445b5250b6b18d8f7864495 keepalived-1.1.3.tar.gz 172864 diff --git a/sys-cluster/keepalived/keepalived-1.1.3.ebuild b/sys-cluster/keepalived/keepalived-1.1.3.ebuild deleted file mode 100644 index e090a4022a80..000000000000 --- a/sys-cluster/keepalived/keepalived-1.1.3.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-cluster/keepalived/keepalived-1.1.3.ebuild,v 1.8 2004/09/03 19:44:42 pvdabeel Exp $ - -DESCRIPTION="The main goal of the keepalived project is to add a strong & robust keepalive facility to the Linux Virtual Server project." -HOMEPAGE="http://www.keepalived.org" -LICENSE="GPL-2" - -DEPEND="dev-libs/popt - sys-apps/iproute2" - -SRC_URI="http://www.keepalived.org/software/${P}.tar.gz" - -IUSE="debug" -SLOT="0" -KEYWORDS="x86 ~sparc ~amd64 ppc" - -src_compile() { - local myconf - - myconf="--prefix=/" - - use debug && myconf="${myconf} --enable-debug" -# use profile && myconf="${myconf} --enable-profile" - - cd "${S}" - ./configure ${myconf} || die "configure failed" - emake || die "make failed (myconf=${myconf})" - -} - -src_install() { - - cd "${S}" - einstall || die - - exeinto /etc/init.d - newexe ${FILESDIR}/init-keepalived keepalived - - dodoc doc/* doc/samples/* - - -} - -pkg_postinst() { - - einfo "" - einfo "If you want Linux Virtual Server support in" - einfo "keepalived then you must emerge an LVS patched" - einfo "kernel like gentoo-sources, compile with ipvs" - einfo "support either as a module or built into the" - einfo "kernel, emerge the ipvsadm userland tools," - einfo "and reemerge keepalived." - einfo "" - einfo "For debug support add USE=\"debug\"" - einfo "to your /etc/make.conf" - einfo "" - -} |