# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/pysqlite/pysqlite-2.0.7.ebuild,v 1.8 2006/09/29 23:25:23 the_paya Exp $ inherit distutils eutils IUSE="doc" DESCRIPTION="Python wrapper for the local database Sqlite" SRC_URI="http://initd.org/pub/software/pysqlite/releases/${PV:0:3}/${PV}/pysqlite-${PV}.tar.gz" HOMEPAGE="http://initd.org/tracker/pysqlite/" KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86 ~x86-fbsd" LICENSE="pysqlite" SLOT="2" DEPEND=">=dev-lang/python-2.3 >=dev-db/sqlite-3.1 >=dev-python/setuptools-0.6_alpha9 doc? ( dev-python/docutils app-text/silvercity !=app-text/silvercity-0.9.6 )" src_unpack() { unpack ${A} cd "${S}" # make setup.py not compile docs if NODOCS is set and not install them epatch "${FILESDIR}/${P}-setup.py-doc-fixes.patch" # use a nonexistant test file in ${T} instead of / to prevent # sandbox problems sed -i -e 's:/foo/bar/:${T}/foo/bar/:' lib/test/dbapi.py } src_compile() { if ! use doc; then export NODOCS=1 fi distutils_src_compile } src_install() { if ! use doc; then export NODOCS=1 fi ${python} setup.py install --root=${D} --no-compile \ --single-version-externally-managed "$@" || die DDOCS="CHANGELOG COPYRIGHT KNOWN_BUGS MAINTAINERS PKG-INFO" DDOCS="${DDOCS} CONTRIBUTORS TODO" DDOCS="${DDOCS} Change* MANIFEST* README*" for doc in ${DDOCS}; do [ -s "$doc" ] && dodoc $doc done # Need to do the examples explicitly since dodoc # doesn't do directories properly if use doc ; then cp -r ${S}/doc/*.{html,txt,css} ${D}/usr/share/doc/${PF} || die dodir /usr/share/doc/${PF}/code || die cp -r ${S}/doc/code/* ${D}/usr/share/doc/${PF}/code || die fi } src_test() { cd build/lib* PYTHONPATH=. ${python} ../../scripts/test-pysqlite || die "test failed" }