summaryrefslogtreecommitdiff
path: root/dev-db/sqlitebrowser/sqlitebrowser-9999.ebuild
diff options
context:
space:
mode:
authorMattéo Rossillol‑‑Laruelle <beatussum@protonmail.com>2023-12-22 14:02:18 +0100
committerSam James <sam@gentoo.org>2024-01-20 12:22:55 +0000
commitf0c715b72c40a0cce096ebcb98315de5cba1b59a (patch)
tree89c8b51ce91b72c55e60d1a1c58a35ac6f9b1085 /dev-db/sqlitebrowser/sqlitebrowser-9999.ebuild
parent2f39812380d1201c475f46f8720431b51205a88b (diff)
downloadgentoo-f0c715b72c40a0cce096ebcb98315de5cba1b59a.tar.gz
gentoo-f0c715b72c40a0cce096ebcb98315de5cba1b59a.tar.bz2
gentoo-f0c715b72c40a0cce096ebcb98315de5cba1b59a.zip
dev-db/sqlitebrowser: revbump
Closes: https://bugs.gentoo.org/855254 Closes: https://bugs.gentoo.org/913047 Signed-off-by: Mattéo Rossillol‑‑Laruelle <beatussum@protonmail.com> Closes: https://github.com/gentoo/gentoo/pull/34420 Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-db/sqlitebrowser/sqlitebrowser-9999.ebuild')
-rw-r--r--dev-db/sqlitebrowser/sqlitebrowser-9999.ebuild14
1 files changed, 10 insertions, 4 deletions
diff --git a/dev-db/sqlitebrowser/sqlitebrowser-9999.ebuild b/dev-db/sqlitebrowser/sqlitebrowser-9999.ebuild
index d094723adf0a..cea98af250c9 100644
--- a/dev-db/sqlitebrowser/sqlitebrowser-9999.ebuild
+++ b/dev-db/sqlitebrowser/sqlitebrowser-9999.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
-inherit cmake xdg
+inherit cmake flag-o-matic xdg
DESCRIPTION="A light GUI editor for SQLite databases"
HOMEPAGE="https://sqlitebrowser.org/"
@@ -18,7 +18,7 @@ fi
LICENSE="GPL-3+ MPL-2.0"
SLOT="0"
-IUSE="test"
+IUSE="sqlcipher test"
RESTRICT="!test? ( test )"
DEPEND="
@@ -33,6 +33,7 @@ DEPEND="
>=dev-qt/qtwidgets-5.5:5
>=dev-qt/qtxml-5.5:5
>=x11-libs/qscintilla-2.8.10:=
+ sqlcipher? ( dev-db/sqlcipher )
"
BDEPEND="
@@ -61,7 +62,12 @@ src_configure() {
-DENABLE_TESTING=$(usex test)
-DFORCE_INTERNAL_QCUSTOMPLOT=OFF
-DFORCE_INTERNAL_QHEXEDIT=OFF
+ -Dsqlcipher=$(usex sqlcipher)
)
+ # https://bugs.gentoo.org/855254
+ append-flags -fno-strict-aliasing
+ filter-lto
+
cmake_src_configure
}