blob: 6ed4e3d4b692bd163fcd7afbff5295ae44c7a7bb (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-p2p/qtella/qtella-0.5.4.ebuild,v 1.9 2004/05/04 05:09:32 eradicator Exp $
IUSE=""
IUSE=""
inherit kde-base
use kde && need-kde 3
use kde || DEPEND="$DEPEND >=x11-libs/qt-3*"
S=${WORKDIR}/${P}
SRC_URI="mirror://sourceforge/qtella/${P}.tar.gz"
RESTRICT="nomirror"
HOMEPAGE="http://www.qtella.net"
DESCRIPTION="Excellent QT/KDE Gnutella Client"
SLOT="3"
LICENSE="GPL-2"
KEYWORDS="x86 ~ppc"
src_compile() {
local myconfig
use kde && kde_src_compile myconf
use kde && myconfig="${myconf}"
use kde || myconfig="--with-kde=no --prefix=/usr --host=${CHOST} \
--with-x --enable-mitshm --with-xinerama --with-qt-dir=${QTDIR} \
--enable-mt --disable-debug --without-debug"
./configure ${myconfig} || die
emake || die
}
|