diff options
author | Raúl Porcel <armin76@gentoo.org> | 2007-01-12 21:10:03 +0000 |
---|---|---|
committer | Raúl Porcel <armin76@gentoo.org> | 2007-01-12 21:10:03 +0000 |
commit | c01fc4864bc7bf5da11f84c80f7ccc0cdafa99eb (patch) | |
tree | ef4dec72522ed1e2228cd2de00f8ff56bf91567a /net-p2p/gnunet | |
parent | Remove eselect-mysql, as it was only useful with mysql-slotted and should thu... (diff) | |
download | gentoo-2-c01fc4864bc7bf5da11f84c80f7ccc0cdafa99eb.tar.gz gentoo-2-c01fc4864bc7bf5da11f84c80f7ccc0cdafa99eb.tar.bz2 gentoo-2-c01fc4864bc7bf5da11f84c80f7ccc0cdafa99eb.zip |
Version bump, bug 134198
(Portage version: 2.1.1-r2)
Diffstat (limited to 'net-p2p/gnunet')
-rw-r--r-- | net-p2p/gnunet/ChangeLog | 7 | ||||
-rw-r--r-- | net-p2p/gnunet/files/digest-gnunet-0.7.0e | 3 | ||||
-rw-r--r-- | net-p2p/gnunet/gnunet-0.7.0e.ebuild | 121 |
3 files changed, 130 insertions, 1 deletions
diff --git a/net-p2p/gnunet/ChangeLog b/net-p2p/gnunet/ChangeLog index 8c51d78825c3..7759d6b68aee 100644 --- a/net-p2p/gnunet/ChangeLog +++ b/net-p2p/gnunet/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-p2p/gnunet # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/gnunet/ChangeLog,v 1.51 2007/01/10 18:46:10 peper Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/gnunet/ChangeLog,v 1.52 2007/01/12 21:10:03 armin76 Exp $ + +*gnunet-0.7.0e (12 Jan 2007) + + 12 Jan 2007; Raúl Porcel <armin76@gentoo.org> +gnunet-0.7.0e.ebuild: + Version bump, bug 134198 10 Jan 2007; Piotr Jaroszyński <peper@gentoo.org> Manifest: Fix Manifest. diff --git a/net-p2p/gnunet/files/digest-gnunet-0.7.0e b/net-p2p/gnunet/files/digest-gnunet-0.7.0e new file mode 100644 index 000000000000..46ddfa53d396 --- /dev/null +++ b/net-p2p/gnunet/files/digest-gnunet-0.7.0e @@ -0,0 +1,3 @@ +MD5 774c00477a14341935b5706da8134179 GNUnet-0.7.0e.tar.bz2 1405884 +RMD160 210a6a4eee385f76f4bc34816fe7e15812f8a227 GNUnet-0.7.0e.tar.bz2 1405884 +SHA256 eea28505a825ce7404300c9dae25a7ebefbc681fc32082db0f92191ab7e14f18 GNUnet-0.7.0e.tar.bz2 1405884 diff --git a/net-p2p/gnunet/gnunet-0.7.0e.ebuild b/net-p2p/gnunet/gnunet-0.7.0e.ebuild new file mode 100644 index 000000000000..a7ff34e8adce --- /dev/null +++ b/net-p2p/gnunet/gnunet-0.7.0e.ebuild @@ -0,0 +1,121 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/gnunet/gnunet-0.7.0e.ebuild,v 1.1 2007/01/12 21:10:03 armin76 Exp $ + +WANT_AUTOCONF="latest" +WANT_AUTOMAKE="latest" + +inherit eutils autotools + +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" +#tests don't work +RESTRICT="test" + +IUSE="ipv6 mysql sqlite guile 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.13 + >=dev-libs/gmp-4.0.0 + sys-libs/zlib + gtk? ( >=x11-libs/gtk+-2.6.10 ) + sys-apps/sed + ncurses? ( sys-libs/ncurses ) + mysql? ( >=virtual/mysql-4.0 ) + sqlite? ( >=dev-db/sqlite-3.0.8 ) + guile? ( >=dev-scheme/guile-1.6.0 ) + 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 gnunet || die "Problem adding gnunet group" + enewuser gnunet -1 -1 /dev/null gnunet || die "Problem adding gnunet 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 + + if use ipv6; then + if use amd64; then + ewarn "ipv6 in GNUnet does not currently work with amd64 and has been disabled" + else + myconf="${myconf} --enable-ipv6" + fi + fi + + use mysql || myconf="${myconf} --without-mysql" + + econf \ + $(use_with sqlite) \ + $(use_enable nls) \ + $(use_enable ncurses) \ + $(use_enable guile) \ + ${myconf} || die "econf failed" + + emake -j1 || die "emake failed" +} + +src_install() { + make install DESTDIR=${D} || die "make install failed" + dodoc ABOUT-NLS AUTHORS ChangeLog COPYING INSTALL NEWS PLATFORMS README README.fr UPDATING + insinto /etc + newins contrib/gnunet.root gnunet.conf + docinto contrib + dodoc contrib/* + exeinto /etc/init.d + newexe ${FILESDIR}/${PN}-2 gnunet + dodir /var/lib/GNUnet + chown gnunet:gnunet ${D}/var/lib/GNUnet +} + +pkg_postinst() { + # make sure permissions are ok + chown -R gnunet:gnunet /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 gnunet group" + einfo " 2) Run 'gnunet-setup' to generate your client config file" + einfo " 3) Run gnunet-setup -d to generate a server config file" + einfo " 4) Optionally copy the .gnunet/gnunetd.conf into /etc and" + einfo "\tuse as a global server config file:" + einfo "$ gnunet-setup -d" + einfo "# cp ~/.gnunet/gnunetd.conf /etc/" + einfo +} + |