# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/pythonmagick/pythonmagick-0.7.ebuild,v 1.1 2007/11/20 01:03:38 hawking Exp $ NEED_PYTHON="2.5" inherit python multilib flag-o-matic MY_PN=PythonMagick MY_P=${MY_PN}-${PV} DESCRIPTION="Python bindings for ImageMagick" HOMEPAGE="http://www.imagemagick.org/script/api.php" SRC_URI="http://www.imagemagick.org/download/python/${MY_P}.tar.gz" SLOT="0" LICENSE="as-is" KEYWORDS="~x86" IUSE="" DEPEND=">=media-gfx/imagemagick-6.2 >=dev-libs/boost-1.34.0" S=${WORKDIR}/${MY_P} src_compile () { filter-ldflags -Wl,--as-needed --as-needed econf || die "econf failed" emake || die "emake failed" } src_install() { emake DESTDIR="${D}" install || die "emake install failed" } pkg_postinst() { python_version python_mod_optimize "${ROOT}"usr/$(get_libdir)/python${PYVER}/site-packages/${MY_PN} } pkg_postrm() { python_mod_cleanup }