summaryrefslogtreecommitdiff
path: root/dev-db
diff options
context:
space:
mode:
authorAnders Rune Jensen <arj@gentoo.org>2004-11-09 18:35:15 +0000
committerAnders Rune Jensen <arj@gentoo.org>2004-11-09 18:35:15 +0000
commit218fd7decc0abf963172576e40f478ea47de3f9a (patch)
treee152cd408643de85b12b0ef63d645e395ebd7970 /dev-db
parentInitial import. Ebuild submitted by Nick Savchenko <rust@voliacable.com>; bug... (diff)
downloadgentoo-2-218fd7decc0abf963172576e40f478ea47de3f9a.tar.gz
gentoo-2-218fd7decc0abf963172576e40f478ea47de3f9a.tar.bz2
gentoo-2-218fd7decc0abf963172576e40f478ea47de3f9a.zip
stable and cleanup
Diffstat (limited to 'dev-db')
-rw-r--r--dev-db/sqlite/ChangeLog9
-rw-r--r--dev-db/sqlite/files/digest-sqlite-2.8.111
-rw-r--r--dev-db/sqlite/files/digest-sqlite-2.8.121
-rw-r--r--dev-db/sqlite/files/digest-sqlite-2.8.31
-rw-r--r--dev-db/sqlite/files/digest-sqlite-3.0.51
-rw-r--r--dev-db/sqlite/sqlite-2.8.11.ebuild35
-rw-r--r--dev-db/sqlite/sqlite-2.8.12.ebuild35
-rw-r--r--dev-db/sqlite/sqlite-2.8.15.ebuild4
-rw-r--r--dev-db/sqlite/sqlite-2.8.3.ebuild34
-rw-r--r--dev-db/sqlite/sqlite-3.0.5.ebuild41
10 files changed, 10 insertions, 152 deletions
diff --git a/dev-db/sqlite/ChangeLog b/dev-db/sqlite/ChangeLog
index 188681cfbecd..716800fc3f90 100644
--- a/dev-db/sqlite/ChangeLog
+++ b/dev-db/sqlite/ChangeLog
@@ -1,6 +1,13 @@
# ChangeLog for dev-db/sqlite
# Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.54 2004/11/09 13:42:36 fmccor Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.55 2004/11/09 18:35:15 arj Exp $
+
+ 09 Nov 2004; Anders Rune Jensen <arj@gentoo.org> sqlite-2.8.15.ebuild:
+ Stable for x86.
+
+ 09 Nov 2004; Anders Rune Jensen <arj@gentoo.org> -sqlite-3.0.5.ebuild,
+ -sqlite-2.8.11.ebuild, -sqlite-2.8.12.ebuild, -sqlite-2.8.3.ebuild:
+ Remove old versions.
09 Nov 2004; Ferris McCormick <fmccor@gentoo.org> sqlite-2.8.15.ebuild:
Stable for sparc.
diff --git a/dev-db/sqlite/files/digest-sqlite-2.8.11 b/dev-db/sqlite/files/digest-sqlite-2.8.11
deleted file mode 100644
index 60be860cd2dc..000000000000
--- a/dev-db/sqlite/files/digest-sqlite-2.8.11
+++ /dev/null
@@ -1 +0,0 @@
-MD5 f439187094401fe25d26ba662db4738c sqlite-2.8.11.tar.gz 875668
diff --git a/dev-db/sqlite/files/digest-sqlite-2.8.12 b/dev-db/sqlite/files/digest-sqlite-2.8.12
deleted file mode 100644
index f4ef02eebdf6..000000000000
--- a/dev-db/sqlite/files/digest-sqlite-2.8.12
+++ /dev/null
@@ -1 +0,0 @@
-MD5 c92a2ad9670a651c4dd30c4eac687d17 sqlite-2.8.12.tar.gz 884942
diff --git a/dev-db/sqlite/files/digest-sqlite-2.8.3 b/dev-db/sqlite/files/digest-sqlite-2.8.3
deleted file mode 100644
index 659c500efadf..000000000000
--- a/dev-db/sqlite/files/digest-sqlite-2.8.3
+++ /dev/null
@@ -1 +0,0 @@
-MD5 b038f5812157359c8e87487a017fa3d8 sqlite-2.8.3.tar.gz 832405
diff --git a/dev-db/sqlite/files/digest-sqlite-3.0.5 b/dev-db/sqlite/files/digest-sqlite-3.0.5
deleted file mode 100644
index e0b6aab4152f..000000000000
--- a/dev-db/sqlite/files/digest-sqlite-3.0.5
+++ /dev/null
@@ -1 +0,0 @@
-MD5 4133cbac9320f6f674700ed15986f4ff sqlite-3.0.5.tar.gz 1226021
diff --git a/dev-db/sqlite/sqlite-2.8.11.ebuild b/dev-db/sqlite/sqlite-2.8.11.ebuild
deleted file mode 100644
index c7b1c2c405aa..000000000000
--- a/dev-db/sqlite/sqlite-2.8.11.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-2.8.11.ebuild,v 1.9 2004/06/29 17:43:57 agriffis Exp $
-
-IUSE="nls"
-
-S=${WORKDIR}/sqlite
-DESCRIPTION="SQLite: An SQL Database Engine in a C Library."
-SRC_URI="http://www.sqlite.org/${P}.tar.gz"
-HOMEPAGE="http://www.sqlite.org"
-DEPEND="virtual/libc
- dev-lang/tcl"
-SLOT="0"
-LICENSE="as-is"
-KEYWORDS="x86 ~ppc sparc alpha mips hppa amd64 ia64"
-
-src_compile() {
- local myconf
- myconf="--enable-incore-db --enable-tempdb-in-ram"
- myconf="${myconf} `use_with nls utf8`"
- econf ${myconf} || die
- emake all doc || die
-}
-
-src_install () {
- dodir /usr/{bin,include,lib}
-
- einstall || die
-
- dobin lemon
- dodoc README VERSION
- doman sqlite.1
- docinto html
- dohtml doc/*.html doc/*.txt doc/*.png
-}
diff --git a/dev-db/sqlite/sqlite-2.8.12.ebuild b/dev-db/sqlite/sqlite-2.8.12.ebuild
deleted file mode 100644
index 35786a435b7d..000000000000
--- a/dev-db/sqlite/sqlite-2.8.12.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-2.8.12.ebuild,v 1.4 2004/06/29 17:43:57 agriffis Exp $
-
-IUSE="nls"
-
-S=${WORKDIR}/sqlite
-DESCRIPTION="SQLite: An SQL Database Engine in a C Library."
-SRC_URI="http://www.sqlite.org/${P}.tar.gz"
-HOMEPAGE="http://www.sqlite.org"
-DEPEND="virtual/libc
- dev-lang/tcl"
-SLOT="0"
-LICENSE="as-is"
-KEYWORDS="~x86 ~ppc ~sparc ~alpha ~mips ~hppa ~ia64"
-
-src_compile() {
- local myconf
- myconf="--enable-incore-db --enable-tempdb-in-ram"
- myconf="${myconf} `use_with nls utf8`"
- econf ${myconf} || die
- emake all doc || die
-}
-
-src_install () {
- dodir /usr/{bin,include,lib}
-
- einstall || die
-
- dobin lemon
- dodoc README VERSION
- doman sqlite.1
- docinto html
- dohtml doc/*.html doc/*.txt doc/*.png
-}
diff --git a/dev-db/sqlite/sqlite-2.8.15.ebuild b/dev-db/sqlite/sqlite-2.8.15.ebuild
index 0bc345e9a363..2c3da622beb5 100644
--- a/dev-db/sqlite/sqlite-2.8.15.ebuild
+++ b/dev-db/sqlite/sqlite-2.8.15.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-2.8.15.ebuild,v 1.9 2004/11/09 13:42:36 fmccor Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-2.8.15.ebuild,v 1.10 2004/11/09 18:35:15 arj Exp $
inherit eutils
@@ -14,7 +14,7 @@ DEPEND="virtual/libc
dev-lang/tcl"
SLOT="0"
LICENSE="as-is"
-KEYWORDS="~x86 ppc sparc ~alpha ~arm mips hppa ~ppc64 ~amd64 ppc-macos"
+KEYWORDS="x86 ppc sparc ~alpha ~arm mips hppa ~ppc64 ~amd64 ppc-macos"
src_unpack() {
diff --git a/dev-db/sqlite/sqlite-2.8.3.ebuild b/dev-db/sqlite/sqlite-2.8.3.ebuild
deleted file mode 100644
index ee6034acd2b1..000000000000
--- a/dev-db/sqlite/sqlite-2.8.3.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-2.8.3.ebuild,v 1.9 2004/06/29 17:43:57 agriffis Exp $
-
-S=${WORKDIR}/sqlite
-DESCRIPTION="SQLite: An SQL Database Engine in a C Library."
-SRC_URI="http://www.hwaci.com/sw/sqlite/${P}.tar.gz"
-HOMEPAGE="http://www.hwaci.com/sw/sqlite/"
-DEPEND="virtual/libc
- dev-lang/tcl"
-SLOT="0"
-LICENSE="as-is"
-KEYWORDS="x86 ppc sparc ~alpha ~mips hppa"
-IUSE="nls"
-
-src_compile() {
- local myconf
- myconf="--enable-incore-db --enable-tempdb-in-ram"
- myconf="${myconf} `use_with nls utf8`"
- econf ${myconf} || die
- emake all doc || die
-}
-
-src_install () {
- dodir /usr/{bin,include,lib}
-
- einstall || die
-
- dobin lemon
- dodoc README VERSION
- doman sqlite.1
- docinto html
- dohtml doc/*.html doc/*.txt doc/*.png
-}
diff --git a/dev-db/sqlite/sqlite-3.0.5.ebuild b/dev-db/sqlite/sqlite-3.0.5.ebuild
deleted file mode 100644
index cabdc642d1e2..000000000000
--- a/dev-db/sqlite/sqlite-3.0.5.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.0.5.ebuild,v 1.1 2004/09/02 00:16:16 arj Exp $
-
-IUSE="nls"
-
-S=${WORKDIR}/sqlite
-DESCRIPTION="SQLite: An SQL Database Engine in a C Library."
-SRC_URI="http://www.sqlite.org/${P}.tar.gz"
-HOMEPAGE="http://www.sqlite.org"
-DEPEND="virtual/libc
- dev-lang/tcl"
-SLOT="3"
-LICENSE="as-is"
-# ~ppc ~sparc ~alpha ~mips ~hppa ~ppc64 ~amd64
-KEYWORDS="~x86"
-
-src_compile() {
- # sqlite includes a doc directory making it impossible to generate docs,
- # which are very important to people adding support for sqlite3 to their
- # programs.
- rm -rf doc/
-
- local myconf
- myconf="--enable-incore-db --enable-tempdb-in-ram"
- myconf="${myconf} `use_with nls utf8`"
- econf ${myconf} || die
- emake all doc || die
-}
-
-src_install () {
- dodir /usr/{bin,include,lib}
-
- einstall || die
-
- dobin lemon
- dodoc README VERSION
- doman sqlite.1
- docinto html
- dohtml doc/*.html doc/*.txt doc/*.png
-}