diff options
author | Tiziano Müller <dev-zero@gentoo.org> | 2007-02-14 22:37:32 +0000 |
---|---|---|
committer | Tiziano Müller <dev-zero@gentoo.org> | 2007-02-14 22:37:32 +0000 |
commit | fdfcbcc7796bb5a63297f456075c36c89b754bc8 (patch) | |
tree | 86e8e74be8ea5aa70be7f7fa549fd733dd185825 /dev-python/drpython/drpython-164.ebuild | |
parent | Cleanup. (diff) | |
download | gentoo-2-fdfcbcc7796bb5a63297f456075c36c89b754bc8.tar.gz gentoo-2-fdfcbcc7796bb5a63297f456075c36c89b754bc8.tar.bz2 gentoo-2-fdfcbcc7796bb5a63297f456075c36c89b754bc8.zip |
Version bump.
(Portage version: 2.1.2-r7)
Diffstat (limited to 'dev-python/drpython/drpython-164.ebuild')
-rw-r--r-- | dev-python/drpython/drpython-164.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/dev-python/drpython/drpython-164.ebuild b/dev-python/drpython/drpython-164.ebuild new file mode 100644 index 000000000000..2e82fb57ebca --- /dev/null +++ b/dev-python/drpython/drpython-164.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/drpython/drpython-164.ebuild,v 1.1 2007/02/14 22:37:32 dev-zero Exp $ + +inherit distutils eutils multilib + +DESCRIPTION="A powerful cross-platform IDE for Python" +HOMEPAGE="http://drpython.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P/-}.zip" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ia64 ~ppc ~x86" +IUSE="" + +RDEPEND=">=dev-python/wxpython-2.6" +DEPEND="app-arch/unzip" + +S=${WORKDIR}/${PN} + +src_install() { + distutils_python_version + + local destdir="/usr/$(get_libdir)/python${PYVER}/site-packages/${PN}/" + dodir ${destdir}/bitmaps/{16,24} + cp -R bitmaps ${D}/${destdir} || die "Failed to cp bitmaps" + + distutils_src_install + + #Windows-only setup script: + rm ${D}/usr/bin/postinst.py + + make_wrapper drpython "python ${destdir}drpython.py" +} + +pkg_postinst() { + einfo "See the DrPython homepage for 20+ available plugins:" + einfo "http://sourceforge.net/project/showfiles.php?group_id=83074" +} + |