# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/pycairo/pycairo-1.2.2.ebuild,v 1.14 2008/05/29 16:24:40 hawking Exp $ NEED_PYTHON=2.3 WANT_AUTOCONF=latest WANT_AUTOMAKE=latest inherit eutils autotools python multilib DESCRIPTION="Python wrapper for cairo vector graphics library" HOMEPAGE="http://cairographics.org/pycairo/" SRC_URI="http://cairographics.org/releases/${P}.tar.gz" LICENSE="|| ( LGPL-2.1 MPL-1.1 )" SLOT="0" KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sh sparc x86 ~x86-fbsd" IUSE="examples numeric" RDEPEND=">=x11-libs/cairo-1.2.0 numeric? ( dev-python/numeric )" DEPEND="${RDEPEND} dev-util/pkgconfig" src_unpack() { unpack ${A} cd "${S}" # don't run py-compile sed -i \ -e '/if test -n "$$dlist"; then/,/else :; fi/d' \ cairo/Makefile.in || die "sed in cairo/Makefile.in failed" epatch "${FILESDIR}"/${P}-no-automagic-deps.patch eautoreconf } src_compile() { econf \ $(use_with numeric) \ || die "econf failed" emake || die "emake failed" } src_install() { einstall || die "install failed" if use examples ; then insinto /usr/share/doc/${PF}/examples doins -r examples/* rm "${D}"/usr/share/doc/${PF}/examples/Makefile* fi dodoc AUTHORS NOTES README NEWS ChangeLog } pkg_postinst() { python_version python_mod_optimize /usr/$(get_libdir)/python${PYVER}/site-packages/cairo } pkg_postrm() { python_mod_cleanup }