Gentoo Archives: gentoo-commits

From: "Sven Wegener (swegener)" <swegener@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-misc/x11vnc: ChangeLog x11vnc-0.9.5.ebuild
Date: Sat, 25 Oct 2008 08:55:16
Message-Id: E1KtevS-0007Jc-1T@stork.gentoo.org
1 swegener 08/10/25 08:55:14
2
3 Modified: ChangeLog
4 Added: x11vnc-0.9.5.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.2_rc12/cvs/Linux 2.6.27 x86_64)
8
9 Revision Changes Path
10 1.60 x11-misc/x11vnc/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/x11vnc/ChangeLog?rev=1.60&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/x11vnc/ChangeLog?rev=1.60&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/x11vnc/ChangeLog?r1=1.59&r2=1.60
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-misc/x11vnc/ChangeLog,v
19 retrieving revision 1.59
20 retrieving revision 1.60
21 diff -u -r1.59 -r1.60
22 --- ChangeLog 21 Sep 2008 10:40:05 -0000 1.59
23 +++ ChangeLog 25 Oct 2008 08:55:13 -0000 1.60
24 @@ -1,6 +1,11 @@
25 # ChangeLog for x11-misc/x11vnc
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/x11vnc/ChangeLog,v 1.59 2008/09/21 10:40:05 vapier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/x11vnc/ChangeLog,v 1.60 2008/10/25 08:55:13 swegener Exp $
29 +
30 +*x11vnc-0.9.5 (25 Oct 2008)
31 +
32 + 25 Oct 2008; Sven Wegener <swegener@g.o> +x11vnc-0.9.5.ebuild:
33 + Version bump.
34
35 21 Sep 2008; Mike Frysinger <vapier@g.o> x11vnc-0.9.3.ebuild,
36 x11vnc-0.9.4.ebuild:
37
38
39
40 1.1 x11-misc/x11vnc/x11vnc-0.9.5.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/x11vnc/x11vnc-0.9.5.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/x11vnc/x11vnc-0.9.5.ebuild?rev=1.1&content-type=text/plain
44
45 Index: x11vnc-0.9.5.ebuild
46 ===================================================================
47 # Copyright 1999-2008 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/x11-misc/x11vnc/x11vnc-0.9.5.ebuild,v 1.1 2008/10/25 08:55:13 swegener Exp $
50
51 DESCRIPTION="A VNC server for real X displays"
52 HOMEPAGE="http://www.karlrunge.com/x11vnc/"
53 SRC_URI="mirror://sourceforge/libvncserver/${P}.tar.gz"
54
55 LICENSE="GPL-2"
56 SLOT="0"
57 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
58 IUSE="jpeg zlib threads ssl crypt v4l xinerama avahi system-libvncserver"
59
60 RDEPEND="system-libvncserver? ( >=net-libs/libvncserver-0.9.1 )
61 zlib? ( sys-libs/zlib )
62 jpeg? ( media-libs/jpeg )
63 ssl? ( dev-libs/openssl )
64 avahi? ( >=net-dns/avahi-0.6.4 )
65 xinerama? ( x11-libs/libXinerama )
66 x11-libs/libXfixes
67 x11-libs/libXrandr
68 x11-libs/libX11
69 x11-libs/libXtst
70 x11-libs/libXdamage
71 x11-libs/libXext"
72
73 DEPEND="${RDEPEND}
74 x11-libs/libXt
75 xinerama? ( x11-proto/xineramaproto )
76 x11-proto/inputproto
77 x11-proto/trapproto
78 x11-proto/recordproto
79 x11-proto/xproto
80 x11-proto/xextproto"
81
82 src_compile() {
83 local myconf=""
84
85 # we need to force threads on, because our system libvncserver gets build with thread support
86 use system-libvncserver && myconf="--with-pthread"
87
88 econf \
89 $(use_with system-libvncserver) \
90 $(use_with avahi) \
91 $(use_with xinerama) \
92 $(use_with ssl) \
93 $(use_with ssl crypto) \
94 $(use_with crypt) \
95 $(use_with v4l) \
96 $(use_with jpeg) \
97 $(use_with zlib) \
98 $(use_with threads pthread) \
99 ${myconf} \
100 || die "econf failed"
101 emake || die "emake failed"
102 }
103
104 src_install() {
105 emake DESTDIR="${D}" install || die "make install failed"
106 dodoc x11vnc/{ChangeLog,README}
107 }