You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.0 KiB
45 lines
1.0 KiB
# Copyright 1999-2011 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-python/pygui/pygui-2.5.3.ebuild,v 1.3 2011/08/06 16:22:08 hwoarang Exp $
|
|
|
|
EAPI="3"
|
|
PYTHON_DEPEND="2"
|
|
SUPPORT_PYTHON_ABIS="1"
|
|
RESTRICT_PYTHON_ABIS="2.4 2.5 3.* *-jython *-pypi-*"
|
|
|
|
inherit distutils
|
|
|
|
MY_P="PyGUI-${PV}"
|
|
|
|
DESCRIPTION="A cross-platform pythonic GUI API"
|
|
HOMEPAGE="http://www.cosc.canterbury.ac.nz/greg.ewing/python_gui/"
|
|
SRC_URI="http://www.cosc.canterbury.ac.nz/greg.ewing/python_gui/${MY_P}.tar.gz"
|
|
|
|
LICENSE="as-is"
|
|
SLOT=0
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE="doc examples"
|
|
|
|
DEPEND="dev-python/pygtk"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
S="${WORKDIR}"/${MY_P}
|
|
|
|
PYTHON_MODNAME="GUI"
|
|
|
|
src_install() {
|
|
distutils_src_install
|
|
|
|
if use doc; then
|
|
dohtml Doc/* || die "Installing html documentation failed"
|
|
fi
|
|
|
|
if use examples; then
|
|
pushd Tests
|
|
insinto /usr/share/doc/${PF}/examples
|
|
doins *.py *.tiff *.jpg || die "Installing examples failed"
|
|
doins -r ../Demos/* || die "Installing demos failed"
|
|
popd
|
|
fi
|
|
}
|