summaryrefslogtreecommitdiff
blob: f770c4cc03ec11a697b051e52989ea90485cc0ea (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pmw/pmw-0.8.5.ebuild,v 1.18 2006/09/27 17:23:17 marienz Exp $

DESCRIPTION="A toolkit for building high-level compound widgets in Python using the Tkinter module."
HOMEPAGE="http://pmw.sourceforge.net/"

DEPEND=">=dev-lang/python-2.1"

SLOT="0"
KEYWORDS="x86 ppc sparc alpha"
LICENSE="MIT"
IUSE=""

SRC_URI="mirror://sourceforge/pmw/Pmw.${PV}.tar.gz"
S="${WORKDIR}"/Pmw

src_compile() {
	distutils_python_tkinter
	python -c 'import compileall; compileall.compile_dir(".",force=1)'
}

src_install () {
	# Figures out the destination directory, based on Python's version
	# installed.
	local pv=`python -V 2>&1 | sed -e 's:Python \([0-9].[0-9]\).*:\1:'`
	local pmwdir="/usr/lib/python${pv}/site-packages/Pmw"

	local dir
	for dir in `find . -type d`
	do
		# Skip the doc directory
		if [ `basename "${dir}"` = "doc" ]
		then
			continue
		fi
		insinto "${pmwdir}/${dir}"
		cd "${dir}"
		# Install all regular files in this dir
		local file
		for file in *
		do
			[ -f "${file}" ] && doins "${file}"
		done
		cd "${S}"
	done

	dodoc README
	local docdir=`find . -type d -name doc`
	dohtml -a html,gif,py "${docdir}"/*
}