app-office/ledger: Fix build with >=boost-1.70
authorAndreas Sturmlechner <asturm@gentoo.org>
Thu, 18 Jul 2019 20:57:31 +0000 (22:57 +0200)
committerAndreas Sturmlechner <asturm@gentoo.org>
Thu, 18 Jul 2019 20:58:03 +0000 (22:58 +0200)
Closes: https://bugs.gentoo.org/654326
Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
app-office/ledger/ledger-3.1.2.ebuild

index 1fe3082e204bbd67c1c46aff404b1ae058a0b1cd..d027cb0f7359a69ad3303684d8d758a9cde88e71 100644 (file)
@@ -62,10 +62,13 @@ pkg_setup() {
 
 src_prepare() {
        cmake-utils_src_prepare
-       sed -r -i \
-               -e '/set.BOOST_PYTHON/s/python27/python-2.7/g' \
-               "${S}/CMakeLists.txt" \
-               || die "Failed to update CMakeLists.txt for python2.7 boost"
+
+       if ! has_version ">=dev-libs/boost-1.70"; then
+               sed -r -i \
+                       -e '/set.BOOST_PYTHON/s/python27/python-2.7/g' \
+                       "${S}/CMakeLists.txt" \
+                       || die "Failed to update CMakeLists.txt for python2.7 boost"
+       fi
 
        # Want to type "info ledger" not "info ledger3"
        sed -i -e 's/ledger3/ledger/g' \