2012-02-12 17:08:45 +04:00
|
|
|
# Copyright 1999-2012 Gentoo Foundation
|
2011-11-09 11:33:19 +04:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
2012-02-12 17:08:45 +04:00
|
|
|
# $Header: /var/cvsroot/gentoo-x86/sys-libs/tevent/tevent-0.9.14-r1.ebuild,v 1.1 2012/02/12 12:28:08 maksbotan Exp $
|
2011-11-09 11:33:19 +04:00
|
|
|
|
2012-02-12 17:08:45 +04:00
|
|
|
EAPI=4
|
2011-11-09 11:33:19 +04:00
|
|
|
PYTHON_DEPEND="2"
|
|
|
|
|
|
|
|
inherit waf-utils python
|
|
|
|
|
|
|
|
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 ~hppa ~ppc ~ppc64 ~x86 ~x86-fbsd"
|
|
|
|
IUSE=""
|
|
|
|
|
|
|
|
RDEPEND=">=dev-lang/python-2.4.2
|
|
|
|
>=sys-libs/talloc-2.0.6[python]"
|
|
|
|
|
|
|
|
DEPEND="${RDEPEND}
|
|
|
|
dev-util/pkgconfig"
|
|
|
|
|
2012-02-12 17:08:45 +04:00
|
|
|
PATCHES=( "${FILESDIR}"/add-py-file-${PV}.patch
|
|
|
|
"${FILESDIR}"/tevent-version.patch )
|
2011-11-09 11:33:19 +04:00
|
|
|
WAF_BINARY="${S}/buildtools/bin/waf"
|
|
|
|
|
|
|
|
pkg_setup() {
|
|
|
|
python_set_active_version 2
|
|
|
|
python_pkg_setup
|
|
|
|
}
|
2012-02-12 17:08:45 +04:00
|
|
|
|
|
|
|
src_install() {
|
|
|
|
waf-utils_src_install
|
|
|
|
insinto $(python_get_sitedir)
|
|
|
|
doins tevent.py
|
|
|
|
}
|
|
|
|
|
|
|
|
pkg_postinst() {
|
|
|
|
python_mod_optimize tevent.py
|
|
|
|
}
|
|
|
|
|
|
|
|
pkg_postrm() {
|
|
|
|
python_mod_cleanup tevent.py
|
|
|
|
}
|