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
commitf5074d83bca49b1db10bef05d962e8e418723e27 (patch)
tree9642c421e004f9b852755842c2d822e14e8b0830 /net-misc/ucarp
parentadded the stack'd version of the .2 profile just to keep consistency (diff)
downloadhistorical-f5074d83bca49b1db10bef05d962e8e418723e27.tar.gz
historical-f5074d83bca49b1db10bef05d962e8e418723e27.tar.bz2
historical-f5074d83bca49b1db10bef05d962e8e418723e27.zip
Initial import. Closes #50647.
Diffstat (limited to 'net-misc/ucarp')
-rw-r--r--net-misc/ucarp/ChangeLog9
-rw-r--r--net-misc/ucarp/Manifest3
-rw-r--r--net-misc/ucarp/files/digest-ucarp-0.71
-rw-r--r--net-misc/ucarp/ucarp-0.7.ebuild31
4 files changed, 44 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..5bb53410e417
--- /dev/null
+++ b/net-misc/ucarp/Manifest
@@ -0,0 +1,3 @@
+MD5 b0ba646fe512dd39e08ad9466dfc99f8 ChangeLog 331
+MD5 f6abd6d588cfd9f2b528a75fb56a7667 ucarp-0.7.ebuild 730
+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
+
+}