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/nxcl: nxcl-0.9-r2.ebuild ChangeLog nxcl-0.9.ebuild
Date: Fri, 19 Feb 2010 17:27:30
Message-Id: E1NiWdI-0002mS-8A@stork.gentoo.org
1 voyageur 10/02/19 17:27:16
2
3 Modified: ChangeLog
4 Added: nxcl-0.9-r2.ebuild
5 Removed: nxcl-0.9.ebuild
6 Log:
7 Fix documentation install path, bug #305579, EAPI2, and remove old
8 (Portage version: 2.2_rc62/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.10 net-misc/nxcl/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/nxcl/ChangeLog?rev=1.10&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/nxcl/ChangeLog?rev=1.10&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/nxcl/ChangeLog?r1=1.9&r2=1.10
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-misc/nxcl/ChangeLog,v
20 retrieving revision 1.9
21 retrieving revision 1.10
22 diff -u -r1.9 -r1.10
23 --- ChangeLog 8 Mar 2009 15:31:48 -0000 1.9
24 +++ ChangeLog 19 Feb 2010 17:27:15 -0000 1.10
25 @@ -1,6 +1,12 @@
26 # ChangeLog for net-misc/nxcl
27 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-misc/nxcl/ChangeLog,v 1.9 2009/03/08 15:31:48 maekke Exp $
29 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/net-misc/nxcl/ChangeLog,v 1.10 2010/02/19 17:27:15 voyageur Exp $
31 +
32 +*nxcl-0.9-r2 (19 Feb 2010)
33 +
34 + 19 Feb 2010; Bernard Cafarelli <voyageur@g.o> -nxcl-0.9.ebuild,
35 + +nxcl-0.9-r2.ebuild:
36 + Fix documentation install path, bug #305579, EAPI2, and remove old
37
38 08 Mar 2009; Markus Meier <maekke@g.o> nxcl-0.9-r1.ebuild:
39 amd64/x86 stable, bug #256414
40
41
42
43 1.1 net-misc/nxcl/nxcl-0.9-r2.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/nxcl/nxcl-0.9-r2.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/nxcl/nxcl-0.9-r2.ebuild?rev=1.1&content-type=text/plain
47
48 Index: nxcl-0.9-r2.ebuild
49 ===================================================================
50 # Copyright 1999-2010 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/net-misc/nxcl/nxcl-0.9-r2.ebuild,v 1.1 2010/02/19 17:27:15 voyageur Exp $
53
54 EAPI=2
55
56 inherit autotools
57
58 MY_P="freenx-client-${PV}"
59 DESCRIPTION="A library for building NX clients"
60 HOMEPAGE="http://developer.berlios.de/projects/freenx/"
61 SRC_URI="mirror://berlios/freenx/${MY_P}.tar.bz2"
62
63 LICENSE="GPL-2"
64 SLOT="0"
65 KEYWORDS="~amd64 ~x86"
66 IUSE="dbus doc nxclient"
67
68 RDEPEND=">=net-misc/nx-3.2.0-r5
69 dbus? ( sys-apps/dbus )
70 nxclient? ( net-misc/nxclient )"
71 DEPEND="${RDEPEND}
72 doc? ( app-doc/doxygen )"
73 S="${WORKDIR}/${MY_P}/${PN}"
74
75 src_prepare() {
76 # Incorrect version
77 sed -i -e "s#1.0#0.9#" configure.ac || die "version sed failed"
78 # And doc path
79 sed -i -e "/^docdir =/s#doc/.*#share/doc/${PF}#" doc/Makefile.am ||
80 die "doc path sed failed"
81 if ! use nxclient; then
82 # Patch to use standard ssh instead of nxssh from nxclient
83 epatch "${FILESDIR}"/${P}-no_nxssh.patch
84 fi
85 epatch "${FILESDIR}"/${P}-gcc43.patch
86 eautoreconf
87 }
88
89 src_configure() {
90 econf $(use_with doc doxygen) || die "configure failed"
91 }
92
93 src_install() {
94 emake DESTDIR="${D}" install || die "install failed"
95 }