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