Gentoo Archives: gentoo-commits

From: "Michele Noberasco (s4t4n)" <s4t4n@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/directvnc: ChangeLog directvnc-0.7.6.ebuild
Date: Fri, 03 Sep 2010 15:01:30
Message-Id: 20100903150125.1585320051@flycatcher.gentoo.org
1 s4t4n 10/09/03 15:01:25
2
3 Modified: ChangeLog
4 Added: directvnc-0.7.6.ebuild
5 Log:
6 Version bump. Closes bug #305107.
7 (Portage version: 2.1.8.3/cvs/Linux i686)
8
9 Revision Changes Path
10 1.23 net-misc/directvnc/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/directvnc/ChangeLog?rev=1.23&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/directvnc/ChangeLog?rev=1.23&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/directvnc/ChangeLog?r1=1.22&r2=1.23
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-misc/directvnc/ChangeLog,v
19 retrieving revision 1.22
20 retrieving revision 1.23
21 diff -u -r1.22 -r1.23
22 --- ChangeLog 3 Sep 2010 14:07:46 -0000 1.22
23 +++ ChangeLog 3 Sep 2010 15:01:24 -0000 1.23
24 @@ -1,6 +1,11 @@
25 # ChangeLog for net-misc/directvnc
26 # Copyright 2002-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-misc/directvnc/ChangeLog,v 1.22 2010/09/03 14:07:46 s4t4n Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-misc/directvnc/ChangeLog,v 1.23 2010/09/03 15:01:24 s4t4n Exp $
29 +
30 +*directvnc-0.7.6 (03 Sep 2010)
31 +
32 + 03 Sep 2010; Michele Noberasco <s4t4n@g.o> +directvnc-0.7.6.ebuild:
33 + Version bump. Closes bug #305107.
34
35 03 Sep 2010; Michele Noberasco <s4t4n@g.o> directvnc-0.7.5.ebuild,
36 directvnc-0.7.5-r1.ebuild:
37
38
39
40 1.1 net-misc/directvnc/directvnc-0.7.6.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/directvnc/directvnc-0.7.6.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/directvnc/directvnc-0.7.6.ebuild?rev=1.1&content-type=text/plain
44
45 Index: directvnc-0.7.6.ebuild
46 ===================================================================
47 # Copyright 1999-2010 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/net-misc/directvnc/directvnc-0.7.6.ebuild,v 1.1 2010/09/03 15:01:25 s4t4n Exp $
50
51 inherit eutils
52
53 DESCRIPTION="Very thin VNC client for unix framebuffer systems"
54 HOMEPAGE="http://drinkmilk.github.com/directvnc/"
55 SRC_URI="http://github.com/downloads/drinkmilk/${PN}/${P}.tar.gz"
56
57 LICENSE="GPL-2"
58 SLOT="0"
59 KEYWORDS="~x86 ~ppc ~amd64"
60 IUSE="mouse"
61
62 RDEPEND="dev-libs/DirectFB
63 >=media-libs/jpeg-6b-r7"
64
65 DEPEND="${RDEPEND}
66 dev-util/pkgconfig
67 >=sys-apps/sed-4
68 x11-proto/xproto"
69
70 src_unpack() {
71 unpack ${A}
72
73 # Make mouse support optional
74 cd "${S}/src"
75 use mouse || epatch "${FILESDIR}/${PN}-mouse.patch"
76 }
77
78 src_compile() {
79 econf || die
80
81 # Fix bug #116148, DFBGraphicsDeviceDescription is no longer present in
82 # newer DirectFB version, but the application never uses it :-/
83 local comment_out="DFBCardCapabilities caps;"
84 sed -i -e "s:${comment_out}://${comment_out}:" src/dfb.c
85
86 emake DEBUGFLAGS="${CFLAGS}" AM_LDFLAGS="${LDFLAGS}" || die
87 }
88
89 src_install() {
90 make install DESTDIR="${D}" || die
91 rm -rf "${D}/usr/doc"
92 dodoc AUTHORS ChangeLog NEWS README THANKS TODO
93 }