# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/media-gfx/skencil/skencil-0.6.17.ebuild,v 1.11 2007/02/05 20:22:35 jer Exp $ inherit python multilib eutils IUSE="nls" S=${WORKDIR}/${P/_/} DESCRIPTION="Interactive X11 vector drawing program" SRC_URI="mirror://sourceforge/sketch/${P}.tar.gz" HOMEPAGE="http://www.skencil.org/" DEPEND=">=dev-python/imaging-1.1.2-r1 dev-python/reportlab dev-lang/tk nls? ( sys-devel/gettext )" RDEPEND="!elibc_glibc? ( nls? ( sys-devel/gettext ) )" SLOT="0" LICENSE="GPL-2" KEYWORDS="amd64 hppa ppc ppc64 sparc x86" pkg_setup() { python_tkinter_exists } src_unpack() { unpack ${A} epatch "${FILESDIR}/${P}-fix-tcltk.patch" # Fix hardcoded libdir if [ $(get_libdir) != "lib" ] ; then sed -i -e "s:lib/:$(get_libdir)/:" \ -e "s:lib':$(get_libdir)':" \ ${S}/{Pax,Filter,Sketch/Modules}/Makefile.pre.in \ ${S}/Plugins/Objects/Lib/multilinetext/{TextEditor,styletext}.py \ ${S}/setup.py || die "sed failed" fi } src_compile() { use nls && useopts="${useopts} --with-nls" ./setup.py configure ${useopts} || die "setup.py configure failed" ./setup.py build || die "setup.py build failed" } src_install () { ./setup.py install --prefix=/usr --dest-dir=${D} assert "setup.py install failed" newdoc Pax/README README.pax newdoc Filter/README README.filter dodoc Examples Doc Misc dodoc README INSTALL BUGS CREDITS TODO PROJECTS FAQ NEWS }