blob: 181c3b1478ea5817fb5b9247233f9e5124d3dabf (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-p2p/qtella/qtella-0.6.1.ebuild,v 1.6 2003/12/06 16:26:36 mholzer Exp $
inherit kde-base
IUSE="kde"
use kde && need-kde 3 || need-qt 3
SRC_URI="mirror://sourceforge/qtella/${P}.tar.gz"
RESTRICT="nomirror"
HOMEPAGE="http://www.qtella.net"
DESCRIPTION="Excellent QT/KDE Gnutella Client"
SLOT="3" # why??
LICENSE="GPL-2"
KEYWORDS="x86"
export MAKEOPTS="$MAKEOPTS -j1"
# weird workaround
PATCHES="${FILESDIR}/${P}-nokde.diff"
src_compile() {
kde_src_compile myconf
use kde || myconf="$myconf --with-kde=no"
kde_src_compile configure make
}
|