blob: 6d7cea4daa3474cf9833385948ec44146597edea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# 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.1 2009/02/02 12:22:07 bicatali 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 ~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"
}
|