blob: 46da3440344f3ec62d2b7484e0be42f83e1359aa (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-p2p/dc-qt/dc-qt-0.1.1.ebuild,v 1.3 2004/09/06 06:00:26 squinky86 Exp $
IUSE=""
DESCRIPTION="Direct Connect Text Client, QT Gui"
HOMEPAGE="http://dc-qt.sourceforge.net/"
SRC_URI="mirror://sourceforge/dc-qt/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~ppc"
DEPEND=">=x11-libs/qt-3.2
>=net-p2p/dctc-0.85.9
>=media-libs/xine-lib-1_rc5"
src_compile() {
econf || die
emake || die
}
src_install() {
make DESTDIR=${D} install || die
}
|