summaryrefslogtreecommitdiff
blob: 91bb7ba57993c1ac62061ff1d1a6122aff47bd68 (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
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=6

inherit eutils multilib toolchain-funcs

DESCRIPTION="VNC viewer that adds encryption security to VNC connections"
HOMEPAGE="http://www.karlrunge.com/x11vnc/ssvnc.html"
SRC_URI="mirror://sourceforge/ssvnc/${P}.src.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86 ~amd64-linux ~arm-linux ~x86-linux"
IUSE="java"

RDEPEND="sys-libs/zlib
	virtual/jpeg:0
	dev-libs/openssl:0=
	dev-lang/tk:0
	net-misc/stunnel
	java? ( virtual/jre:* )
	x11-terms/xterm
	x11-libs/libXaw
	x11-libs/libX11
	x11-libs/libXext
	x11-libs/libXmu
	x11-libs/libXt"
DEPEND="${RDEPEND}
	java? ( virtual/jdk )"

PATCHES=( "${FILESDIR}"/${PN}-1.0.29-build.patch )

src_prepare() {
	default

	sed -i \
		-e "/^LIB/s:lib/:$(get_libdir)/:" \
		-e "$(use java || echo '/^JSRC/s:=.*:=:')" \
		Makefile || die
	sed -i \
		-e '/^CC/s:=.*:+= $(CFLAGS) $(CPPFLAGS) $(LDFLAGS):' \
		vncstorepw/Makefile || die

	cp "${FILESDIR}"/Makefile.libvncauth vnc_unixsrc/libvncauth/Makefile || die
	cd "${S}"/vnc_unixsrc/vncviewer || die
	sed -n '/^SRCS/,/^$/p' Imakefile > Makefile.in || die
	cp "${FILESDIR}"/Makefile.vncviewer Makefile || die
}

src_compile() {
	tc-export AR CC CXX RANLIB
	emake all
}

src_install() {
	emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install
	dodoc README
}