diff options
Diffstat (limited to 'sys-libs/tevent/tevent-0.9.21-r99.ebuild')
-rw-r--r-- | sys-libs/tevent/tevent-0.9.21-r99.ebuild | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/sys-libs/tevent/tevent-0.9.21-r99.ebuild b/sys-libs/tevent/tevent-0.9.21-r99.ebuild new file mode 100644 index 00000000..89f9e799 --- /dev/null +++ b/sys-libs/tevent/tevent-0.9.21-r99.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/tevent/tevent-0.9.21.ebuild,v 1.1 2014/01/18 23:19:27 polynomial-c Exp $ + +EAPI=5 +PYTHON_COMPAT=( python2_{6,7} ) + +inherit waf-utils python-single-r1 + +DESCRIPTION="Samba tevent library" +HOMEPAGE="http://tevent.samba.org/" +SRC_URI="http://samba.org/ftp/tevent/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="" + +RDEPEND=">=sys-libs/talloc-2.1.0[python] + ${PYTHON_DEPS}" + +DEPEND="${RDEPEND} + virtual/pkgconfig +" + +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +WAF_BINARY="${S}/buildtools/bin/waf" + +pkg_setup() { + python-single-r1_pkg_setup +} + +src_prepare() { + epatch "${FILESDIR}"/${PN}-remove-check-bsd-strtoll.patch +} + +src_install() { + waf-utils_src_install + python_export PYTHON_SITEDIR + insinto "${PYTHON_SITEDIR#${EPREFIX}}" + doins tevent.py + python_optimize +} |