diff options
Diffstat (limited to 'dev-python/pykde/pykde-3.11.1.ebuild')
-rw-r--r-- | dev-python/pykde/pykde-3.11.1.ebuild | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/dev-python/pykde/pykde-3.11.1.ebuild b/dev-python/pykde/pykde-3.11.1.ebuild deleted file mode 100644 index 66c36bb32f12..000000000000 --- a/dev-python/pykde/pykde-3.11.1.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pykde/pykde-3.11.1.ebuild,v 1.6 2004/12/07 02:46:26 caleb Exp $ - -inherit eutils distutils - -MY_P=PyKDE-${PV/_/} -S=${WORKDIR}/${MY_P} - -DESCRIPTION="set of Python bindings for the KDE libs" -#SRC_URI="http://www.river-bank.demon.co.uk/download/PyKDE2/${MY_P}.tar.gz" -SRC_URI="mirror://gentoo/${MY_P}.tar.gz" -HOMEPAGE="http://www.riverbankcomputing.co.uk/pykde/" - -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="~x86 ~ppc" -IUSE="debug doc kjs" - -REPEND="virtual/libc - virtual/python - >=dev-python/sip-4.0.1 - >=dev-python/PyQt-3.12 - <kde-base/kdelibs-3.3" - -DEPEND="${RDEPEND} - sys-devel/libtool" - - -src_compile() { - cd ${S} - distutils_python_version - - local myconf="-d /usr/lib/python${PYVER}/site-packages \ - -v /usr/share/sip \ - -c" - - use debug && myconf="${myconf} -r -u" - use kjs && myconf="${myconf} -m" - - python configure.py ${myconf} - emake || die -} - -src_install() { - einstall DESTDIR=${D} || die - find ${D}/usr/share/sip -not -type d -not -iname *.sip -exec rm '{}' \; - dodoc AUTHORS ChangeLog COPYING INSTALL NEWS README THANKS - use doc && ( cp -r examples ${D}/usr/share/doc/${PF} - cp -r templates ${D}/usr/share/doc/${PF} - dohtml -r doc/* ) -} |