diff options
author | Tomas Chvatal <scarabeus@gentoo.org> | 2012-02-18 18:05:33 +0000 |
---|---|---|
committer | Tomas Chvatal <scarabeus@gentoo.org> | 2012-02-18 18:05:33 +0000 |
commit | 74685af80e817aac3bcb59274d6f103fa5a55606 (patch) | |
tree | 636f2e4b0c1c7d979cd5bb1608c74c2ab8e1562d /dev-libs/beecrypt | |
parent | Stable for HPPA (bug #391237). (diff) | |
download | gentoo-2-74685af80e817aac3bcb59274d6f103fa5a55606.tar.gz gentoo-2-74685af80e817aac3bcb59274d6f103fa5a55606.tar.bz2 gentoo-2-74685af80e817aac3bcb59274d6f103fa5a55606.zip |
Add mising python_pkg_setup wrt bug#404385.
(Portage version: 2.2.0_alpha87/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/beecrypt')
-rw-r--r-- | dev-libs/beecrypt/ChangeLog | 5 | ||||
-rw-r--r-- | dev-libs/beecrypt/beecrypt-4.2.1.ebuild | 7 |
2 files changed, 9 insertions, 3 deletions
diff --git a/dev-libs/beecrypt/ChangeLog b/dev-libs/beecrypt/ChangeLog index 63c93593380e..99099ba9de67 100644 --- a/dev-libs/beecrypt/ChangeLog +++ b/dev-libs/beecrypt/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-libs/beecrypt # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/beecrypt/ChangeLog,v 1.79 2012/02/18 09:13:22 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/beecrypt/ChangeLog,v 1.80 2012/02/18 18:05:33 scarabeus Exp $ + + 18 Feb 2012; Tomáš Chvátal <scarabeus@gentoo.org> beecrypt-4.2.1.ebuild: + Add mising python_pkg_setup wrt bug#404385. 18 Feb 2012; Tomáš Chvátal <scarabeus@gentoo.org> beecrypt-4.2.1.ebuild: Bump to eapi4 and add static-libs useflag. diff --git a/dev-libs/beecrypt/beecrypt-4.2.1.ebuild b/dev-libs/beecrypt/beecrypt-4.2.1.ebuild index aac0eba76958..fa1cd31c8146 100644 --- a/dev-libs/beecrypt/beecrypt-4.2.1.ebuild +++ b/dev-libs/beecrypt/beecrypt-4.2.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/beecrypt/beecrypt-4.2.1.ebuild,v 1.15 2012/02/18 09:13:22 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/beecrypt/beecrypt-4.2.1.ebuild,v 1.16 2012/02/18 18:05:33 scarabeus Exp $ EAPI=4 PYTHON_DEPEND="python? 2" @@ -33,7 +33,10 @@ DOCS="BUGS README BENCHMARKS NEWS" REQUIRED_USE="cxx? ( threads )" pkg_setup() { - use python && python_set_active_version 2 + if use python; then + python_set_active_version 2 + python_pkg_setup + fi } src_prepare() { |