summaryrefslogtreecommitdiff
path: root/dev-db/sqlitebrowser/sqlitebrowser-3.11.1-r1.ebuild
diff options
context:
space:
mode:
authorRick Farina <zerochaos@gentoo.org>2019-03-25 13:40:53 -0400
committerRick Farina <zerochaos@gentoo.org>2019-03-25 13:40:53 -0400
commit4490e7c52c46f224a17e469ee0635da41d6a715a (patch)
tree4befa01f47c5cf8ada16e1b445dc39b92041a1a2 /dev-db/sqlitebrowser/sqlitebrowser-3.11.1-r1.ebuild
parent996809d1fca2495641195e1d708bdbf962acc69c (diff)
downloadgentoo-4490e7c52c46f224a17e469ee0635da41d6a715a.tar.gz
gentoo-4490e7c52c46f224a17e469ee0635da41d6a715a.tar.bz2
gentoo-4490e7c52c46f224a17e469ee0635da41d6a715a.zip
dev-db/sqlitebrowser: add missing dep
Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Rick Farina <zerochaos@gentoo.org>
Diffstat (limited to 'dev-db/sqlitebrowser/sqlitebrowser-3.11.1-r1.ebuild')
-rw-r--r--dev-db/sqlitebrowser/sqlitebrowser-3.11.1-r1.ebuild65
1 files changed, 65 insertions, 0 deletions
diff --git a/dev-db/sqlitebrowser/sqlitebrowser-3.11.1-r1.ebuild b/dev-db/sqlitebrowser/sqlitebrowser-3.11.1-r1.ebuild
new file mode 100644
index 000000000000..c763fd949dca
--- /dev/null
+++ b/dev-db/sqlitebrowser/sqlitebrowser-3.11.1-r1.ebuild
@@ -0,0 +1,65 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake-utils desktop xdg
+
+DESCRIPTION="SQLite Database Browser"
+HOMEPAGE="https://sqlitebrowser.org"
+SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3 MPL-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+BDEPEND="
+ dev-qt/linguist-tools:5
+ test? ( dev-qt/qttest:5 )
+"
+DEPEND="
+ app-editors/qhexedit2
+ dev-cpp/antlr-cpp:2
+ dev-db/sqlite:3
+ >=dev-libs/qcustomplot-2.0.0[qt5(+)]
+ dev-qt/qtconcurrent:5
+ dev-qt/qtcore:5
+ dev-qt/qtgui:5
+ dev-qt/qtnetwork:5[ssl]
+ dev-qt/qtwidgets:5
+ >=x11-libs/qscintilla-2.10.1:=[qt5(+)]
+ dev-qt/qtprintsupport:5
+ dev-qt/qtxml:5
+
+"
+RDEPEND="${DEPEND}
+ dev-qt/qtsvg:5
+"
+
+PATCHES=( "${FILESDIR}"/${PN}-3.11.1-unbundle.patch )
+
+src_prepare() {
+ cmake-utils_src_prepare
+ rm -r libs || die
+ sed -i 's#"src/qhexedit.h"#<qhexedit.h>#' src/EditDialog.cpp || die
+ #find libs/{antlr-2.7.7,qcustomplot-source,qscintilla} -delete || die
+
+ sed -e "/^project/ s/\".*\"/sqlitebrowser/" -i CMakeLists.txt || die
+
+ if ! use test; then
+ sed -e "/qt5_use_modules/ s/ Test//" -i CMakeLists.txt || die
+ fi
+}
+
+src_configure() {
+ local mycmakeargs=(
+ -DENABLE_TESTING=$(usex test)
+ )
+ cmake-utils_src_configure
+}
+
+src_install() {
+ cmake-utils_src_install
+ doicon images/sqlitebrowser.svg
+}