Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/pida: ChangeLog pida-0.5.1-r1.ebuild
Date: Sat, 25 Apr 2009 21:17:39
Message-Id: E1LxpFg-0005Om-Gy@stork.gentoo.org
1 patrick 09/04/25 21:17:36
2
3 Modified: ChangeLog
4 Added: pida-0.5.1-r1.ebuild
5 Log:
6 Small fix for python paths. Fixes #262349. Ebuild fixes by Douglas Anderson.
7 (Portage version: 2.2_rc31/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.19 dev-util/pida/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/pida/ChangeLog?rev=1.19&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/pida/ChangeLog?rev=1.19&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/pida/ChangeLog?r1=1.18&r2=1.19
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-util/pida/ChangeLog,v
19 retrieving revision 1.18
20 retrieving revision 1.19
21 diff -u -r1.18 -r1.19
22 --- ChangeLog 26 Nov 2008 11:42:24 -0000 1.18
23 +++ ChangeLog 25 Apr 2009 21:17:36 -0000 1.19
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-util/pida
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-util/pida/ChangeLog,v 1.18 2008/11/26 11:42:24 welp Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-util/pida/ChangeLog,v 1.19 2009/04/25 21:17:36 patrick Exp $
30 +
31 +*pida-0.5.1-r1 (25 Apr 2009)
32 +
33 + 25 Apr 2009; Patrick Lauer <patrick@g.o> +pida-0.5.1-r1.ebuild:
34 + Small fix for python paths. Fixes #262349. Ebuild fixes by Douglas
35 + Anderson.
36
37 26 Nov 2008; <welp@g.o> -pida-0.5.0.ebuild, pida-0.5.1.ebuild:
38 Remove old. Add librsvg dependency; bug 215501
39
40
41
42 1.1 dev-util/pida/pida-0.5.1-r1.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/pida/pida-0.5.1-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/pida/pida-0.5.1-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: pida-0.5.1-r1.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/dev-util/pida/pida-0.5.1-r1.ebuild,v 1.1 2009/04/25 21:17:36 patrick Exp $
52
53 NEED_PYTHON=2.4
54
55 inherit distutils eutils multilib python
56 MY_P="PIDA-${PV}"
57
58 DESCRIPTION="Gtk and/or Vim-based Python Integrated Development Application"
59 HOMEPAGE="http://pida.co.uk/"
60 SRC_URI="http://pida.googlecode.com/files/${MY_P}.tar.gz"
61
62 LICENSE="MIT"
63 SLOT="0"
64 KEYWORDS="~amd64 ~ppc64 ~x86"
65 IUSE="gnome"
66
67 RDEPEND=">=dev-python/pygtk-2.8
68 dev-python/gnome-python
69 gnome? ( >=dev-python/gnome-python-extras-2.14.0-r1 )
70 >=x11-libs/vte-0.11.11-r2
71 >=dev-python/kiwi-1.9.1
72 >=app-editors/gvim-6.3
73 >=gnome-base/librsvg-2.22.2"
74 DEPEND="${RDEPEND}
75 >=dev-python/setuptools-0.6_rc8-r1
76 dev-util/pkgconfig"
77
78 S=${WORKDIR}/${MY_P}
79
80 pkg_setup() {
81 if ! built_with_use x11-libs/vte python ; then
82 eerror "x11-libs/vte has to be built with python USE-flag"
83 die "missing python USE-flag for x11-libs/vte"
84 fi
85 }
86
87 src_install() {
88 distutils_src_install
89
90 python_version
91 make_desktop_entry pida Pida \
92 /usr/$(get_libdir)/python${PYVER}/site-packages/pida/resources/pixmaps/pida-icon.png \
93 Development
94 }
95
96 pkg_postinst() {
97 elog "Optional packages pida integrates with:"
98 elog "app-misc/mc (Midnight Commander)"
99 elog "dev-util/gazpacho (Glade-like interface designer)"
100 elog "Revision control: cvs, svn, darcs and many others"
101 }