diff options
author | Zac Medico <zmedico@gentoo.org> | 2013-08-13 09:54:31 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2013-08-13 09:54:31 +0000 |
commit | 1e6cfe41de4a9ae82f37173c689fce625516e72b (patch) | |
tree | 07fa8a94890d33cff41c53c80a2c48a02530c494 /sys-libs | |
parent | Stable for alpha, wrt bug #478748 (diff) | |
download | gentoo-2-1e6cfe41de4a9ae82f37173c689fce625516e72b.tar.gz gentoo-2-1e6cfe41de4a9ae82f37173c689fce625516e72b.tar.bz2 gentoo-2-1e6cfe41de4a9ae82f37173c689fce625516e72b.zip |
Fix for prefix and add ~arm-linux + ~x86-linux keywords.
(Portage version: 2.2.0/cvs/Linux i686, signed Manifest commit with key 0xFDE8EF85AE5719A3)
Diffstat (limited to 'sys-libs')
-rw-r--r-- | sys-libs/tevent/ChangeLog | 5 | ||||
-rw-r--r-- | sys-libs/tevent/tevent-0.9.19.ebuild | 7 |
2 files changed, 8 insertions, 4 deletions
diff --git a/sys-libs/tevent/ChangeLog b/sys-libs/tevent/ChangeLog index 44e6e20fd4a2..ef4bc39cf514 100644 --- a/sys-libs/tevent/ChangeLog +++ b/sys-libs/tevent/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-libs/tevent # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/tevent/ChangeLog,v 1.39 2013/08/06 12:22:41 polynomial-c Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/tevent/ChangeLog,v 1.40 2013/08/13 09:54:31 zmedico Exp $ + + 13 Aug 2013; Zac Medico <zmedico@gentoo.org> tevent-0.9.19.ebuild: + Fix for prefix and add ~arm-linux + ~x86-linux keywords. 06 Aug 2013; Lars Wendler <polynomial-c@gentoo.org> tevent-0.9.19.ebuild: Added python_optimize call. diff --git a/sys-libs/tevent/tevent-0.9.19.ebuild b/sys-libs/tevent/tevent-0.9.19.ebuild index a5612c57471b..148467ae18bd 100644 --- a/sys-libs/tevent/tevent-0.9.19.ebuild +++ b/sys-libs/tevent/tevent-0.9.19.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/tevent/tevent-0.9.19.ebuild,v 1.2 2013/08/06 12:22:41 polynomial-c Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/tevent/tevent-0.9.19.ebuild,v 1.3 2013/08/13 09:54:31 zmedico Exp $ EAPI=5 PYTHON_COMPAT=( python2_{6,7} ) @@ -13,7 +13,7 @@ SRC_URI="http://samba.org/ftp/tevent/${P}.tar.gz" LICENSE="GPL-3" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux" IUSE="" RDEPEND=">=sys-libs/talloc-2.0.8[python] @@ -33,7 +33,8 @@ pkg_setup() { src_install() { waf-utils_src_install - insinto $(python_get_sitedir) + python_export PYTHON_SITEDIR + insinto "${PYTHON_SITEDIR#${EPREFIX}}" doins tevent.py python_optimize } |