blob: 78b9cc454773cd8f032812f71185b4ae8b0f21f9 (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/tightvnc/tightvnc-1.2.9-r3.ebuild,v 1.8 2007/02/26 12:39:36 armin76 Exp $
inherit eutils toolchain-funcs
IUSE="java tcpd server"
S="${WORKDIR}/vnc_unixsrc"
DESCRIPTION="A great client/server software package allowing remote network access to graphical desktops."
SRC_URI="mirror://sourceforge/vnc-tight/${P}_unixsrc.tar.bz2"
HOMEPAGE="http://www.tightvnc.com/"
KEYWORDS="alpha amd64 ppc sparc x86"
LICENSE="GPL-2"
SLOT="0"
DEPEND="x11-libs/libX11
x11-libs/libXaw
x11-libs/libXmu
x11-libs/libXp
x11-libs/libXt
x11-proto/xextproto
x11-proto/xproto
server? (
x11-proto/inputproto
x11-proto/kbproto
x11-proto/printproto
)
>=x11-misc/imake-1
x11-misc/gccmakedep
~media-libs/jpeg-6b
tcpd? ( >=sys-apps/tcp-wrappers-7.6-r2 )
!net-misc/vnc"
RDEPEND="${DEPEND}
server? (
media-fonts/font-misc-misc
media-fonts/font-cursor-misc
x11-apps/rgb
x11-apps/xauth
x11-apps/xsetroot
)
java? ( || ( >=virtual/jdk-1.3.1 >=virtual/jre-1.3.1 ) )"
src_unpack() {
if ! use server;
then
echo
einfo "The 'server' USE flag will build tightvnc's server."
einfo "If '-server' is chosen only the client is built to save space."
einfo "Stop the build now if you need to add 'server' to USE flags.\n"
ebeep
epause 5
fi
unpack ${A} && cd ${S}
epatch "${FILESDIR}/${P}-gentoo.security.patch"
epatch "${FILESDIR}/${P}-imake-tmpdir.patch"
[[ "$(gcc-version)" == "3.4" ]] || [[ "$(gcc-major-version)" == "4" ]] && epatch ${FILESDIR}/${P}-gcc34.patch
epatch "${FILESDIR}/x86.patch"
epatch "${FILESDIR}/${P}-amd64.patch"
epatch "${FILESDIR}/${PN}-ppcsparc-server.patch"
epatch "${FILESDIR}/${P}-pathfixes.patch" # fixes bug 78385 and 146099
}
src_compile() {
xmkmf -a || die "xmkmf failed"
make CDEBUGFLAGS="${CFLAGS}" World || die
if use server; then
cd Xvnc && ./configure || die "Configure failed."
if use tcpd; then
local myextra="-lwrap"
use userland_Darwin || myextra="${myextra} -lnss_nis"
make EXTRA_LIBRARIES="${myextra}" \
CDEBUGFLAGS="${CFLAGS}" \
EXTRA_DEFINES="-DUSE_LIBWRAP=1" || die
else
make CDEBUGFLAGS="${CFLAGS}" || die
fi
fi
}
src_install() {
# the web based interface and the java viewer need the java class files
if use java; then
insinto /usr/share/tightvnc/classes
doins classes/*
fi
dodir /usr/share/man/man1 /usr/bin
./vncinstall ${D}/usr/bin ${D}/usr/share/man || die "vncinstall failed"
if ! use server; then
rm -f ${D}/usr/bin/vncserver
rm -f ${D}/usr/share/man/man1/{Xvnc,vncserver}*
fi
doicon ${FILESDIR}/vncviewer.png
make_desktop_entry vncviewer vncviewer vncviewer.png Network
dodoc ChangeLog README WhatsNew
use java && dodoc ${FILESDIR}/README.JavaViewer
newdoc vncviewer/README README.vncviewer
}
|