diff options
Diffstat (limited to 'net-misc/ucarp/ucarp-0.7.ebuild')
-rw-r--r-- | net-misc/ucarp/ucarp-0.7.ebuild | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/net-misc/ucarp/ucarp-0.7.ebuild b/net-misc/ucarp/ucarp-0.7.ebuild new file mode 100644 index 000000000000..84b31bf6e8c2 --- /dev/null +++ b/net-misc/ucarp/ucarp-0.7.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/ucarp/ucarp-0.7.ebuild,v 1.1 2004/07/13 19:29:26 tantive Exp $ + +DESCRIPTION="Userspace CARP implimentation allows hosts to share ip address." + +HOMEPAGE="http://www.ucarp.org/" +SRC_URI="http://www.pureftpd.org/ucarp/${P}.tar.bz2" +LICENSE="as-is" +SLOT="0" +KEYWORDS="~x86 ~amd64" +IUSE="" + +DEPEND=">=net-libs/libpcap-0.8.3-r1" + +src_compile() { + + ./configure \ + --host=${CHOST} \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man || die "./configure failed" + + emake || die "emake failed" +} + +src_install() { + + make DESTDIR=${D} install-strip || die + +} |