blob: fc7f3e21a430943ab14eaddb08073e8082290908 (
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
40
41
42
43
44
|
# 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
}
|