summaryrefslogtreecommitdiff
blob: 0e781acbdaf24c60032610d0195aa65a7b0c10a0 (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
36
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/bicyclerepair/bicyclerepair-0.7.1.ebuild,v 1.3 2003/06/21 22:30:24 drobbins Exp $

inherit distutils

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 amd64 ~ppc"
IUSE=""
DEPEND="virtual/python"

S="${WORKDIR}/${P}"

mydoc="NEWS DESIGN"

src_install() {
    distutils_src_install
    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
    fi
}