summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Imhof <tantive@gentoo.org>2004-07-13 19:29:26 +0000
committerMichael Imhof <tantive@gentoo.org>2004-07-13 19:29:26 +0000
commit3596345d0de78c7992d97fe8e16e340478661905 (patch)
tree9d05d1937343fc428e4a2f0edcd5cc3b48a0b3c8 /net-misc/ucarp
parentadded the stack'd version of the .2 profile just to keep consistency (diff)
downloadgentoo-2-3596345d0de78c7992d97fe8e16e340478661905.tar.gz
gentoo-2-3596345d0de78c7992d97fe8e16e340478661905.tar.bz2
gentoo-2-3596345d0de78c7992d97fe8e16e340478661905.zip
Initial import. Closes #50647.
Diffstat (limited to 'net-misc/ucarp')
-rw-r--r--net-misc/ucarp/ChangeLog9
-rw-r--r--net-misc/ucarp/Manifest2
-rw-r--r--net-misc/ucarp/files/digest-ucarp-0.71
-rw-r--r--net-misc/ucarp/ucarp-0.7.ebuild31
4 files changed, 43 insertions, 0 deletions
diff --git a/net-misc/ucarp/ChangeLog b/net-misc/ucarp/ChangeLog
new file mode 100644
index 000000000000..b2134d31bbb8
--- /dev/null
+++ b/net-misc/ucarp/ChangeLog
@@ -0,0 +1,9 @@
+# ChangeLog for net-misc/ucarp
+# Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-misc/ucarp/ChangeLog,v 1.1 2004/07/13 19:29:26 tantive Exp $
+
+*ucarp-0.7 (13 Jul 2004)
+
+ 13 Jul 2004; Michael Imhof <tantive@gentoo.org> +ucarp-0.7.ebuild:
+ Initial import. Closes #50647.
+
diff --git a/net-misc/ucarp/Manifest b/net-misc/ucarp/Manifest
new file mode 100644
index 000000000000..c4f46e340c29
--- /dev/null
+++ b/net-misc/ucarp/Manifest
@@ -0,0 +1,2 @@
+MD5 991f574478cf8b7f01f00f34d1cac1f3 ucarp-0.7.ebuild 636
+MD5 705d7cc5a9540cf4265ba8890308ef58 files/digest-ucarp-0.7 61
diff --git a/net-misc/ucarp/files/digest-ucarp-0.7 b/net-misc/ucarp/files/digest-ucarp-0.7
new file mode 100644
index 000000000000..ec61a81f962e
--- /dev/null
+++ b/net-misc/ucarp/files/digest-ucarp-0.7
@@ -0,0 +1 @@
+MD5 2373ccc588ed7d5ad9c43bdc02702e9b ucarp-0.7.tar.bz2 87647
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
+
+}