30 lines
792 B
Bash
30 lines
792 B
Bash
# Copyright 1999-2015 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-r1.ebuild,v 1.1 2015/01/03 07:11:04 idella4 Exp $
|
|
|
|
EAPI=5
|
|
PYTHON_COMPAT=( python2_7 )
|
|
|
|
inherit distutils-r1
|
|
|
|
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="PyGUI"
|
|
SLOT=0
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE="doc examples"
|
|
|
|
DEPEND="dev-python/pygtk[${PYTHON_USEDEP}]"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
S="${WORKDIR}"/${MY_P}
|
|
|
|
python_install_all() {
|
|
use doc && local HTML_DOCS=( Doc/. )
|
|
use examples && local EXAMPLES=( Demos/. )
|
|
distutils-r1_python_install_all
|
|
}
|