summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2004-05-26 00:37:15 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2004-05-26 00:37:15 +0000
commitdf2c8bb040971b60aa081dea9a51b5527f30640d (patch)
tree703e260c530fb81a17969e956eda8c61dee1f12d /dev-db/sqlite
parentversion bump (Manifest recommit) (diff)
downloadgentoo-2-df2c8bb040971b60aa081dea9a51b5527f30640d.tar.gz
gentoo-2-df2c8bb040971b60aa081dea9a51b5527f30640d.tar.bz2
gentoo-2-df2c8bb040971b60aa081dea9a51b5527f30640d.zip
restore sqlite-2.8.3 for ppc
Diffstat (limited to 'dev-db/sqlite')
-rw-r--r--dev-db/sqlite/ChangeLog6
-rw-r--r--dev-db/sqlite/files/digest-sqlite-2.8.31
-rw-r--r--dev-db/sqlite/sqlite-2.8.3.ebuild34
3 files changed, 39 insertions, 2 deletions
diff --git a/dev-db/sqlite/ChangeLog b/dev-db/sqlite/ChangeLog
index 834a18fbf1a7..ee0b702e19a7 100644
--- a/dev-db/sqlite/ChangeLog
+++ b/dev-db/sqlite/ChangeLog
@@ -1,8 +1,10 @@
# ChangeLog for dev-db/sqlite
# Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.27 2004/05/25 23:57:16 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.28 2004/05/26 00:37:15 mr_bones_ Exp $
- 25 May 2004; Michael Sterrett <mr_bones_@gentoo.org> :
+*sqlite-2.8.3 (25 May 2004)
+
+ 25 May 2004; Michael Sterrett <mr_bones_@gentoo.org> sqlite-2.8.3.ebuild:
restore sqlite-2.8.3 for ppc
28 Mar 2004; Guy Martin <gmsoft@gentoo.org> sqlite-2.8.11.ebuild:
diff --git a/dev-db/sqlite/files/digest-sqlite-2.8.3 b/dev-db/sqlite/files/digest-sqlite-2.8.3
new file mode 100644
index 000000000000..659c500efadf
--- /dev/null
+++ b/dev-db/sqlite/files/digest-sqlite-2.8.3
@@ -0,0 +1 @@
+MD5 b038f5812157359c8e87487a017fa3d8 sqlite-2.8.3.tar.gz 832405
diff --git a/dev-db/sqlite/sqlite-2.8.3.ebuild b/dev-db/sqlite/sqlite-2.8.3.ebuild
new file mode 100644
index 000000000000..0e65146ecf31
--- /dev/null
+++ b/dev-db/sqlite/sqlite-2.8.3.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2004 Gentoo Technologies, Inc.
+# 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.7 2004/05/26 00:37:15 mr_bones_ 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/glibc
+ dev-lang/tcl"
+SLOT="0"
+LICENSE="as-is"
+KEYWORDS="x86 ppc sparc ~alpha ~mips hppa"
+
+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
+}
+