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: ChangeLog taskcoach-0.75.0.ebuild taskcoach-0.74.3.ebuild
Date: Sun, 25 Oct 2009 22:33:43
Message-Id: E1N2Bee-0002GA-RE@stork.gentoo.org
1 caster 09/10/25 22:33:40
2
3 Modified: ChangeLog
4 Added: taskcoach-0.75.0.ebuild
5 Removed: taskcoach-0.74.3.ebuild
6 Log:
7 Version bump.
8 (Portage version: 2.2_rc46/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.35 app-office/taskcoach/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/taskcoach/ChangeLog?rev=1.35&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/taskcoach/ChangeLog?rev=1.35&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/taskcoach/ChangeLog?r1=1.34&r2=1.35
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-office/taskcoach/ChangeLog,v
20 retrieving revision 1.34
21 retrieving revision 1.35
22 diff -u -r1.34 -r1.35
23 --- ChangeLog 20 Oct 2009 11:36:41 -0000 1.34
24 +++ ChangeLog 25 Oct 2009 22:33:40 -0000 1.35
25 @@ -1,6 +1,12 @@
26 # ChangeLog for app-office/taskcoach
27 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-office/taskcoach/ChangeLog,v 1.34 2009/10/20 11:36:41 caster Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-office/taskcoach/ChangeLog,v 1.35 2009/10/25 22:33:40 caster Exp $
30 +
31 +*taskcoach-0.75.0 (25 Oct 2009)
32 +
33 + 25 Oct 2009; Vlastimil Babka <caster@g.o> -taskcoach-0.74.3.ebuild,
34 + +taskcoach-0.75.0.ebuild:
35 + Version bump.
36
37 *taskcoach-0.74.4 (20 Oct 2009)
38
39
40
41
42 1.1 app-office/taskcoach/taskcoach-0.75.0.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/taskcoach/taskcoach-0.75.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/taskcoach/taskcoach-0.75.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: taskcoach-0.75.0.ebuild
48 ===================================================================
49 # Copyright 1999-2009 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/app-office/taskcoach/taskcoach-0.75.0.ebuild,v 1.1 2009/10/25 22:33:40 caster Exp $
52
53 EAPI=1
54
55 inherit distutils eutils
56
57 MY_PN="TaskCoach"
58 MY_P="${MY_PN}-${PV}"
59
60 DESCRIPTION="Simple personal tasks and todo lists manager"
61 HOMEPAGE="http://www.taskcoach.org"
62 SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
63 LICENSE="GPL-3"
64 SLOT="0"
65 KEYWORDS="~amd64 ~x86"
66 IUSE=""
67 DEPEND=">=dev-lang/python-2.4
68 >=dev-python/wxpython-2.8.9.2:2.8"
69 RDEPEND="${DEPEND}"
70
71 S="${WORKDIR}/${MY_P}"
72
73 # disappeared in 0.73.2, maybe will appear again?
74 #DOCS="CHANGES.txt"
75
76 src_unpack() {
77 distutils_src_unpack
78
79 cd "${S}"
80 if ! use x86; then
81 elog "Removing Funambol support, works only on x86."
82 rm -fv taskcoachlib/bin.in/linux/*.so || die
83 fi
84 }
85
86 src_compile() {
87 # upstream now sets executable to /usr/bin/python2.5
88 distutils_src_compile --executable=/usr/bin/python
89 }
90
91 src_install() {
92 distutils_src_install
93
94 mv "${D}/usr/bin/taskcoach.py" "${D}/usr/bin/taskcoach" || die
95
96 doicon "icons.in/${PN}.png" || die
97 make_desktop_entry ${PN} "Task Coach" ${PN} Office || die
98 }