62 lines
1.4 KiB
Bash
62 lines
1.4 KiB
Bash
# Copyright 1999-2011 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-python/pyfltk/pyfltk-1.1.5.ebuild,v 1.11 2011/12/09 17:13:29 ssuominen Exp $
|
|
|
|
EAPI="3"
|
|
PYTHON_DEPEND="2"
|
|
SUPPORT_PYTHON_ABIS="1"
|
|
RESTRICT_PYTHON_ABIS="3.* *-jython"
|
|
|
|
inherit distutils eutils
|
|
|
|
MY_P="pyFltk-${PV}"
|
|
|
|
DESCRIPTION="Python interface to Fltk library"
|
|
HOMEPAGE="http://pyfltk.sourceforge.net/"
|
|
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz
|
|
doc? ( http://junk.mikeasoft.com/pyfltkmanual.pdf )"
|
|
|
|
LICENSE="LGPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ppc ~ppc64 x86"
|
|
IUSE="doc"
|
|
|
|
RDEPEND="<x11-libs/fltk-1.3.0:1[opengl]"
|
|
DEPEND="${RDEPEND}
|
|
>=dev-lang/swig-1.3.38"
|
|
|
|
S="${WORKDIR}/${MY_P}"
|
|
|
|
PYTHON_CXXFLAGS=("2.* + -fno-strict-aliasing")
|
|
|
|
DOCS="CHANGES"
|
|
PYTHON_MODNAME="fltk"
|
|
|
|
src_prepare() {
|
|
rm -f python/fltk*
|
|
# move docs because the swig stuff will remove them
|
|
use doc && cp -r fltk fltk.docs
|
|
|
|
epatch \
|
|
"${FILESDIR}"/${P}-swig-2.patch \
|
|
"${FILESDIR}"/${PN}-1.3.0-linux-3.x-detection.patch
|
|
}
|
|
|
|
src_compile() {
|
|
pushd python > /dev/null
|
|
"$(PYTHON -f)" MakeSwig.py || die "swigging wrappers failed"
|
|
popd > /dev/null
|
|
|
|
distutils_src_compile
|
|
}
|
|
|
|
src_install() {
|
|
distutils_src_install --install-data /usr/share/doc/${PF}
|
|
|
|
if use doc; then
|
|
insinto /usr/share/doc/${PF}
|
|
doins "${DISTDIR}"/pyfltkmanual.pdf || die
|
|
dohtml fltk.docs/docs/* || die
|
|
doins -r fltk.docs/test || die
|
|
fi
|
|
}
|