blob: d018072656b9c949e9571cfc0134a146780315a8 (
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
34
35
36
37
38
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlitebrowser/sqlitebrowser-1.3.ebuild,v 1.1 2006/12/18 14:19:57 drizzt Exp $
inherit eutils qt3
DESCRIPTION="SQLite Database Browser"
HOMEPAGE="http://sqlitebrowser.sourceforge.net/"
SRC_URI="mirror://sourceforge/sqlitebrowser/${P}-src.tar.gz"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
RDEPEND="=dev-db/sqlite-3*
$(qt_min_version 3.12)"
DEPEND="${RDEPEND}"
S="${WORKDIR}/${PN}/${PN}"
src_unpack() {
unpack ${A}
cd "${S}"
rm -r sqlite_source
sed -i 's/\r/\n/g' *.{cpp,h}
epatch "${FILESDIR}"/${P}-externalsqlite.patch
}
src_compile() {
qmake ${PN}.pro || die "qmake failed"
emake || die "emake failed"
}
src_install() {
dobin sqlitebrowser || die "installing failed"
}
|