summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2010-07-29 19:51:16 +0000
committerArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2010-07-29 19:51:16 +0000
commit78bfc2a3bff1df542c763a488d8075d124109dc7 (patch)
tree1240b00cdecca0fb95f661cc9df87752e3cb0bab /dev-python/pythonmagick
parentRESTRICT=test for now until a better fix is found to allow stabilization as d... (diff)
downloadhistorical-78bfc2a3bff1df542c763a488d8075d124109dc7.tar.gz
historical-78bfc2a3bff1df542c763a488d8075d124109dc7.tar.bz2
historical-78bfc2a3bff1df542c763a488d8075d124109dc7.zip
Delete older ebuild.
Diffstat (limited to 'dev-python/pythonmagick')
-rw-r--r--dev-python/pythonmagick/pythonmagick-0.9.1.ebuild57
1 files changed, 0 insertions, 57 deletions
diff --git a/dev-python/pythonmagick/pythonmagick-0.9.1.ebuild b/dev-python/pythonmagick/pythonmagick-0.9.1.ebuild
deleted file mode 100644
index 015a89a8f10d..000000000000
--- a/dev-python/pythonmagick/pythonmagick-0.9.1.ebuild
+++ /dev/null
@@ -1,57 +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.1.ebuild,v 1.6 2010/05/29 15:50:32 arfrever Exp $
-
-EAPI="3"
-PYTHON_DEPEND="2"
-SUPPORT_PYTHON_ABIS="1"
-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"
-RESTRICT_PYTHON_ABIS="3.*"
-
-S="${WORKDIR}/${MY_P}"
-
-src_prepare() {
- epatch "${FILESDIR}/${P}-use_active_python_version.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
-}