summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Hadaway <raker@gentoo.org>2003-02-18 12:52:30 +0000
committerNick Hadaway <raker@gentoo.org>2003-02-18 12:52:30 +0000
commit7f9b8ae9b4f3f62771cd93ad26249221bbb3d4a0 (patch)
treecf56f132f3310d4f126783451d74cda9b6c00d95 /dev-db/gigabase
parentChanged DEPEND to virtual/jack (diff)
downloadhistorical-7f9b8ae9b4f3f62771cd93ad26249221bbb3d4a0.tar.gz
historical-7f9b8ae9b4f3f62771cd93ad26249221bbb3d4a0.tar.bz2
historical-7f9b8ae9b4f3f62771cd93ad26249221bbb3d4a0.zip
version bump
Diffstat (limited to 'dev-db/gigabase')
-rw-r--r--dev-db/gigabase/ChangeLog8
-rw-r--r--dev-db/gigabase/files/digest-gigabase-2.791
-rw-r--r--dev-db/gigabase/gigabase-2.79.ebuild42
3 files changed, 50 insertions, 1 deletions
diff --git a/dev-db/gigabase/ChangeLog b/dev-db/gigabase/ChangeLog
index 80787c62fe7c..e1d23411d3bb 100644
--- a/dev-db/gigabase/ChangeLog
+++ b/dev-db/gigabase/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for dev-db/gigabase
# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/gigabase/ChangeLog,v 1.3 2003/02/12 05:48:22 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/gigabase/ChangeLog,v 1.4 2003/02/18 12:52:30 raker Exp $
+
+*gigabase-2.79 (18 Feb 2003)
+
+ 18 Feb 2003; Nick Hadaway <raker@gentoo.org> gigabase-2.79.ebuild,
+ files/digest-gigabase-2.79 :
+ Version bump
*gigabase-2.76 (14 Dec 2002)
diff --git a/dev-db/gigabase/files/digest-gigabase-2.79 b/dev-db/gigabase/files/digest-gigabase-2.79
new file mode 100644
index 000000000000..3439605d1f35
--- /dev/null
+++ b/dev-db/gigabase/files/digest-gigabase-2.79
@@ -0,0 +1 @@
+MD5 b6022227e909710d854c3057f0b15afd gigabase-2.79.tar.gz 1166915
diff --git a/dev-db/gigabase/gigabase-2.79.ebuild b/dev-db/gigabase/gigabase-2.79.ebuild
new file mode 100644
index 000000000000..6f30134163ac
--- /dev/null
+++ b/dev-db/gigabase/gigabase-2.79.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2003 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-db/gigabase/gigabase-2.79.ebuild,v 1.1 2003/02/18 12:52:30 raker 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"
+}