Gentoo Archives: gentoo-commits

From: "Bernard Cafarelli (voyageur)" <voyageur@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/x2goclient: ChangeLog x2goclient-3.01.5.ebuild x2goclient-2.0.1.24.ebuild x2goclient-2.99.3.ebuild
Date: Thu, 29 Apr 2010 13:40:15
Message-Id: 20100429134004.BD94F2C043@corvid.gentoo.org
1 voyageur 10/04/29 13:40:04
2
3 Modified: ChangeLog
4 Added: x2goclient-3.01.5.ebuild
5 Removed: x2goclient-2.0.1.24.ebuild x2goclient-2.99.3.ebuild
6 Log:
7 Version bump from NX overlay, update to qt4-r2, drop 2.x versions
8 (Portage version: 2.2_rc67/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.5 net-misc/x2goclient/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/x2goclient/ChangeLog?rev=1.5&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/x2goclient/ChangeLog?rev=1.5&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/x2goclient/ChangeLog?r1=1.4&r2=1.5
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-misc/x2goclient/ChangeLog,v
20 retrieving revision 1.4
21 retrieving revision 1.5
22 diff -u -r1.4 -r1.5
23 --- ChangeLog 6 Oct 2009 17:29:34 -0000 1.4
24 +++ ChangeLog 29 Apr 2010 13:40:04 -0000 1.5
25 @@ -1,6 +1,14 @@
26 # ChangeLog for net-misc/x2goclient
27 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-misc/x2goclient/ChangeLog,v 1.4 2009/10/06 17:29:34 ayoy Exp $
29 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/net-misc/x2goclient/ChangeLog,v 1.5 2010/04/29 13:40:04 voyageur Exp $
31 +
32 +*x2goclient-3.01.5 (29 Apr 2010)
33 +
34 + 29 Apr 2010; Bernard Cafarelli <voyageur@g.o>
35 + -x2goclient-2.0.1.24.ebuild, -files/x2goclient-2.0.1-noldap.patch,
36 + -x2goclient-2.99.3.ebuild, +x2goclient-3.01.5.ebuild,
37 + +files/x2goclient-3.01.5-noldap.patch:
38 + Version bump from NX overlay, update to qt4-r2, drop 2.x versions
39
40 06 Oct 2009; Dominik Kapusta <ayoy@g.o> x2goclient-2.99.3.ebuild:
41 Removed alternative dependency on Qt metapackage also from 2.99.3
42
43
44
45 1.1 net-misc/x2goclient/x2goclient-3.01.5.ebuild
46
47 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/x2goclient/x2goclient-3.01.5.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/x2goclient/x2goclient-3.01.5.ebuild?rev=1.1&content-type=text/plain
49
50 Index: x2goclient-3.01.5.ebuild
51 ===================================================================
52 # Copyright 1999-2010 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/net-misc/x2goclient/x2goclient-3.01.5.ebuild,v 1.1 2010/04/29 13:40:04 voyageur Exp $
55
56 EAPI="3"
57 inherit qt4-r2 versionator
58
59 MAJOR_PV="$(get_version_component_range 1-2)"
60 FULL_PV="${MAJOR_PV}-$(get_version_component_range 3)"
61 DESCRIPTION="The X2Go Qt client"
62 HOMEPAGE="http://x2go.berlios.de"
63 SRC_URI="http://x2go.obviously-nice.de/deb/pool-lenny/${PN}/${PN}_${FULL_PV}.tar.gz"
64
65 LICENSE="GPL-2"
66 SLOT="0"
67 KEYWORDS="~amd64 ~x86"
68 IUSE="cups ldap"
69
70 DEPEND="net-misc/nx
71 x11-libs/qt-core:4
72 x11-libs/qt-gui:4
73 x11-libs/qt-svg:4
74 cups? ( net-print/cups )
75 ldap? ( net-nds/openldap )"
76 RDEPEND="${DEPEND}"
77
78 S=${WORKDIR}/${PN}-${MAJOR_PV}
79
80 src_prepare() {
81 use ldap || epatch "${FILESDIR}"/${P}-noldap.patch
82 }
83
84 src_install() {
85 dobin ${PN}
86 dodoc README
87
88 # copying the icons
89 insinto /usr/share/pixmaps/x2goclient
90 doins icons/*
91 insinto /usr/share/pixmaps/x2goclient/16x16
92 doins icons/16x16/*
93 insinto /usr/share/pixmaps/x2goclient/32x32
94 doins icons/32x32/*
95 insinto /usr/share/pixmaps/x2goclient/64x64
96 doins icons/64x64/*
97 insinto /usr/share/pixmaps/x2goclient/128x128
98 doins icons/128x128/*
99 insinto /usr/share/pixmaps/x2goclient/hildon
100 doins icons/hildon/*
101
102 make_desktop_entry ${PN} "X2go client" ${PN} "Network"
103 }