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
commit1f299566cecf4e13704ed45eb93ae9720571efcf (patch)
tree6381af3bc2a0fe5140228629da48832c2d7e279b
parentset autoconf explicitly to 2.5. Should solve bug #49137 by Matt Davis <mdavi... (diff)
downloadgentoo-2-1f299566cecf4e13704ed45eb93ae9720571efcf.tar.gz
gentoo-2-1f299566cecf4e13704ed45eb93ae9720571efcf.tar.bz2
gentoo-2-1f299566cecf4e13704ed45eb93ae9720571efcf.zip
Manifest recommit
-rw-r--r--net-p2p/gnunet/files/digest-gnunet-0.6.21
-rw-r--r--net-p2p/gnunet/gnunet-0.6.2.ebuild64
2 files changed, 0 insertions, 65 deletions
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
-}