Gentoo Archives: gentoo-commits

From: "Andreas Proschofsky (suka)" <suka@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-misc/tasque: ChangeLog tasque-0.1.11.ebuild
Date: Thu, 30 Aug 2012 08:55:24
Message-Id: 20120830085513.4805D20C36@flycatcher.gentoo.org
1 suka 12/08/30 08:55:13
2
3 Modified: ChangeLog
4 Added: tasque-0.1.11.ebuild
5 Log:
6 Finally a new release of tasque, mostly bug fixes though ;)
7
8 (Portage version: 2.2.0_alpha123/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.9 app-misc/tasque/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/tasque/ChangeLog?rev=1.9&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/tasque/ChangeLog?rev=1.9&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/tasque/ChangeLog?r1=1.8&r2=1.9
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-misc/tasque/ChangeLog,v
20 retrieving revision 1.8
21 retrieving revision 1.9
22 diff -u -r1.8 -r1.9
23 --- ChangeLog 29 May 2012 18:50:55 -0000 1.8
24 +++ ChangeLog 30 Aug 2012 08:55:13 -0000 1.9
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-misc/tasque
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-misc/tasque/ChangeLog,v 1.8 2012/05/29 18:50:55 suka Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-misc/tasque/ChangeLog,v 1.9 2012/08/30 08:55:13 suka Exp $
30 +
31 +*tasque-0.1.11 (30 Aug 2012)
32 +
33 + 30 Aug 2012; Andreas Proschofsky <suka@g.o> +tasque-0.1.11.ebuild:
34 + Finally a new release of tasque, mostly bug fixes though ;)
35
36 29 May 2012; Andreas Proschofsky <suka@g.o>
37 -files/tasque-0.1.8-debug-fixup.patch, tasque-0.1.9.ebuild,
38
39
40
41 1.1 app-misc/tasque/tasque-0.1.11.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/tasque/tasque-0.1.11.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/tasque/tasque-0.1.11.ebuild?rev=1.1&content-type=text/plain
45
46 Index: tasque-0.1.11.ebuild
47 ===================================================================
48 # Copyright 1999-2012 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-misc/tasque/tasque-0.1.11.ebuild,v 1.1 2012/08/30 08:55:13 suka Exp $
51
52 EAPI="4"
53
54 inherit eutils gnome.org mono
55
56 DESCRIPTION="Tasky is a simple task management app (TODO list) for the Linux Desktop"
57 HOMEPAGE="http://live.gnome.org/Tasque"
58
59 LICENSE="MIT"
60 SLOT="0"
61 KEYWORDS="~amd64 ~x86"
62 IUSE="+rememberthemilk +sqlite hiveminder debug"
63
64 RDEPEND=">=dev-dotnet/gtk-sharp-2.12.7-r5
65 >=dev-dotnet/gnome-sharp-2.24.0
66 >=dev-dotnet/notify-sharp-0.4.0_pre20080912
67 >=dev-dotnet/ndesk-dbus-0.6
68 >=dev-dotnet/ndesk-dbus-glib-0.4
69 sqlite? ( dev-db/sqlite:3 )
70 "
71
72 DEPEND="${RDEPEND}"
73
74 pkg_setup() {
75 BACKEND=false
76 for usef in sqlite hiveminder rememberthemilk
77 do
78 use $usef && BACKEND=true
79 done
80 if [[ "${BACKEND}" != "true" ]]
81 then
82 eerror "You must select one of the following backends by enabling their useflag:"
83 eerror "sqlite ( uses a local, file-backed database to keep track of your TODO list )"
84 eerror "rememberthemilk ( integrates with www.rememberthemilk.com )"
85 eerror "hiveminder ( integrates with www.hiveminder.com )"
86 die "Please select a backend"
87 fi
88 }
89
90 src_configure() {
91 #http://bugzilla.gnome.org/show_bug.cgi?id=568910
92 export GTK_DOTNET_20_LIBS=" " \
93 GTK_DOTNET_20_CFLAGS=" "
94 econf --disable-backend-icecore \
95 --disable-backend-eds \
96 --disable-appindicator \
97 --enable-backend-rtm \
98 $(use_enable sqlite backend-sqlite) \
99 $(use_enable hiveminder backend-hiveminder) \
100 $(use_enable debug)
101 }
102
103 src_install() {
104 make DESTDIR="${D}" install || die "emake failed"
105 dodoc NEWS TODO README AUTHORS || die "docs installation failed"
106 mv_command="cp -pPR" mono_multilib_comply
107 }