Gentoo Archives: gentoo-commits

From: "Jeremy Olexa (darkside)" <darkside@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-misc/gigolo: gigolo-0.3.2.ebuild ChangeLog
Date: Sun, 23 Aug 2009 03:30:34
Message-Id: E1Mf3mq-0002ox-T0@stork.gentoo.org
1 darkside 09/08/23 03:30:32
2
3 Modified: gigolo-0.3.2.ebuild ChangeLog
4 Log:
5 convert to EAPI-2, convert to xfconf.eclass
6 (Portage version: 2.1.6.13/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.2 x11-misc/gigolo/gigolo-0.3.2.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/gigolo/gigolo-0.3.2.ebuild?rev=1.2&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/gigolo/gigolo-0.3.2.ebuild?rev=1.2&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/gigolo/gigolo-0.3.2.ebuild?r1=1.1&r2=1.2
14
15 Index: gigolo-0.3.2.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/x11-misc/gigolo/gigolo-0.3.2.ebuild,v
18 retrieving revision 1.1
19 retrieving revision 1.2
20 diff -u -r1.1 -r1.2
21 --- gigolo-0.3.2.ebuild 7 Jun 2009 18:31:05 -0000 1.1
22 +++ gigolo-0.3.2.ebuild 23 Aug 2009 03:30:32 -0000 1.2
23 @@ -1,15 +1,17 @@
24 # Copyright 1999-2009 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/gigolo/gigolo-0.3.2.ebuild,v 1.1 2009/06/07 18:31:05 darkside Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/gigolo/gigolo-0.3.2.ebuild,v 1.2 2009/08/23 03:30:32 darkside Exp $
28
29 -EAPI=1
30 -
31 -inherit xfce4
32 -
33 -xfce4_goodies
34 +EAPI="2"
35 +inherit xfconf multilib
36
37 DESCRIPTION="a frontend to easily manage connections to remote filesystems using
38 GIO/GVfs"
39 +HOMEPAGE="http://www.uvena.de/gigolo/index.html http://goodies.xfce.org/projects/applications/gigolo"
40 +SRC_URI="http://files.uvena.de/gigolo/${P}.tar.bz2"
41 +
42 +LICENSE="GPL-2"
43 +SLOT="0"
44 KEYWORDS="~amd64 ~x86"
45 IUSE=""
46
47 @@ -17,20 +19,25 @@
48 >=dev-libs/glib-2.16:2"
49 RDEPEND="${DEPEND}"
50
51 -DOCS="AUTHORS ChangeLog NEWS README TODO"
52 +pkg_setup() {
53 + DOCS="AUTHORS ChangeLog NEWS README TODO"
54 +}
55
56 -src_compile() {
57 +src_configure() {
58 ./waf --prefix="/usr" --libdir="/usr/$(get_libdir)" configure \
59 - || die "./waf configure failed"
60 + || die "./waf configure failed"
61 +}
62
63 +src_compile() {
64 # Build takes -jX, but not -lX so cannot use $MAKEOPTS
65 - ./waf build || die "./waf build failed"
66 + NUMJOBS=$(sed -e 's/.*\(\-j[ 0-9]\+\) .*/\1/; s/--jobs=\?/-j/' <<< ${MAKEOPTS})
67 + ./waf build ${NUMJOBS} || die "./waf build failed"
68 }
69
70 src_install() {
71 ./waf --destdir="${D}" install || die "./waf install failed"
72
73 # process docs
74 - dodoc ${DOCS}
75 + dodoc ${DOCS} || die "dodoc failed"
76 rm -rf "${D}"/usr/share/doc/${PN}
77 }
78
79
80
81 1.3 x11-misc/gigolo/ChangeLog
82
83 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/gigolo/ChangeLog?rev=1.3&view=markup
84 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/gigolo/ChangeLog?rev=1.3&content-type=text/plain
85 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/gigolo/ChangeLog?r1=1.2&r2=1.3
86
87 Index: ChangeLog
88 ===================================================================
89 RCS file: /var/cvsroot/gentoo-x86/x11-misc/gigolo/ChangeLog,v
90 retrieving revision 1.2
91 retrieving revision 1.3
92 diff -u -r1.2 -r1.3
93 --- ChangeLog 7 Jun 2009 18:52:54 -0000 1.2
94 +++ ChangeLog 23 Aug 2009 03:30:32 -0000 1.3
95 @@ -1,6 +1,9 @@
96 # ChangeLog for x11-misc/gigolo
97 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
98 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/gigolo/ChangeLog,v 1.2 2009/06/07 18:52:54 darkside Exp $
99 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/gigolo/ChangeLog,v 1.3 2009/08/23 03:30:32 darkside Exp $
100 +
101 + 23 Aug 2009; Jeremy Olexa <darkside@g.o> gigolo-0.3.2.ebuild:
102 + convert to EAPI-2, convert to xfconf.eclass
103
104 *gigolo-0.3.2 (07 Jun 2009)