blob: b91d1821403a2ee8e0f2f7b6e2aecfe4c0593879 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit cmake-utils
DESCRIPTION="Powerful GUI manager for the Sqlite3 database"
HOMEPAGE="http://sqliteman.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~arm x86"
IUSE=""
RDEPEND="
dev-qt/qtcore:4
dev-qt/qtgui:4
dev-qt/qtsql:4[sqlite]
x11-libs/qscintilla:=[qt4(-)]"
DEPEND="${RDEPEND}"
DOCS=( AUTHORS README )
PATCHES=( "${FILESDIR}/${P}-lpthread.patch" )
src_prepare() {
# remove bundled lib
rm -rf "${S}"/${PN}/qscintilla2 || die
cmake-utils_src_prepare
}
|