Gentoo Archives: gentoo-commits

From: "Bernard Cafarelli (voyageur)" <voyageur@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in gnustep-apps/gworkspace: gworkspace-0.8.8.ebuild ChangeLog
Date: Thu, 01 Jul 2010 09:21:54
Message-Id: 20100701092142.B70C12C621@corvid.gentoo.org
1 voyageur 10/07/01 09:21:42
2
3 Modified: ChangeLog
4 Added: gworkspace-0.8.8.ebuild
5 Log:
6 Version bump, EAPI3, disable GWMetadata for now (does not build)
7 (Portage version: 2.2_rc67/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.30 gnustep-apps/gworkspace/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnustep-apps/gworkspace/ChangeLog?rev=1.30&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnustep-apps/gworkspace/ChangeLog?rev=1.30&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnustep-apps/gworkspace/ChangeLog?r1=1.29&r2=1.30
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/gnustep-apps/gworkspace/ChangeLog,v
19 retrieving revision 1.29
20 retrieving revision 1.30
21 diff -u -r1.29 -r1.30
22 --- ChangeLog 9 Oct 2008 14:36:11 -0000 1.29
23 +++ ChangeLog 1 Jul 2010 09:21:42 -0000 1.30
24 @@ -1,6 +1,12 @@
25 # ChangeLog for gnustep-apps/gworkspace
26 -# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/gnustep-apps/gworkspace/ChangeLog,v 1.29 2008/10/09 14:36:11 voyageur Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/gnustep-apps/gworkspace/ChangeLog,v 1.30 2010/07/01 09:21:42 voyageur Exp $
30 +
31 +*gworkspace-0.8.8 (01 Jul 2010)
32 +
33 + 01 Jul 2010; Bernard Cafarelli <voyageur@g.o>
34 + +gworkspace-0.8.8.ebuild:
35 + Version bump, EAPI3, disable GWMetadata for now (does not build)
36
37 *gworkspace-0.8.7 (09 Oct 2008)
38
39
40
41
42 1.1 gnustep-apps/gworkspace/gworkspace-0.8.8.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnustep-apps/gworkspace/gworkspace-0.8.8.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnustep-apps/gworkspace/gworkspace-0.8.8.ebuild?rev=1.1&content-type=text/plain
46
47 Index: gworkspace-0.8.8.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/gnustep-apps/gworkspace/gworkspace-0.8.8.ebuild,v 1.1 2010/07/01 09:21:42 voyageur Exp $
52
53 EAPI=3
54 inherit gnustep-2
55
56 DESCRIPTION="A workspace manager for GNUstep"
57 HOMEPAGE="http://www.gnustep.org/experience/GWorkspace.html"
58 SRC_URI="ftp://ftp.gnustep.org/pub/gnustep/usr-apps/${P}.tar.gz"
59
60 KEYWORDS="~amd64 ~ppc ~x86"
61 LICENSE="GPL-2"
62 SLOT="0"
63
64 IUSE=""
65
66 # GWMetadata compilation broken for now
67 #DEPEND=">=gnustep-apps/systempreferences-1.0.1_p24791
68 # >=dev-db/sqlite-3.2.8"
69 #RDEPEND="${DEPEND}"
70
71 src_configure() {
72 local myconf=""
73 use kernel_linux && myconf="${myconf} --with-inotify"
74
75 egnustep_env
76 econf --disable-gwmetadata ${myconf}
77 }
78
79 src_install() {
80 egnustep_env
81 egnustep_install
82
83 if use doc;
84 then
85 dodir /usr/share/doc/${PF}
86 cp "${S}"/Documentation/*.pdf "${D}"/usr/share/doc/${PF}
87 fi
88 }