blob: 85a5cfd4ecb38953eece65dc6774cbff765a2971 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-dicts/qvortaro/qvortaro-0.3.0.ebuild,v 1.8 2008/07/27 19:20:14 carlo Exp $
EAPI=1
inherit eutils kde
DESCRIPTION="An Esperanto dictionary (currently only German)"
SRC_URI="http://download.berlios.de/qvortaro/qVortaro-${PV}.tar.bz2"
HOMEPAGE="http://qvortaro.berlios.de"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ~ppc"
IUSE=""
DEPEND="virtual/libc
x11-libs/qt:3"
S=${WORKDIR}/qVortaro-${PV}
src_compile() {
cd ${S}
${QTDIR}/bin/qmake QMAKE=${QTDIR}/bin/qmake || die "qmake failed"
set-kdedir
kde_src_compile make || die "make failed!"
}
src_install() {
make INSTALL_ROOT=${D} install
}
|