summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Hood <squinky86@gentoo.org>2004-05-12 17:41:59 +0000
committerJon Hood <squinky86@gentoo.org>2004-05-12 17:41:59 +0000
commite60e9b7ecbf1f6bb9d26487e3f9894e279fb29b2 (patch)
tree736e49c2796a33fc846c5a563ac3e2de3f9a43d6 /net-p2p
parentset autoconf explicitly to 2.5. Should solve bug #49137 by Matt Davis <mdavi... (diff)
downloadhistorical-e60e9b7ecbf1f6bb9d26487e3f9894e279fb29b2.tar.gz
historical-e60e9b7ecbf1f6bb9d26487e3f9894e279fb29b2.tar.bz2
historical-e60e9b7ecbf1f6bb9d26487e3f9894e279fb29b2.zip
Manifest recommit
Diffstat (limited to 'net-p2p')
-rw-r--r--net-p2p/gnunet/Manifest2
-rw-r--r--net-p2p/gnunet/files/digest-gnunet-0.6.21
-rw-r--r--net-p2p/gnunet/gnunet-0.6.2.ebuild64
3 files changed, 0 insertions, 67 deletions
diff --git a/net-p2p/gnunet/Manifest b/net-p2p/gnunet/Manifest
index ea12e6f67c73..ddb6c9cf386f 100644
--- a/net-p2p/gnunet/Manifest
+++ b/net-p2p/gnunet/Manifest
@@ -3,13 +3,11 @@ MD5 ea51e97cb7566ab77de309b5ebce68a3 gnunet-0.6.1c.ebuild 1470
MD5 28fd4f448ca69666fe9a2b546885f5c7 gnunet-0.5.4-r1.ebuild 1269
MD5 430bf048a7eeec666adf0df79d08fff0 gnunet-0.6.2a.ebuild 1475
MD5 8842bc0976ada205d4da386fff3f966b gnunet-0.6.1b.ebuild 1199
-MD5 a1d972c91fe347b69a8f6071e3b93b2a gnunet-0.6.2.ebuild 1470
MD5 c7cad28a69e17d56a1948f013f900901 ChangeLog 3951
MD5 8aefbc0e49db723ca1ad02d0c409cd49 metadata.xml 160
MD5 7497a53319c18a07e6f673a925b1bf8c files/digest-gnunet-0.6.1b 67
MD5 99094e50a9e664c0f98757ec36e1b5fe files/digest-gnunet-0.6.1c 67
MD5 974a5b99dd02348e2111e88749e1e580 files/digest-gnunet-0.6.2a 67
MD5 c9f162707edf3372ba994a5d274c1280 files/digest-gnunet-0.5.5 65
-MD5 0e1a9b825d565da6bcddd0167198bcb2 files/digest-gnunet-0.6.2 66
MD5 d628356df7b12ee797cbd14ac6918610 files/gnunet 947
MD5 12b0bdd38d4a838fcc6d4e8b970870f5 files/digest-gnunet-0.5.4-r1 65
diff --git a/net-p2p/gnunet/files/digest-gnunet-0.6.2 b/net-p2p/gnunet/files/digest-gnunet-0.6.2
deleted file mode 100644
index d8e37f9c36d8..000000000000
--- a/net-p2p/gnunet/files/digest-gnunet-0.6.2
+++ /dev/null
@@ -1 +0,0 @@
-MD5 f53c9e17fcece9781f1e81eb5fb816a5 GNUnet-0.6.2.tar.bz2 1057957
diff --git a/net-p2p/gnunet/gnunet-0.6.2.ebuild b/net-p2p/gnunet/gnunet-0.6.2.ebuild
deleted file mode 100644
index f7a1d3286771..000000000000
--- a/net-p2p/gnunet/gnunet-0.6.2.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2004 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/gnunet/gnunet-0.6.2.ebuild,v 1.2 2004/05/02 17:57:37 dholm Exp $
-
-inherit libtool
-
-S="${WORKDIR}/GNUnet-${PV}"
-DESCRIPTION="GNUnet is an anonymous, distributed, reputation based network."
-HOMEPAGE="http://www.gnu.org/software/GNUnet/"
-SRC_URI="mirror://gnu/${PN}/GNUnet-${PV}.tar.bz2"
-RESTRICT="nomirror"
-
-IUSE="ipv6 gtk crypt mysql"
-
-KEYWORDS="~x86 ~ppc"
-LICENSE="GPL-2"
-SLOT="0"
-
-DEPEND=">=dev-libs/openssl-0.9.6d
- >=sys-libs/gdbm-1.8.0
- crypt? ( dev-libs/libgcrypt )
- gtk? ( =x11-libs/gtk+-1.2* )
- mysql? ( dev-db/mysql )
- >=media-libs/libextractor-0.3.1"
-
-src_compile() {
- elibtoolize
-
- local myconf
-
- if ! use gtk; then
- myconf="${myconf} --without-gtk"
- fi
-
- if ! use crypt; then
- myconf="${myconf} --without-gcrypt"
- fi
-
- if ! use mysql; then
- myconf="${myconf} --without-mysql"
- fi
-
- econf ${myconf} `use_enable ipv6` || die
-
- emake || die "emake failed"
-}
-
-src_install() {
- make DESTDIR=${D} install || die "make install failed"
- dodoc AUTHORS ChangeLog PLATFORMS README UPDATING
- insinto /etc
- newins contrib/gnunet.root gnunet.conf
- docinto contrib
- dodoc contrib/*
-}
-
-pkg_postinst() {
- use ipv6 && ewarn "ipv6 support is -very- experimental and prone to bug"
- einfo
- einfo "now copy an appropriate config file from"
- einfo "/usr/share/doc/${P}/contrib"
- einfo "to ~/.gnunet/gnunet.conf"
- einfo
-}