Gentoo Archives: gentoo-commits

From: "Vlastimil Babka (caster)" <caster@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-office/taskcoach: taskcoach-0.72.1.ebuild ChangeLog
Date: Thu, 19 Feb 2009 23:14:53
Message-Id: E1LaI6V-00077Z-Ls@stork.gentoo.org
1 caster 09/02/19 23:14:51
2
3 Modified: ChangeLog
4 Added: taskcoach-0.72.1.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.2_rc23/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.20 app-office/taskcoach/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/taskcoach/ChangeLog?rev=1.20&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/taskcoach/ChangeLog?rev=1.20&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/taskcoach/ChangeLog?r1=1.19&r2=1.20
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-office/taskcoach/ChangeLog,v
19 retrieving revision 1.19
20 retrieving revision 1.20
21 diff -u -r1.19 -r1.20
22 --- ChangeLog 30 Jan 2009 14:54:34 -0000 1.19
23 +++ ChangeLog 19 Feb 2009 23:14:51 -0000 1.20
24 @@ -1,6 +1,11 @@
25 # ChangeLog for app-office/taskcoach
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-office/taskcoach/ChangeLog,v 1.19 2009/01/30 14:54:34 caster Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-office/taskcoach/ChangeLog,v 1.20 2009/02/19 23:14:51 caster Exp $
29 +
30 +*taskcoach-0.72.1 (19 Feb 2009)
31 +
32 + 19 Feb 2009; Vlastimil Babka <caster@g.o> +taskcoach-0.72.1.ebuild:
33 + Version bump.
34
35 *taskcoach-0.72.0 (30 Jan 2009)
36
37
38
39
40 1.1 app-office/taskcoach/taskcoach-0.72.1.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/taskcoach/taskcoach-0.72.1.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/taskcoach/taskcoach-0.72.1.ebuild?rev=1.1&content-type=text/plain
44
45 Index: taskcoach-0.72.1.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/app-office/taskcoach/taskcoach-0.72.1.ebuild,v 1.1 2009/02/19 23:14:51 caster Exp $
50
51 inherit distutils eutils
52
53 MY_PN="TaskCoach"
54 MY_P="${MY_PN}-${PV}"
55
56 DESCRIPTION="Simple personal tasks and todo lists manager"
57 HOMEPAGE="http://www.taskcoach.org"
58 SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
59 LICENSE="GPL-3"
60 SLOT="0"
61 KEYWORDS="~amd64 ~x86"
62 IUSE=""
63 DEPEND=">=dev-lang/python-2.4
64 =dev-python/wxpython-2.8*"
65 RDEPEND="${DEPEND}"
66
67 S="${WORKDIR}/${MY_P}"
68
69 DOCS="CHANGES.txt"
70
71 src_unpack() {
72 distutils_src_unpack
73
74 cd "${S}"
75 if ! use x86; then
76 elog "Removing Funambol support, works only on x86."
77 rm -fv taskcoachlib/bin.in/linux/*.so || die
78 fi
79 }
80
81 src_install() {
82 distutils_src_install
83
84 mv "${D}/usr/bin/taskcoach.py" "${D}/usr/bin/taskcoach" || die
85 rm "${D}/usr/bin/taskcoach.pyw" || die
86
87 doicon "icons.in/${PN}.png" || die
88 make_desktop_entry ${PN} "Task Coach" ${PN} Office || die
89 }