Gentoo Archives: gentoo-commits

From: Matthew Thode <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/rasdaemon/
Date: Fri, 31 May 2019 16:25:29
Message-Id: 1559319917.d8072837af9ad05b3ef81039811096d2d8c87b16.prometheanfire@gentoo
1 commit: d8072837af9ad05b3ef81039811096d2d8c87b16
2 Author: Conrad Kostecki <conrad <AT> kostecki <DOT> com>
3 AuthorDate: Fri May 31 09:52:26 2019 +0000
4 Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Fri May 31 16:25:17 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8072837
7
8 app-admin/rasdaemon: fix sqlite use flag
9
10 Closes: https://bugs.gentoo.org/687056
11 Package-Manager: Portage-2.3.67, Repoman-2.3.13
12 Signed-off-by: Conrad Kostecki <conrad <AT> kostecki.com>
13 Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
14
15 app-admin/rasdaemon/rasdaemon-0.6.2-r4.ebuild | 5 +----
16 1 file changed, 1 insertion(+), 4 deletions(-)
17
18 diff --git a/app-admin/rasdaemon/rasdaemon-0.6.2-r4.ebuild b/app-admin/rasdaemon/rasdaemon-0.6.2-r4.ebuild
19 index 5659b1666af..19491e34040 100644
20 --- a/app-admin/rasdaemon/rasdaemon-0.6.2-r4.ebuild
21 +++ b/app-admin/rasdaemon/rasdaemon-0.6.2-r4.ebuild
22 @@ -33,6 +33,7 @@ pkg_setup() {
23
24 src_configure() {
25 local myconf=(
26 + $(use_enable sqlite sqlite3)
27 --enable-abrt-report
28 --enable-aer
29 --enable-arm
30 @@ -40,13 +41,9 @@ src_configure() {
31 --enable-hisi-ns-decode
32 --enable-mce
33 --enable-non-standard
34 - --enable-sqlite3
35 --includedir="/usr/include/${PN}"
36 --localstatedir=/var
37 )
38 - if use sqlite ; then
39 - myconf="${myconf} --enable-sqlite3)"
40 - fi
41
42 econf "${myconf[@]}"
43 }