summaryrefslogtreecommitdiff
blob: d9586e3fe7badfd93008e6f15608004e86e8069e (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
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-wm/plwm/plwm-2.5.ebuild,v 1.6 2004/06/24 23:44:12 agriffis Exp $

DESCRIPTION="Python classes for, and an implementation of, a window manager."

HOMEPAGE="http://plwm.sourceforge.net/"
SRC_URI="mirror://sourceforge/plwm/${P}.tar.gz"

LICENSE="GPL-2"

SLOT="0"
KEYWORDS="x86 alpha ppc"
IUSE=""
DEPEND=">=dev-lang/python-2.2.2"
RDEPEND=">=dev-lang/python-2.2.2
	>=dev-python/python-xlib-0.12"

src_compile() {
	econf || die "econf failed for ${P}"
}

src_install() {
	# bulk of the package
	make \
		prefix="${D}/usr" \
		PLWM_PATH="${D}"'$(PYTHON_SITE_PATH)/plwm' \
		install \
			|| die "make install failed for ${P}"

	# info page
	make -C doc || die "make info docs failed for ${P}"
	doinfo doc/*.info* || die "doinfo failed for ${P}"

	# other docs
	dodoc README NEWS ONEWS examples/* || die "dodoc failed for ${P}"
}