blob: 13691e2baad2c80f275e708e9b435b8a84343c30 (
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-misc/krfb/krfb-0.6.ebuild,v 1.16 2004/03/14 17:29:47 mr_bones_ 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
}
|