blob: c45aeb81f7da00212f1f16bc614b2c89cf535d68 (
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 Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/krfb/krfb-0.6.ebuild,v 1.17 2004/06/24 23:52:37 agriffis Exp $
inherit kde
LICENSE="GPL-2"
need-kde 3
DESCRIPTION="KDE Desktop Sharing Application (vnc protocol). Warning: included in >=kdenetwork-3.1!"
SRC_URI="http://www.tjansen.de/krfb/${P}.tar.bz2"
HOMEPAGE="http://www.tjansen.de/krfb/"
KEYWORDS="x86 sparc "
src_install() {
dodir /${PREFIX}/share/apps/krfb
make DESTDIR=${D} install || die
}
warning_msg() {
eerror "WARNING: this app is now part of kdenetwork-3.1. It is very much recommended that you"
eerror "upgrade to kde 3.1 instead of using this standalone app, because it is no longer being"
eerror "updated or fixed."
sleep 5
}
pkg_setup() {
warning_msg
}
pkg_postinst() {
warning_msg
}
|