blob: 00906f8249bfbcf5226df83f3b8b6f5c85d87fb6 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/python-gtkextra/python-gtkextra-0.22.ebuild,v 1.4 2005/01/23 21:40:04 blubb Exp $
inherit distutils
DESCRIPTION="Python bindings for gtk+extra"
HOMEPAGE="http://python-gtkextra.sourceforge.net/"
SRC_URI="mirror://sourceforge/python-gtkextra/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="x86 ~amd64"
IUSE=""
DEPEND="=x11-libs/gtk+-1.2.10*
=dev-python/pygtk-0.6*
>=dev-python/numeric-22.0
>=x11-libs/gtk+extra-0.99.17"
DOCS="AUTHORS TODO NEWS THANKS"
src_install() {
distutils_src_install
dodir /usr/share/doc/${PF}/examples
insinto /usr/share/doc/${PF}/examples
doins examples/*
}
|