summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/pysqlite/pysqlite-0.5.0.ebuild')
-rw-r--r--dev-python/pysqlite/pysqlite-0.5.0.ebuild31
1 files changed, 0 insertions, 31 deletions
diff --git a/dev-python/pysqlite/pysqlite-0.5.0.ebuild b/dev-python/pysqlite/pysqlite-0.5.0.ebuild
deleted file mode 100644
index 212712822261..000000000000
--- a/dev-python/pysqlite/pysqlite-0.5.0.ebuild
+++ /dev/null
@@ -1,31 +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/pysqlite/pysqlite-0.5.0.ebuild,v 1.8 2004/09/03 16:51:04 pvdabeel Exp $
-
-inherit distutils
-
-IUSE=""
-DESCRIPTION="Python wrapper for the local database Sqlite"
-SRC_URI="mirror://sourceforge/pysqlite/pysqlite-${PV}.tar.gz"
-HOMEPAGE="http://pysqlite.sourceforge.net/"
-
-KEYWORDS="x86 alpha amd64 ppc"
-LICENSE="pysqlite"
-SLOT="0"
-
-DEPEND="virtual/python
- =dev-db/sqlite-2*"
-
-src_unpack() {
- unpack ${A}
- # distutils expects to find setup.py in ${S}
- mv ${WORKDIR}/pysqlite ${S}
-}
-
-src_install() {
- distutils_src_install
- # Need to do the examples explicitly since dodoc
- # doesn't do directories properly
- dodir /usr/share/doc/${PF}/examples || die
- cp -r ${S}/examples/* ${D}/usr/share/doc/${PF}/examples || die
-}