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.9.ebuild
Date: Sun, 21 Feb 2010 13:02:59
Message-Id: E1NjBSY-00036s-CW@stork.gentoo.org
1 suka 10/02/21 13:02:54
2
3 Modified: ChangeLog
4 Added: tasque-0.1.9.ebuild
5 Log:
6 Version bump to Tasque 0.1.9
7 (Portage version: 2.2_rc63/cvs/Linux i686)
8
9 Revision Changes Path
10 1.3 app-misc/tasque/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/tasque/ChangeLog?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/tasque/ChangeLog?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/tasque/ChangeLog?r1=1.2&r2=1.3
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-misc/tasque/ChangeLog,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- ChangeLog 11 Feb 2009 20:43:36 -0000 1.2
23 +++ ChangeLog 21 Feb 2010 13:02:53 -0000 1.3
24 @@ -1,6 +1,11 @@
25 # ChangeLog for app-misc/tasque
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-misc/tasque/ChangeLog,v 1.2 2009/02/11 20:43:36 loki_val Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/app-misc/tasque/ChangeLog,v 1.3 2010/02/21 13:02:53 suka Exp $
30 +
31 +*tasque-0.1.9 (21 Feb 2010)
32 +
33 + 21 Feb 2010; Andreas Proschofsky <suka@g.o> +tasque-0.1.9.ebuild:
34 + Version bump to Tasque 0.1.9
35
36 11 Feb 2009; Peter Alfredsen <loki_val@g.o> tasque-0.1.8.ebuild:
37 Use portable cp -pPR instead of cp -a
38
39
40
41 1.1 app-misc/tasque/tasque-0.1.9.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/tasque/tasque-0.1.9.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/tasque/tasque-0.1.9.ebuild?rev=1.1&content-type=text/plain
45
46 Index: tasque-0.1.9.ebuild
47 ===================================================================
48 # Copyright 1999-2010 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.9.ebuild,v 1.1 2010/02/21 13:02:53 suka Exp $
51
52 EAPI=2
53
54 inherit 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="~x86 ~amd64"
62 IUSE="+rememberthemilk eds +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/dbus-sharp-0.6
68 >=dev-dotnet/dbus-glib-sharp-0.4
69 eds? ( >=dev-dotnet/evolution-sharp-0.18.1 )
70 sqlite? ( dev-db/sqlite:3 )
71 "
72
73 DEPEND="${RDEPEND}"
74
75 pkg_setup() {
76 BACKEND=false
77 for usef in eds sqlite hiveminder rememberthemilk
78 do
79 use $usef && BACKEND=true
80 done
81 if [[ "${BACKEND}" != "true" ]]
82 then
83 eerror "You must select one of the following backends by enabling their useflag:"
84 eerror "eds ( integrates with the evolution schedule )"
85 eerror "sqlite ( uses a local, file-backed database to keep track of your TODO list )"
86 eerror "rememberthemilk ( integrates with www.rememberthemilk.com )"
87 eerror "hiveminder ( integrates with www.hiveminder.com )"
88 die "Please select a backend"
89 fi
90 }
91
92 src_configure() {
93 #http://bugzilla.gnome.org/show_bug.cgi?id=568910
94 export GTK_DOTNET_20_LIBS=" " \
95 GTK_DOTNET_20_CFLAGS=" "
96 econf --disable-backend-icecore \
97 --enable-backend-rtm \
98 $(use_enable sqlite backend-sqlite) \
99 $(use_enable eds backend-eds) \
100 $(use_enable hiveminder backend-hiveminder) \
101 $(use_enable debug)
102 }
103
104 src_install() {
105 make DESTDIR="${D}" install || die "emake failed"
106 dodoc NEWS TODO README AUTHORS || die "docs installation failed"
107 mv_command="cp -pPR" mono_multilib_comply
108 }