blob: 388a99b4481341b00aacbd061fd2edaae33e76b3 [file] [log] [blame]
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pythonmagick/pythonmagick-0.8-r2.ebuild,v 1.2 2009/11/28 15:19:36 josejx Exp $
NEED_PYTHON=2.5
EAPI=2
inherit eutils python flag-o-matic autotools
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="GPL-3"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
RDEPEND=">=media-gfx/imagemagick-6.4
>=dev-libs/boost-1.34.0"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
PYTHON_MODNAME="${MY_PN}"
S="${WORKDIR}/${MY_P}"
src_prepare() {
append-flags $(python-config --includes)
export BOOST_PYTHON_LIB=boost_python
epatch "${FILESDIR}"/${P}-python26.patch
AT_M4DIR="m4" eautoreconf
}
src_install() {
python_need_rebuild
emake DESTDIR="${D}" install || die "emake install failed"
}