summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Phillips <rphillips@gentoo.org>2002-08-19 00:34:46 +0000
committerRyan Phillips <rphillips@gentoo.org>2002-08-19 00:34:46 +0000
commit4702d1377ae6544d7635ee0d4ac42b1508cf7982 (patch)
tree824669dd7987beeac9cdbf68adcae4c820ebc03e /net-p2p/gnunet
parentFixes #6239. Credits to Bret Towe (diff)
downloadgentoo-2-4702d1377ae6544d7635ee0d4ac42b1508cf7982.tar.gz
gentoo-2-4702d1377ae6544d7635ee0d4ac42b1508cf7982.tar.bz2
gentoo-2-4702d1377ae6544d7635ee0d4ac42b1508cf7982.zip
New version.
Diffstat (limited to 'net-p2p/gnunet')
-rw-r--r--net-p2p/gnunet/ChangeLog8
-rw-r--r--net-p2p/gnunet/files/digest-gnunet-0.4.41
-rw-r--r--net-p2p/gnunet/gnunet-0.4.4.ebuild41
3 files changed, 49 insertions, 1 deletions
diff --git a/net-p2p/gnunet/ChangeLog b/net-p2p/gnunet/ChangeLog
index 5b66c9727436..28a3d938d55c 100644
--- a/net-p2p/gnunet/ChangeLog
+++ b/net-p2p/gnunet/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for net-p2p/gnunet
# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/gnunet/ChangeLog,v 1.1 2002/07/10 18:42:29 rphillips Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/gnunet/ChangeLog,v 1.2 2002/08/19 00:34:46 rphillips Exp $
+
+*gnunet-0.4.4 (18 Aug 2002)
+
+ 18 Aug 2002; Ryan Phillips <rphillips@gentoo.org> gnunet-0.4.4.ebuild :
+
+ New version
*gnunet-0.4.2 (10 Jul 2002)
diff --git a/net-p2p/gnunet/files/digest-gnunet-0.4.4 b/net-p2p/gnunet/files/digest-gnunet-0.4.4
new file mode 100644
index 000000000000..bad5f79c2cf9
--- /dev/null
+++ b/net-p2p/gnunet/files/digest-gnunet-0.4.4
@@ -0,0 +1 @@
+MD5 92e9b9708577b677af0242c3880949a8 GNUnet-0.4.4.tar.bz2 213043
diff --git a/net-p2p/gnunet/gnunet-0.4.4.ebuild b/net-p2p/gnunet/gnunet-0.4.4.ebuild
new file mode 100644
index 000000000000..0252731e41ce
--- /dev/null
+++ b/net-p2p/gnunet/gnunet-0.4.4.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/gnunet/gnunet-0.4.4.ebuild,v 1.1 2002/08/19 00:34:46 rphillips Exp $
+
+S=${WORKDIR}/GNUnet-${PV}
+DESCRIPTION="GNUnet is an anonymous, distributed, reputation based network."
+HOMEPAGE="http://www.ovmj.org/GNUnet/index.php3"
+SRC_URI="http://www.ovmj.org/GNUnet/download/GNUnet-${PV}.tar.bz2"
+
+SLOT="0"
+LICENSE="GPL-2"
+KEYWORDS="x86"
+
+DEPEND=">=dev-libs/openssl-0.9.6d
+ >=sys-libs/gdbm-1.8.0
+ =dev-libs/glib-1.2*
+ =x11-libs/gtk+-1.2*
+ >=dev-libs/libextractor-0.1.0"
+
+RDEPEND="${DEPEND}"
+
+src_compile () {
+ econf || die "./configure failed"
+ emake || die
+}
+
+src_install () {
+ make DESTDIR=${D} install || die
+ dodoc AUTHORS COPYING INSTALL NEWS README
+ mkdir ${D}/usr/share/gnunet
+ cp ${S}/contrib/gnunet.conf* ${D}/usr/share/gnunet
+ cp ${FILESDIR}/gnunet ${D}/usr/share/gnunet
+
+}
+
+pkg_postinstall () {
+ einfo "Default configuration files are provided in /usr/share/gnunet"
+ einfo "An example rc script for gentoo is also available and "
+ einfo "should be run by permanent nodes."
+ einfo "Read the docs for more details"
+}