Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 492278
Collapse All | Expand All

(-)x11vnc-0.9.13.ebuild.orig (-3 / +7 lines)
Lines 4-10 Link Here
4
4
5
EAPI="4"
5
EAPI="4"
6
6
7
inherit eutils
7
inherit eutils flag-o-matic
8
8
9
DESCRIPTION="A VNC server for real X displays"
9
DESCRIPTION="A VNC server for real X displays"
10
HOMEPAGE="http://www.karlrunge.com/x11vnc/"
10
HOMEPAGE="http://www.karlrunge.com/x11vnc/"
Lines 13-19 Link Here
13
LICENSE="GPL-2"
13
LICENSE="GPL-2"
14
SLOT="0"
14
SLOT="0"
15
KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 s390 sh sparc x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~sparc-solaris ~x64-solaris ~x86-solaris"
15
KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 s390 sh sparc x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~sparc-solaris ~x64-solaris ~x86-solaris"
16
IUSE="avahi crypt fbcon +jpeg ssl system-libvncserver threads tk xinerama +zlib"
16
IUSE="avahi crypt fbcon +jpeg ssl system-libvncserver threads tk xinerama +zlib ipv6"
17
17
18
RDEPEND="system-libvncserver? ( >=net-libs/libvncserver-0.9.7[threads=,jpeg=,zlib=] )
18
RDEPEND="system-libvncserver? ( >=net-libs/libvncserver-0.9.7[threads=,jpeg=,zlib=] )
19
	!system-libvncserver? (
19
	!system-libvncserver? (
Lines 52-57 Link Here
52
52
53
src_configure() {
53
src_configure() {
54
	# --without-v4l because of missing video4linux 2.x support wrt #389079
54
	# --without-v4l because of missing video4linux 2.x support wrt #389079
55
    if ! use ipv6; then
56
		append-cppflags -DX11VNC_IPV6=0
57
	fi
55
	econf \
58
	econf \
56
		$(use_with system-libvncserver) \
59
		$(use_with system-libvncserver) \
57
		$(use_with avahi) \
60
		$(use_with avahi) \
Lines 63-69 Link Here
63
		$(use_with jpeg) \
66
		$(use_with jpeg) \
64
		$(use_with zlib) \
67
		$(use_with zlib) \
65
		$(use_with threads pthread) \
68
		$(use_with threads pthread) \
66
		$(use_with fbcon fbdev)
69
		$(use_with fbcon fbdev) \
70
		$(use_with ipv6) 
67
}
71
}
68
72
69
src_install() {
73
src_install() {

Return to bug 492278