summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Phillips <rphillips@gentoo.org>2002-12-14 23:23:08 +0000
committerRyan Phillips <rphillips@gentoo.org>2002-12-14 23:23:08 +0000
commit9151cf6715b4cfcc33c5bd25e3cfc2172910af29 (patch)
tree2c384d80e91f027ddf1f89356a153507dcebf475 /dev-db/gigabase
parentchanging ~x86 to x86, because it seems pretty stable and 0.5.13 is causing pr... (diff)
downloadgentoo-2-9151cf6715b4cfcc33c5bd25e3cfc2172910af29.tar.gz
gentoo-2-9151cf6715b4cfcc33c5bd25e3cfc2172910af29.tar.bz2
gentoo-2-9151cf6715b4cfcc33c5bd25e3cfc2172910af29.zip
New version. x86 masked
Diffstat (limited to 'dev-db/gigabase')
-rw-r--r--dev-db/gigabase/ChangeLog7
-rw-r--r--dev-db/gigabase/files/digest-gigabase-2.761
-rw-r--r--dev-db/gigabase/gigabase-2.76.ebuild42
3 files changed, 49 insertions, 1 deletions
diff --git a/dev-db/gigabase/ChangeLog b/dev-db/gigabase/ChangeLog
index daa595fa2381..9f851b00a39f 100644
--- a/dev-db/gigabase/ChangeLog
+++ b/dev-db/gigabase/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for dev-db/gigabase
# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/gigabase/ChangeLog,v 1.1 2002/12/12 00:48:02 rphillips Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/gigabase/ChangeLog,v 1.2 2002/12/14 23:23:08 rphillips Exp $
+
+*gigabase-2.76 (14 Dec 2002)
+
+ 14 Dec 2002; Ryan Phillips <rphillips@gentoo.org> gigbase-2.76.ebuild :
+ New version
*gigabase-2.75 (11 Dec 2002)
diff --git a/dev-db/gigabase/files/digest-gigabase-2.76 b/dev-db/gigabase/files/digest-gigabase-2.76
new file mode 100644
index 000000000000..d225122177e8
--- /dev/null
+++ b/dev-db/gigabase/files/digest-gigabase-2.76
@@ -0,0 +1 @@
+MD5 ae7db9b0784f3c9105724f07ae07f21a gigabase-2.76.tar.gz 1165225
diff --git a/dev-db/gigabase/gigabase-2.76.ebuild b/dev-db/gigabase/gigabase-2.76.ebuild
new file mode 100644
index 000000000000..0a69ba3ab871
--- /dev/null
+++ b/dev-db/gigabase/gigabase-2.76.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-db/gigabase/gigabase-2.76.ebuild,v 1.1 2002/12/14 23:23:08 rphillips Exp $
+
+DESCRIPTION="OO-DBMS with interfaces for C/C++/Java/PHP/Perl"
+HOMEPAGE="http://www.garret.ru/~knizhnik/gigabase.html"
+SRC_URI="http://www.garret.ru/~knizhnik/${P}.tar.gz"
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~x86"
+IUSE=""
+DEPEND=""
+
+S=${WORKDIR}/gigabase
+
+src_compile() {
+ mf="${S}/Makefile"
+
+ econf
+
+ sed -r -e 's/subsql([^\.]|$)/subsql-gdb\1/' ${mf} > ${mf}.tmp
+ mv ${mf}.tmp ${mf}
+
+ emake || die
+}
+
+src_install() {
+ make \
+ prefix=${D}/usr \
+ mandir=${D}/usr/share/man \
+ infodir=${D}/usr/share/info \
+ install || die
+
+ dodoc CHANGES
+ dohtml GigaBASE.htm
+ dohtml -r docs/html/*
+}
+
+pkg_postinst() {
+ einfo "The subsql binary has been renamed to subsql-gdb,"
+ einfo "to avoid a name clash with the FastDB version of subsql"
+}