diff options
author | BlackNoxis <steven.darklight@gmail.com> | 2014-02-15 23:24:26 +0200 |
---|---|---|
committer | BlackNoxis <steven.darklight@gmail.com> | 2014-02-15 23:24:26 +0200 |
commit | 7224c1253228e5c29c78cb3f0f26ce34770f2356 (patch) | |
tree | 1684924656132935256e034f35f92abee6623265 /net-p2p/gnunet-gtk/gnunet-gtk-0.9.0_pre1.ebuild |
Added ebuilds for kogaion desktop
Diffstat (limited to 'net-p2p/gnunet-gtk/gnunet-gtk-0.9.0_pre1.ebuild')
-rw-r--r-- | net-p2p/gnunet-gtk/gnunet-gtk-0.9.0_pre1.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/net-p2p/gnunet-gtk/gnunet-gtk-0.9.0_pre1.ebuild b/net-p2p/gnunet-gtk/gnunet-gtk-0.9.0_pre1.ebuild new file mode 100644 index 00000000..69ed2efa --- /dev/null +++ b/net-p2p/gnunet-gtk/gnunet-gtk-0.9.0_pre1.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ +# Nonofficial ebuild by Ycarus. For new version look here : http://gentoo.zugaina.org/ +# This ebuild is a small modification of the official gnunet-gtk ebuild + +inherit eutils autotools + +MY_PV=${PV/_pre/pre} +DESCRIPTION="Graphical front end for GNUnet." +HOMEPAGE="http://gnunet.org/" +SRC_URI="ftp://ftp.gnu.org/gnu/gnunet/${PN}-${MY_PV}.tar.gz" + +KEYWORDS="~amd64 ~ppc64 ~x86" +LICENSE="GPL-2" +SLOT="0" +IUSE="" + +DEPEND=">=x11-libs/gtk+-2.20.0 + >=net-p2p/gnunet-${PV} + >=gnome-base/libglade-2.0" + +S=${WORKDIR}/${PN}-${MY_PV} + +src_unpack() { + unpack ${A} + cd "${S}" + AT_M4DIR="${S}/m4" eautoreconf +} + +src_compile() { + econf --with-gnunet=/usr || die "econf failed" + emake || die "emake failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" +} + |