From 8ba05b9d224dae517d8557cee9db2e14e762cbbf Mon Sep 17 00:00:00 2001 From: KronoZed Date: Tue, 9 Feb 2016 20:15:24 +0300 Subject: [PATCH] Create poezio-0.9.0.ebuild --- net-im/poezio/poezio-0.9.0.ebuild | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 net-im/poezio/poezio-0.9.0.ebuild diff --git a/net-im/poezio/poezio-0.9.0.ebuild b/net-im/poezio/poezio-0.9.0.ebuild new file mode 100644 index 0000000..39bcbea --- /dev/null +++ b/net-im/poezio/poezio-0.9.0.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=3 +PYTHON_DEPEND="3" + +inherit python + +DESCRIPTION="Console XMPP client that looks like most famous IRC clients" +ATTACH_ID="91" +HOMEPAGE="http://poezio.eu/" +SRC_URI="http://dev.louiz.org/attachments/download/${ATTACH_ID}/${P}.tar.xz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +#dnspython dep is optional and skipped (requires privately patched, python3 version) +DEPEND=">=dev-python/sleekxmpp-1.0_beta5" +RDEPEND="${DEPEND}" + +src_install() +{ + emake DESTDIR="${D}" prefix="/usr/" install || die "make install failed" +}