Gentoo Archives: gentoo-commits

From: "Gilles Dartiguelongue (eva)" <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-misc/workrave: ChangeLog workrave-1.8.5.ebuild
Date: Wed, 07 May 2008 23:43:47
Message-Id: E1JttII-0001bD-EL@stork.gentoo.org
1 eva 08/05/07 23:43:30
2
3 Modified: ChangeLog
4 Added: workrave-1.8.5.ebuild
5 Log:
6 bump to 1.8.5. Close bug #220657, #215435 and #213430.
7 (Portage version: 2.1.5_rc6)
8
9 Revision Changes Path
10 1.47 app-misc/workrave/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/workrave/ChangeLog?rev=1.47&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/workrave/ChangeLog?rev=1.47&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/workrave/ChangeLog?r1=1.46&r2=1.47
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-misc/workrave/ChangeLog,v
19 retrieving revision 1.46
20 retrieving revision 1.47
21 diff -u -r1.46 -r1.47
22 --- ChangeLog 22 Jul 2007 09:50:08 -0000 1.46
23 +++ ChangeLog 7 May 2008 23:43:29 -0000 1.47
24 @@ -1,6 +1,13 @@
25 # ChangeLog for app-misc/workrave
26 -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-misc/workrave/ChangeLog,v 1.46 2007/07/22 09:50:08 omp Exp $
28 +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/app-misc/workrave/ChangeLog,v 1.47 2008/05/07 23:43:29 eva Exp $
30 +
31 +*workrave-1.8.5 (08 May 2008)
32 +
33 + 08 May 2008; Gilles Dartiguelongue <eva@g.o>
34 + +files/workrave-1.8.5-gcc43.patch,
35 + +files/workrave-1.8.5-libsigc++-2.2.2.patch, +workrave-1.8.5.ebuild:
36 + bump to 1.8.5. Close bug #220657, #215435 and #213430.
37
38 22 Jul 2007; David Shakaryan <omp@g.o> workrave-1.8.3.ebuild:
39 Remove virtual/x11 from dependencies.
40
41
42
43 1.1 app-misc/workrave/workrave-1.8.5.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/workrave/workrave-1.8.5.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/workrave/workrave-1.8.5.ebuild?rev=1.1&content-type=text/plain
47
48 Index: workrave-1.8.5.ebuild
49 ===================================================================
50 # Copyright 1999-2008 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/app-misc/workrave/workrave-1.8.5.ebuild,v 1.1 2008/05/07 23:43:29 eva Exp $
53
54 inherit eutils gnome2
55
56 DESCRIPTION="Helpful utility to attack Repetitive Strain Injury (RSI)"
57 HOMEPAGE="http://workrave.sourceforge.net/"
58 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~amd64 ~ppc ~x86"
63 IUSE="arts dbus distribution gnome kde nls xml"
64
65 RDEPEND=">=dev-libs/glib-2
66 >=gnome-base/gconf-2
67 >=x11-libs/gtk+-2
68 >=dev-cpp/gtkmm-2.4
69 >=dev-cpp/glibmm-2.4
70 >=dev-libs/libsigc++-2
71 gnome? (
72 >=gnome-base/libgnomeui-2
73 >=dev-cpp/libgnomeuimm-2.6
74 >=gnome-base/gnome-panel-2.0.10
75 >=gnome-base/libbonobo-2
76 >=gnome-base/orbit-2.8.3 )
77 distribution? ( >=net-libs/gnet-2 )
78 dbus? (
79 >=sys-apps/dbus-0.92
80 dev-libs/dbus-glib )
81 xml? ( dev-libs/gdome2 )
82 kde? (
83 =x11-libs/qt-3*
84 =kde-base/kdelibs-3* )
85 arts? ( kde-base/arts )
86
87 x11-libs/libX11
88 x11-libs/libXtst
89 x11-libs/libXt
90 x11-libs/libXmu"
91
92 DEPEND="${RDEPEND}
93 x11-proto/xproto
94 x11-proto/inputproto
95 x11-proto/recordproto
96
97 nls? ( sys-devel/gettext )
98 >=dev-util/pkgconfig-0.9"
99
100 MAKEOPTS="${MAKEOPTS} -j1"
101 DOCS="AUTHORS NEWS README TODO"
102
103 pkg_setup() {
104 G2CONF="--enable-gconf
105 $(use_enable dbus)
106 $(use_enable distribution)
107 $(use_enable gnome)
108 $(use_enable gnome gnomemm)
109 $(use_enable kde)
110 $(use_enable nls)
111 $(use_enable xml)
112 $(use_with arts)"
113 }
114
115 src_unpack() {
116 gnome2_src_unpack
117
118 # Removes a few broken macros. See bug #86939.
119 epatch "${FILESDIR}/${PN}-1.8.4-nls_macros.patch"
120
121 # Fix compilation issues, bug #220657
122 epatch "${FILESDIR}/${P}-gcc43.patch"
123 epatch "${FILESDIR}/${P}-libsigc++-2.2.2.patch"
124 }
125
126 src_compile() {
127 if use kde; then
128 addwrite "/usr/qt/3/etc/settings"
129 export KDEDIR=$(kde-config --prefix)
130 einfo "KDEDIR set to ${KDEDIR}"
131 fi
132
133 gnome2_src_compile
134 }
135
136
137
138 --
139 gentoo-commits@l.g.o mailing list