Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-extra/libgda/
Date: Mon, 31 Dec 2018 21:49:46
Message-Id: 1546292959.33e0c87a28ce9c90d2f54ec8783b1bb3c76ea7d7.leio@gentoo
1 commit: 33e0c87a28ce9c90d2f54ec8783b1bb3c76ea7d7
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Mon Dec 31 21:48:16 2018 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Mon Dec 31 21:49:19 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33e0c87a
7
8 gnome-extra/libgda: fix USE=ldap build on 17.1 profiles
9
10 Without passing libdir-name to configure it always uses "lib",
11 which will fail on systems where /usr/lib is not a symlink to
12 /usr/lib64, when openldap is installed to lib64, as it is on
13 17.1 amd64 profiles. Unfortunately openldap still doesn't ship
14 pkgconfig files, but fortunately there's this configure knob
15 with which to teach it where openldap is.
16
17 Closes: https://bugs.gentoo.org/669728
18 Package-Manager: Portage-2.3.52, Repoman-2.3.12
19 Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>
20
21 gnome-extra/libgda/libgda-5.2.8.ebuild | 1 +
22 1 file changed, 1 insertion(+)
23
24 diff --git a/gnome-extra/libgda/libgda-5.2.8.ebuild b/gnome-extra/libgda/libgda-5.2.8.ebuild
25 index 0eb06d4b35c..6570bb39df7 100644
26 --- a/gnome-extra/libgda/libgda-5.2.8.ebuild
27 +++ b/gnome-extra/libgda/libgda-5.2.8.ebuild
28 @@ -143,6 +143,7 @@ src_configure() {
29 "$(use_with java java $JAVA_HOME)" \
30 $(use_enable json) \
31 $(use_with ldap) \
32 + --with-ldap-libdir-name="$(get_libdir)" \
33 $(use_with mdb mdb /usr) \
34 $(use_with mysql mysql /usr) \
35 $(use_with oci8 oracle) \