summaryrefslogtreecommitdiff
blob: 1d9a89406a3c8f5650f5995224ea87c71f6df623 (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
52
53
54
55
56
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pmw/pmw-1.2.ebuild,v 1.7 2004/05/16 23:56:48 kloeri Exp $

inherit distutils python

DESCRIPTION="A toolkit for building high-level compound widgets in Python using the Tkinter module."
HOMEPAGE="http://pmw.sourceforge.net/"
SRC_URI="mirror://sourceforge/pmw/Pmw.${PV}.tar.gz"

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

DEPEND=">=dev-lang/python-2.1"
S="${WORKDIR}/Pmw"

pkg_setup() {
	# check for Tkinter support in python
	if ! python_mod_exists Tkinter; then
		eerror "This package requires Tkinter support in Python. You'll need"
		eerror "to recompile Python with:"
		eerror "USE=\"tcltk\" emerge python"
		die "Tkinter support missing"
	fi
}

src_compile() {
	return
}

src_install() {
	python_version

	local pmwdir="/usr/lib/python${PYVER}/site-packages/Pmw"

	local dir
	for dir in `find . -type d` ; do
		# Skip the doc directory
		[ `basename "${dir}"` = "doc" ] && continue

		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}"/*
}