Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-misc/x11vnc: ChangeLog x11vnc-0.9.13.ebuild
Date: Sun, 20 Nov 2011 01:06:38
Message-Id: 20111120003154.A2E1B2004B@flycatcher.gentoo.org
1 radhermit 11/11/20 00:31:54
2
3 Modified: ChangeLog
4 Added: x11vnc-0.9.13.ebuild
5 Log:
6 Version bump (bug #384407).
7
8 (Portage version: 2.2.0_alpha73/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.96 x11-misc/x11vnc/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/x11vnc/ChangeLog?rev=1.96&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/x11vnc/ChangeLog?rev=1.96&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/x11vnc/ChangeLog?r1=1.95&r2=1.96
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-misc/x11vnc/ChangeLog,v
20 retrieving revision 1.95
21 retrieving revision 1.96
22 diff -u -r1.95 -r1.96
23 --- ChangeLog 1 Nov 2011 03:56:58 -0000 1.95
24 +++ ChangeLog 20 Nov 2011 00:31:54 -0000 1.96
25 @@ -1,6 +1,12 @@
26 # ChangeLog for x11-misc/x11vnc
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/x11vnc/ChangeLog,v 1.95 2011/11/01 03:56:58 ssuominen Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/x11vnc/ChangeLog,v 1.96 2011/11/20 00:31:54 radhermit Exp $
30 +
31 +*x11vnc-0.9.13 (20 Nov 2011)
32 +
33 + 20 Nov 2011; Tim Harder <radhermit@g.o> +x11vnc-0.9.13.ebuild,
34 + +files/x11vnc-0.9.13-warnings.patch:
35 + Version bump (bug #384407).
36
37 01 Nov 2011; Samuli Suominen <ssuominen@g.o> x11vnc-0.9.9.ebuild,
38 x11vnc-0.9.12.ebuild:
39
40
41
42 1.1 x11-misc/x11vnc/x11vnc-0.9.13.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/x11vnc/x11vnc-0.9.13.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/x11vnc/x11vnc-0.9.13.ebuild?rev=1.1&content-type=text/plain
46
47 Index: x11vnc-0.9.13.ebuild
48 ===================================================================
49 # Copyright 1999-2011 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/x11-misc/x11vnc/x11vnc-0.9.13.ebuild,v 1.1 2011/11/20 00:31:54 radhermit Exp $
52
53 EAPI="4"
54
55 inherit eutils
56
57 DESCRIPTION="A VNC server for real X displays"
58 HOMEPAGE="http://www.karlrunge.com/x11vnc/"
59 SRC_URI="mirror://sourceforge/libvncserver/${P}.tar.gz"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~sparc-solaris ~x64-solaris ~x86-solaris"
64 IUSE="avahi crypt fbcon +jpeg ssl system-libvncserver threads tk xinerama +zlib"
65
66 RDEPEND="system-libvncserver? ( >=net-libs/libvncserver-0.9.7[threads=,jpeg=,zlib=] )
67 !system-libvncserver? (
68 zlib? ( sys-libs/zlib )
69 jpeg? ( virtual/jpeg:0 )
70 )
71 ssl? ( dev-libs/openssl )
72 tk? ( dev-lang/tk )
73 avahi? ( >=net-dns/avahi-0.6.4 )
74 xinerama? ( x11-libs/libXinerama )
75 x11-libs/libXfixes
76 x11-libs/libXrandr
77 x11-libs/libX11
78 >=x11-libs/libXtst-1.1.0
79 x11-libs/libXdamage
80 x11-libs/libXext"
81 DEPEND="${RDEPEND}
82 x11-libs/libXt
83 xinerama? ( x11-proto/xineramaproto )
84 x11-proto/inputproto
85 x11-proto/trapproto
86 x11-proto/recordproto
87 x11-proto/xproto
88 x11-proto/xextproto"
89
90 pkg_setup() {
91 if use avahi && ! use threads ; then
92 ewarn "Non-native avahi support has been enabled."
93 ewarn "Native avahi support can be enabled by also enabling the threads USE flag."
94 fi
95 }
96
97 src_prepare() {
98 epatch "${FILESDIR}"/${P}-warnings.patch
99 }
100
101 src_configure() {
102 # --without-v4l because of missing video4linux 2.x support wrt #389079
103 econf \
104 $(use_with system-libvncserver) \
105 $(use_with avahi) \
106 $(use_with xinerama) \
107 $(use_with ssl) \
108 $(use_with ssl crypto) \
109 $(use_with crypt) \
110 --without-v4l \
111 $(use_with jpeg) \
112 $(use_with zlib) \
113 $(use_with threads pthread) \
114 $(use_with fbcon fbdev)
115 }
116
117 src_install() {
118 emake DESTDIR="${D}" install
119 dodoc x11vnc/{ChangeLog,README}
120 # Remove include files, which conflict with net-libs/libvncserver
121 rm -rf "${D}"/usr/include
122 }