blob: 7894434d8123b9bb6f58dd6b42f7a9ffade5cdd6 (
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
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Prakash Shetty (Crux) <ps@gnuos.org>
A=${P}.tar.bz2
S=${WORKDIR}/${P}
DESCRIPTION="A IRC Client for KDE"
SRC_URI="ftp://ftp.kvirc.net/kvirc/2.1.1/source/${A}"
HOMEPAGE="http://www.kvirc.net"
DEPEND=">=sys-libs/glibc-2.1.3
>=x11-libs/qt-x11-2.3"
src_compile() {
cd ${S}
try ./configure --with-kde-support
}
src_install () {
cd ${S}
try make kvirc DESTDIR=${D}
try make install DESTDIR=${D}
try make docs DESTDIR=${D}
}
|