summaryrefslogtreecommitdiff
blob: 6999b4befb91d067fe3835fff31b8ba81d3eee66 (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-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

inherit eutils qt4 toolchain-funcs

KEYWORDS="~x86"

MY_P=QDevelop-${PV}-1

DESCRIPTION="A development environment entirely dedicated to Qt4."
HOMEPAGE="http://qdevelop.org/"
SRC_URI="http://qdevelop.org/download/${MY_P}.zip"
LICENSE="GPL-2"
SLOT="0"
IUSE=""

RDEPEND="$(qt4_min_version 4.2)"
DEPEND="app-arch/unzip
		${RDEPEND}"

QT4_BUILT_WITH_USE_CHECK="sqlite3"
S=${WORKDIR}/${MY_P}

src_compile() {
	eqmake4
	emake CXX=$(tc-getCXX) || die "emake failed"
}

src_install() {
	dodoc ChangeLog.txt README.txt
	dobin bin/QDevelop
}