# ChangeLog for dev-python/imaging
-# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/imaging/ChangeLog,v 1.28 2006/09/21 12:57:52 cardoe Exp $
+# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/imaging/ChangeLog,v 1.29 2007/01/09 13:24:53 dev-zero Exp $
+
+*imaging-1.1.6 (09 Jan 2007)
+
+ 09 Jan 2007; Tiziano Müller <dev-zero@gentoo.org>
+ -imaging-1.1.4-r1.ebuild, +imaging-1.1.6.ebuild:
+ Version bump (bug #160875). Dropped old version.
21 Sep 2006; Doug Goldstein <cardoe@gentoo.org> imaging-1.1.4-r1.ebuild,
imaging-1.1.5.ebuild:
--- /dev/null
+# Copyright 1999-2007 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/imaging/imaging-1.1.6.ebuild,v 1.1 2007/01/09 13:24:53 dev-zero Exp $
+
+inherit distutils multilib
+
+MY_P=Imaging-${PV}
+
+DESCRIPTION="Python Imaging Library (PIL)"
+HOMEPAGE="http://www.pythonware.com/products/pil/index.htm"
+SRC_URI="http://www.effbot.org/downloads/${MY_P}.tar.gz"
+
+LICENSE="as-is"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE="doc examples scanner tk X"
+
+DEPEND=">=media-libs/jpeg-6a
+ >=media-libs/freetype-2.1.5
+ tk? ( dev-lang/tk )
+ scanner? ( media-gfx/sane-backends )
+ X? ( media-gfx/xv )"
+RDEPEND="${DEPEND}"
+
+PYTHON_MODNAME=PIL
+S=${WORKDIR}/${MY_P}
+
+pkg_setup() {
+ if use tk && ! built_with_use dev-lang/python tk; then
+ eerror "Python has to be compiled with tkinter support."
+ eerror "Please re-emerge python with the 'tk' USE-flag set."
+ die "Missing USE-flag for dev-lang/python"
+ fi
+}
+
+src_unpack() {
+ unpack ${A}
+ cd "${S}"
+
+ sed -i \
+ -e "s:/lib\":/$(get_libdir)\":" \
+ -e "s:\"lib\":\"$(get_libdir)\":" \
+ setup.py || die "sed failed"
+
+ if ! use tk ; then
+ # Make the test always fail
+ sed -i \
+ -e 's/import _tkinter/raise ImportError/' \
+ setup.py || die "sed failed"
+ fi
+}
+
+src_compile() {
+ distutils_src_compile
+ if use scanner ; then
+ cd "${S}/Sane"
+ distutils_src_compile
+ fi
+}
+
+src_install() {
+ local DOCS="CHANGES CONTENTS"
+ distutils_src_install
+
+ use doc && dohtml Docs/*
+
+ if use scanner ; then
+ cd "${S}/Sane"
+ docinto sane
+ local DOCS="CHANGES sanedoc.txt"
+ distutils_src_install
+ cd "${S}"
+ fi
+
+ # install headers required by media-gfx/sketch
+ distutils_python_version
+ insinto /usr/include/python${PYVER}
+ doins libImaging/Imaging.h
+ doins libImaging/ImPlatform.h
+
+ if use examples ; then
+ insinto /usr/share/doc/${PF}/examples
+ doins Scripts/*
+ if use scanner ; then
+ insinto /usr/share/doc/${PF}/examples/sane
+ doins Sane/demo_*.py
+ fi
+ fi
+}