diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2011-03-10 16:24:33 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2011-03-10 16:24:33 +0000 |
commit | fa8607a8365f25b94f22e2ef86eb90f17fbf63e8 (patch) | |
tree | a098374aad4567a73a74d8e580fa800aa5a53c9a /dev-python/pythonmagick | |
parent | Yay, just me must pick the only metadata with local useflag in x11-apps to ba... (diff) | |
download | gentoo-2-fa8607a8365f25b94f22e2ef86eb90f17fbf63e8.tar.gz gentoo-2-fa8607a8365f25b94f22e2ef86eb90f17fbf63e8.tar.bz2 gentoo-2-fa8607a8365f25b94f22e2ef86eb90f17fbf63e8.zip |
Delete older ebuild.
Diffstat (limited to 'dev-python/pythonmagick')
-rw-r--r-- | dev-python/pythonmagick/pythonmagick-0.9.2.ebuild | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/dev-python/pythonmagick/pythonmagick-0.9.2.ebuild b/dev-python/pythonmagick/pythonmagick-0.9.2.ebuild deleted file mode 100644 index 4176e94807c0..000000000000 --- a/dev-python/pythonmagick/pythonmagick-0.9.2.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pythonmagick/pythonmagick-0.9.2.ebuild,v 1.2 2010/09/10 22:14:53 arfrever Exp $ - -EAPI="3" -PYTHON_DEPEND="2:2.6" -SUPPORT_PYTHON_ABIS="1" -RESTRICT_PYTHON_ABIS="2.4 2.5 3.*" -PYTHON_EXPORT_PHASE_FUNCTIONS="1" - -inherit autotools eutils python - -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.35.0[python]" -DEPEND="${RDEPEND} - dev-util/pkgconfig" - -S="${WORKDIR}/${MY_P}" - -PYTHON_CXXFLAGS=("2.* + -fno-strict-aliasing") - -src_prepare() { - epatch "${FILESDIR}/${PN}-0.9.1-use_active_python_version.patch" - epatch "${FILESDIR}/${PN}-0.9.2-fix_detection_of_python_includedir.patch" - eautoreconf - - # Disable byte-compilation. - echo "#!/bin/sh" > config/py-compile - - python_src_prepare -} - -src_configure() { - python_src_configure --disable-static BOOST_PYTHON_LIB="boost_python" -} - -src_install() { - python_src_install - python_clean_installation_image -} - -pkg_postinst() { - python_mod_optimize PythonMagick -} - -pkg_postrm() { - python_mod_cleanup PythonMagick -} |