diff options
author | Rob Cakebread <pythonhead@gentoo.org> | 2005-08-04 17:34:30 +0000 |
---|---|---|
committer | Rob Cakebread <pythonhead@gentoo.org> | 2005-08-04 17:34:30 +0000 |
commit | 290dd1f830d28cebc55a0419282efc8ebd27c811 (patch) | |
tree | 11ea0236f8e4ccefbb56f30d80a57b4cb1f54428 /dev-util | |
parent | Added dev-util/pida (diff) | |
download | historical-290dd1f830d28cebc55a0419282efc8ebd27c811.tar.gz historical-290dd1f830d28cebc55a0419282efc8ebd27c811.tar.bz2 historical-290dd1f830d28cebc55a0419282efc8ebd27c811.zip |
Initial commit. Thank you Björn Michaelsen <bjoern.michaelsen@gmail.com> for the ebuild. bug# 99589
Package-Manager: portage-2.0.51.22-r1
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/pida/ChangeLog | 10 | ||||
-rw-r--r-- | dev-util/pida/Manifest | 4 | ||||
-rw-r--r-- | dev-util/pida/files/digest-pida-0.2.2 | 1 | ||||
-rw-r--r-- | dev-util/pida/metadata.xml | 9 | ||||
-rw-r--r-- | dev-util/pida/pida-0.2.2.ebuild | 43 |
5 files changed, 67 insertions, 0 deletions
diff --git a/dev-util/pida/ChangeLog b/dev-util/pida/ChangeLog new file mode 100644 index 000000000000..ff4c76f8cb46 --- /dev/null +++ b/dev-util/pida/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for dev-util/pida +# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/pida/ChangeLog,v 1.1 2005/08/04 17:34:30 pythonhead Exp $ + +*pida-0.2.2 (04 Aug 2005) + + 04 Aug 2005; Rob Cakebread <pythonhead@gentoo.org> +pida-0.2.2.ebuild: + Initial commit. Thank you Björn Michaelsen <bjoern.michaelsen@gmail.com> for + the ebuild. bug# 99589 + diff --git a/dev-util/pida/Manifest b/dev-util/pida/Manifest new file mode 100644 index 000000000000..5df8e6830e41 --- /dev/null +++ b/dev-util/pida/Manifest @@ -0,0 +1,4 @@ +MD5 3440e4fc013a5d4dd2d5ba207f69289c pida-0.2.2.ebuild 1351 +MD5 eba4b6a021756c705fe89fc73d4f96c2 metadata.xml 258 +MD5 bb260f4386bbf41073d5f2eba7ff3380 ChangeLog 408 +MD5 22b79c1e6c507a02eaa1c6fc104129a0 files/digest-pida-0.2.2 62 diff --git a/dev-util/pida/files/digest-pida-0.2.2 b/dev-util/pida/files/digest-pida-0.2.2 new file mode 100644 index 000000000000..34b0dcef6a81 --- /dev/null +++ b/dev-util/pida/files/digest-pida-0.2.2 @@ -0,0 +1 @@ +MD5 a0259f967380ad64b0037d8033466ac2 pida_0.2.2.tar.gz 136632 diff --git a/dev-util/pida/metadata.xml b/dev-util/pida/metadata.xml new file mode 100644 index 000000000000..98a7e6ee153b --- /dev/null +++ b/dev-util/pida/metadata.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>no-herd</herd> + <maintainer> + <email>pythonhead@gentoo.org</email> + <name>Rob Cakebread</name> + </maintainer> +</pkgmetadata> diff --git a/dev-util/pida/pida-0.2.2.ebuild b/dev-util/pida/pida-0.2.2.ebuild new file mode 100644 index 000000000000..d686276cb79e --- /dev/null +++ b/dev-util/pida/pida-0.2.2.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/pida/pida-0.2.2.ebuild,v 1.1 2005/08/04 17:34:30 pythonhead Exp $ + +inherit distutils + +MY_P=${P/-/_} +DESCRIPTION="Gtk and/or Vim-based Python Integrated Development Application" +HOMEPAGE="http://pida.berlios.de" +SRC_URI="http://download.berlios.de/${PN}/${MY_P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~x86" +IUSE="gvim gnome" + +DEPEND=">=dev-lang/python-2.3 + >=dev-python/pygtk-2.4 + vim? ( >=app-editors/gvim-6.3 ) + gnome? ( >=x11-libs/gtksourceview-1.2.0 + >=dev-python/gnome-python-2.10 ) + >=x11-libs/vte-0.11.11-r2 + >=dev-python/bicyclerepair-0.9" + +pkg_setup() { + einfo "The 'gnome' USE flag is only needed if you don't use gvim as the" + einfo "embedded editor." + if ! use gvim && ! use gnome ; then + die "You need to have either gvim or gnome (or both) in your USE flags" + fi +} + +pkg_postinst() { + if ! built_with_use x11-libs/vte python ; then + ewarn "If you want to use the terminal emulator functionality of pida," + ewarn "you will need to recompile x11-libs/vte with USE=\"python\"." + einfo "Optional packages pida integrates with:" + einfo "app-misc/mc (Midnight Commander)" + einfo "dev-util/gazpacho (Glade-like interface designer)" + einfo "Revision control: cvs, svn, darcs" + fi +} + |