diff options
author | Georgy Yakovlev <gyakovlev@gentoo.org> | 2019-12-13 15:30:40 -0800 |
---|---|---|
committer | Georgy Yakovlev <gyakovlev@gentoo.org> | 2019-12-13 15:30:40 -0800 |
commit | 8d541f597773ba09ab9c1b9770b9717266b65180 (patch) | |
tree | 82faa034e528d9e13bb349face8303f7ddb39d6b /net-irc | |
parent | net-misc/ntpclient: update upstream github repo name (diff) | |
download | gentoo-8d541f597773ba09ab9c1b9770b9717266b65180.tar.gz gentoo-8d541f597773ba09ab9c1b9770b9717266b65180.tar.bz2 gentoo-8d541f597773ba09ab9c1b9770b9717266b65180.zip |
net-irc/weechat: fix build with python2
Closes: https://bugs.gentoo.org/702706
Package-Manager: Portage-2.3.79, Repoman-2.3.17
Signed-off-by: Georgy Yakovlev <gyakovlev@gentoo.org>
Diffstat (limited to 'net-irc')
-rw-r--r-- | net-irc/weechat/weechat-2.7.ebuild | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/net-irc/weechat/weechat-2.7.ebuild b/net-irc/weechat/weechat-2.7.ebuild index f7a938e7645d..545aee9eafe2 100644 --- a/net-irc/weechat/weechat-2.7.ebuild +++ b/net-irc/weechat/weechat-2.7.ebuild @@ -51,6 +51,7 @@ DEPEND="${RDEPEND} " BDEPEND=" + virtual/pkgconfig doc? ( >=dev-ruby/asciidoctor-1.5.4 ) man? ( >=dev-ruby/asciidoctor-1.5.4 ) nls? ( >=sys-devel/gettext-0.15 ) @@ -135,6 +136,10 @@ src_configure() { -DENABLE_XFER=$(usex xfer) ) + if use python; then + python_is_python3 || mycmakeargs+=( -DENABLE_PYTHON2=ON ) + fi + cmake-utils_src_configure } |