blob: 75bb7f6cc776dd1f329c924b87aeec065cdd5e01 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/pida/pida-0.4.1.ebuild,v 1.2 2007/03/05 04:05:57 genone Exp $
inherit distutils
DESCRIPTION="Gtk and/or Vim-based Python Integrated Development Application"
HOMEPAGE="http://pida.berlios.de"
SRC_URI="http://download.berlios.de/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="gvim"
DEPEND=">=dev-python/pygtk-2.6
dev-python/setuptools
gvim? ( >=app-editors/gvim-6.3 )
>=x11-libs/vte-0.11.11-r2
dev-python/kiwi"
RDEPEND="${DEPEND}"
pkg_setup() {
if ! built_with_use x11-libs/vte python ; then
eerror "x11-libs/vte has to be built with python USE-flag"
die "missing python USE-flag for x11-libs/vte"
fi
}
pkg_postinst() {
elog "Optional packages pida integrates with:"
elog "app-misc/mc (Midnight Commander)"
elog "dev-util/gazpacho (Glade-like interface designer)"
elog "Revision control: cvs, svn, darcs and many others"
}
|