diff options
Diffstat (limited to 'dev-db/sqlite')
-rw-r--r-- | dev-db/sqlite/ChangeLog | 4 | ||||
-rw-r--r-- | dev-db/sqlite/files/digest-sqlite-2.4.0 | 1 | ||||
-rw-r--r-- | dev-db/sqlite/sqlite-2.4.0.ebuild | 42 |
3 files changed, 46 insertions, 1 deletions
diff --git a/dev-db/sqlite/ChangeLog b/dev-db/sqlite/ChangeLog index 12981429ee84..cb4729a8a2ee 100644 --- a/dev-db/sqlite/ChangeLog +++ b/dev-db/sqlite/ChangeLog @@ -1,6 +1,8 @@ # ChangeLog for dev-db/sqlite # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.1 2002/02/01 21:53:11 gbevin Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.2 2002/03/21 08:38:44 azarah Exp $ + +*sqlite-2.4.0 (21 March 2002) *sqlite-2.2.5 (1 Feb 2002) diff --git a/dev-db/sqlite/files/digest-sqlite-2.4.0 b/dev-db/sqlite/files/digest-sqlite-2.4.0 new file mode 100644 index 000000000000..3f9dbea9be7c --- /dev/null +++ b/dev-db/sqlite/files/digest-sqlite-2.4.0 @@ -0,0 +1 @@ +MD5 cd7997b5c7aadaf8efc60167c5503391 sqlite-2.4.0.tar.gz 667970 diff --git a/dev-db/sqlite/sqlite-2.4.0.ebuild b/dev-db/sqlite/sqlite-2.4.0.ebuild new file mode 100644 index 000000000000..243dc2d373ba --- /dev/null +++ b/dev-db/sqlite/sqlite-2.4.0.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Maintainer: Martin Schlemmer <azarah@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-2.4.0.ebuild,v 1.1 2002/03/21 08:38:44 azarah 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" + +src_compile() { + + ./configure --host=${CHOST} \ + --prefix=/usr \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info \ + --sysconfdir=/etc || die + + emake || die + make doc || die +} + +src_install () { + + dodir /usr/{bin,include,lib} + + make prefix=${D}/usr \ + mandir=${D}/usr/share/man \ + infodir=${D}/usr/share/info \ + sysconfdir=${D}/etc \ + install || die + + dobin lemon + + dodoc README VERSION + docinto html + dohtml doc/*.html doc/*.txt doc/*.png +} + |