diff options
Diffstat (limited to 'dev-python/bicyclerepair/bicyclerepair-0.9.ebuild')
-rw-r--r-- | dev-python/bicyclerepair/bicyclerepair-0.9.ebuild | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/dev-python/bicyclerepair/bicyclerepair-0.9.ebuild b/dev-python/bicyclerepair/bicyclerepair-0.9.ebuild new file mode 100644 index 000000000000..47f139914720 --- /dev/null +++ b/dev-python/bicyclerepair/bicyclerepair-0.9.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-python/bicyclerepair/bicyclerepair-0.9.ebuild,v 1.1 2005/02/12 10:50:48 kloeri Exp $ + +inherit distutils +mydoc="NEWS DESIGN" + + +DESCRIPTION="Bicycle Repair Man is the Python Refactoring Browser," +HOMEPAGE="http://bicyclerepair.sourceforge.net/" +SRC_URI="mirror://sourceforge/bicyclerepair/${P}.tar.gz" +LICENSE="as-is" +SLOT="0" +KEYWORDS="~x86 ~ppc" +IUSE="" +DEPEND="virtual/python" + +src_install() { + distutils_src_install + insinto /usr/share/${PN} + doins ide-integration/bike.el + rm -f ${D}/usr/bin/bikeemacs.bat +} + +pkg_postinst() { + # Enable IDLE integration if Python was compiled with tcltk. + PYTHON_VER=$(python -V 2>&1 | sed -e 's:Python \([0-9].[0-9]\).*:\1:') + config_txt=/usr/lib/python${PYTHON_VER}/tools/idle/config.txt + if [ -f "${config_txt}" ]; + then + if [ -z "`grep BicycleRepairMan_Idle ${config_txt}`" ]; then + einfo "Appending BicycleRepairman to IDLE.." + echo "[BicycleRepairMan_Idle]" >> ${config_txt} + fi + else + einfo "BicycleRepairMan won't integrate with IDLE included in Python 2.3*" + fi + einfo " " + einfo "To use bicyclerepair with Xemacs or GNU Emacs you must be in Python" + einfo "mode and add this to your .emacs or .init.el:" + einfo "(load-library '/usr/share/bicyclerepair/bike.el')" +} + |