summaryrefslogtreecommitdiff
path: root/dev-db/sqlitebrowser/sqlitebrowser-3.5.1.ebuild
diff options
context:
space:
mode:
Diffstat (limited to 'dev-db/sqlitebrowser/sqlitebrowser-3.5.1.ebuild')
-rw-r--r--dev-db/sqlitebrowser/sqlitebrowser-3.5.1.ebuild71
1 files changed, 0 insertions, 71 deletions
diff --git a/dev-db/sqlitebrowser/sqlitebrowser-3.5.1.ebuild b/dev-db/sqlitebrowser/sqlitebrowser-3.5.1.ebuild
deleted file mode 100644
index d30919bd97c7..000000000000
--- a/dev-db/sqlitebrowser/sqlitebrowser-3.5.1.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-CMAKE_MAKEFILE_GENERATOR=ninja
-
-inherit eutils cmake-utils
-
-DESCRIPTION="SQLite Database Browser"
-HOMEPAGE="http://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="qt4 qt5 test"
-
-REQUIRED_USE="^^ ( qt4 qt5 )"
-
-RDEPEND="
- dev-db/sqlite:3
- dev-java/antlr:0[cxx]
- dev-libs/qcustomplot[qt5=]
- qt4? (
- dev-qt/qtcore:4
- dev-qt/qtgui:4
- )
- qt5? (
- dev-qt/qtnetwork:5
- dev-qt/qttest:5
- dev-qt/qtwidgets:5
- )"
-DEPEND="${RDEPEND}
- qt5? ( dev-qt/linguist-tools:5 )"
-
-PATCHES=( "${FILESDIR}"/${P}-unbundle.patch )
-
-src_prepare() {
- # https://github.com/qingfengxia/qhexedit still bundled
- find libs/{antlr-2.7.7,qcustomplot-source} -delete || die
- cmake-utils_src_prepare
-}
-
-src_configure() {
- local mycmakeargs=(
- $(cmake-utils_use_use qt5)
- )
- cmake-utils_src_configure
- if use test; then
- BUILD_DIR="${S}"/tests CMAKE_USE_DIR="${S}"/tests cmake-utils_src_configure
- fi
-}
-
-src_compile() {
- cmake-utils_src_compile
- if use test; then
- BUILD_DIR="${S}"/tests CMAKE_USE_DIR="${S}"/tests cmake-utils_src_compile
- fi
-}
-
-src_test() {
- tests/sqlb-unittests || die
-}
-
-src_install() {
- cmake-utils_src_install
- doicon images/sqlitebrowser.svg
- domenu distri/sqlitebrowser.desktop
-}