summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaúl Porcel <armin76@gentoo.org>2008-02-25 14:11:07 +0000
committerRaúl Porcel <armin76@gentoo.org>2008-02-25 14:11:07 +0000
commita3b9d15204434df18cc17657346f5ac9e1cf06b4 (patch)
treed388bd55e316903cb66e8cf065b637a48e105210 /net-p2p/gnunet
parentsparc stable wrt #211204 (diff)
downloadgentoo-2-a3b9d15204434df18cc17657346f5ac9e1cf06b4.tar.gz
gentoo-2-a3b9d15204434df18cc17657346f5ac9e1cf06b4.tar.bz2
gentoo-2-a3b9d15204434df18cc17657346f5ac9e1cf06b4.zip
x86 stable, remove old
(Portage version: 2.1.4.4)
Diffstat (limited to 'net-p2p/gnunet')
-rw-r--r--net-p2p/gnunet/ChangeLog6
-rw-r--r--net-p2p/gnunet/gnunet-0.7.2c-r1.ebuild104
-rw-r--r--net-p2p/gnunet/gnunet-0.7.3-r1.ebuild4
3 files changed, 7 insertions, 107 deletions
diff --git a/net-p2p/gnunet/ChangeLog b/net-p2p/gnunet/ChangeLog
index ff2b62a0273a..2086b0514210 100644
--- a/net-p2p/gnunet/ChangeLog
+++ b/net-p2p/gnunet/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-p2p/gnunet
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/gnunet/ChangeLog,v 1.62 2008/02/19 02:57:40 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/gnunet/ChangeLog,v 1.63 2008/02/25 14:11:07 armin76 Exp $
+
+ 25 Feb 2008; Raúl Porcel <armin76@gentoo.org> -gnunet-0.7.2c-r1.ebuild,
+ gnunet-0.7.3-r1.ebuild:
+ x86 stable, remove old
19 Feb 2008; Brent Baude <ranger@gentoo.org> gnunet-0.7.3-r1.ebuild:
Marking gnunet-0.7.3-r1 ~ppc64 for bug 209851
diff --git a/net-p2p/gnunet/gnunet-0.7.2c-r1.ebuild b/net-p2p/gnunet/gnunet-0.7.2c-r1.ebuild
deleted file mode 100644
index e24a512174ed..000000000000
--- a/net-p2p/gnunet/gnunet-0.7.2c-r1.ebuild
+++ /dev/null
@@ -1,104 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/gnunet/gnunet-0.7.2c-r1.ebuild,v 1.1 2008/02/04 15:24:55 armin76 Exp $
-
-inherit eutils autotools
-
-S="${WORKDIR}/GNUnet-${PV}"
-DESCRIPTION="GNUnet is an anonymous, distributed, reputation based network."
-HOMEPAGE="http://gnunet.org/"
-SRC_URI="http://gnunet.org/download/GNUnet-${PV}.tar.bz2"
-#tests don't work
-RESTRICT="test"
-
-IUSE="ipv6 mysql sqlite ncurses nls gtk"
-KEYWORDS="~amd64 ~ppc ~sparc x86"
-LICENSE="GPL-2"
-SLOT="0"
-
-DEPEND=">=dev-libs/libgcrypt-1.2.0
- >=media-libs/libextractor-0.5.18a
- >=dev-libs/gmp-4.0.0
- gnome-base/libglade
- sys-libs/zlib
- net-misc/curl
- gtk? ( >=x11-libs/gtk+-2.6.10 )
- sys-apps/sed
- >=dev-scheme/guile-1.8.0
- ncurses? ( sys-libs/ncurses )
- mysql? ( >=virtual/mysql-4.0 )
- sqlite? ( >=dev-db/sqlite-3.0.8 )
- nls? ( sys-devel/gettext )"
-
-pkg_setup() {
- if ! use mysql && ! use sqlite; then
- einfo
- einfo "You need to specify at least one of 'mysql' or 'sqlite'"
- einfo "USE flag in order to have properly installed gnunet"
- einfo
- die "Invalid USE flag set"
- fi
-}
-
-pkg_preinst() {
- enewgroup gnunetd || die "Problem adding gnunetd group"
- enewuser gnunetd -1 -1 /dev/null gnunetd || die "Problem adding gnunetd user"
-}
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- # make mysql default sqstore if we do not compile sql support
- # (bug #107330)
- ! use sqlite && \
- sed -i 's:default "sqstore_sqlite":default "sqstore_mysql":' \
- contrib/config-daemon.in
-
- # we do not want to built gtk support with USE=-gtk
- if ! use gtk ; then
- sed -i "s:AC_DEFINE_UNQUOTED..HAVE_GTK.*:true:" configure.ac
- fi
-
- AT_M4DIR="${S}/m4" eautoreconf
-}
-
-src_compile() {
- local myconf
-
- use mysql || myconf="${myconf} --without-mysql"
-
- econf \
- $(use_with sqlite) \
- $(use_enable ipv6) \
- $(use_enable nls) \
- $(use_enable ncurses) \
- ${myconf} || die "econf failed"
-
- emake -j1 || die "emake failed"
-}
-
-src_install() {
- emake DESTDIR="${D}" -j1 install || die "make install failed"
- dodoc AUTHORS ChangeLog INSTALL NEWS PLATFORMS README README.fr UPDATING
- insinto /etc
- newins contrib/gnunet.root gnunet.conf
- docinto contrib
- dodoc contrib/*
- newinitd "${FILESDIR}"/${PN}.initd gnunet
- dodir /var/lib/gnunet
- chown gnunetd:gnunetd "${D}"/var/lib/gnunet
-}
-
-pkg_postinst() {
- # make sure permissions are ok
- chown -R gnunetd:gnunetd "${ROOT}"/var/lib/gnunet
-
- use ipv6 && ewarn "ipv6 support is -very- experimental and prone to bugs"
- einfo
- einfo "To configure"
- einfo " 1) Add user(s) to the gnunetd group"
- einfo " 2) Run 'gnunet-setup' to generate your client config file"
- einfo " 3) Run gnunet-setup -d as root to generate a server config file"
- einfo
-}
diff --git a/net-p2p/gnunet/gnunet-0.7.3-r1.ebuild b/net-p2p/gnunet/gnunet-0.7.3-r1.ebuild
index a123ac7a2fec..0fcfeb173dc7 100644
--- a/net-p2p/gnunet/gnunet-0.7.3-r1.ebuild
+++ b/net-p2p/gnunet/gnunet-0.7.3-r1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/gnunet/gnunet-0.7.3-r1.ebuild,v 1.2 2008/02/19 02:57:40 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/gnunet/gnunet-0.7.3-r1.ebuild,v 1.3 2008/02/25 14:11:07 armin76 Exp $
inherit eutils autotools
@@ -12,7 +12,7 @@ SRC_URI="http://gnunet.org/download/GNUnet-${PV}.tar.bz2"
RESTRICT="test"
IUSE="ipv6 mysql sqlite ncurses nls gtk"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc x86"
LICENSE="GPL-2"
SLOT="0"