1 |
# Copyright 1999-2001 Gentoo Technologies, Inc. |
2 |
# Distributed under the terms of the GNU General Public License, v2 or later |
3 |
# Author Bart Verwilst <verwilst@gentoo.org> |
4 |
# $Header: /home/cvsroot/gentoo-x86/net-misc/qtella-0.2.3.ebuild |
5 |
|
6 |
S=${WORKDIR}/${P} |
7 |
DESCRIPTION="QTella 0.2.3" |
8 |
SRC_URI="http://prdownloads.sourceforge.net/qtella/qtella-0.2.3.tar.gz" |
9 |
|
10 |
HOMEPAGE="http://qtella.sourceforge.net" |
11 |
|
12 |
DEPEND="virtual/glibc |
13 |
>=x11-libs/qt-x11-2.2.1 |
14 |
>=kde-base/kdelibs-2.1" |
15 |
|
16 |
src_compile() { |
17 |
|
18 |
./configure --prefix=/usr --host=${CHOST} || die |
19 |
make || die "Make sure QT is built with 'qtmt' set in USE, QTella will not compile otherwise" |
20 |
|
21 |
} |
22 |
src_install() { |
23 |
make prefix=${D}/usr install || die |
24 |
} |
25 |
|