summaryrefslogtreecommitdiff
path: root/dev-db
diff options
context:
space:
mode:
authorPeter Volkov <pva@gentoo.org>2008-03-03 19:28:32 +0000
committerPeter Volkov <pva@gentoo.org>2008-03-03 19:28:32 +0000
commit701b6af6b4510ff335c75605c0359acf54b62e4b (patch)
tree87aeeca20dcd494b6eaaad3758654a17a7492b67 /dev-db
parentversion bump of the MANAGESIEVE plugin (diff)
downloadgentoo-2-701b6af6b4510ff335c75605c0359acf54b62e4b.tar.gz
gentoo-2-701b6af6b4510ff335c75605c0359acf54b62e4b.tar.bz2
gentoo-2-701b6af6b4510ff335c75605c0359acf54b62e4b.zip
Version bump.
(Portage version: 2.1.4.4)
Diffstat (limited to 'dev-db')
-rw-r--r--dev-db/gigabase/ChangeLog8
-rw-r--r--dev-db/gigabase/gigabase-3.59.ebuild44
-rw-r--r--dev-db/gigabase/gigabase-3.63.ebuild (renamed from dev-db/gigabase/gigabase-3.60.ebuild)13
3 files changed, 14 insertions, 51 deletions
diff --git a/dev-db/gigabase/ChangeLog b/dev-db/gigabase/ChangeLog
index 8614640aebea..12d8fd2eea8d 100644
--- a/dev-db/gigabase/ChangeLog
+++ b/dev-db/gigabase/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for dev-db/gigabase
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/gigabase/ChangeLog,v 1.32 2008/02/14 21:17:33 pva Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/gigabase/ChangeLog,v 1.33 2008/03/03 19:28:32 pva Exp $
+
+*gigabase-3.63 (03 Mar 2008)
+
+ 03 Mar 2008; <pva@gentoo.org> -gigabase-3.59.ebuild,
+ -gigabase-3.60.ebuild, +gigabase-3.63.ebuild:
+ Version bump.
*gigabase-3.62 (14 Feb 2008)
diff --git a/dev-db/gigabase/gigabase-3.59.ebuild b/dev-db/gigabase/gigabase-3.59.ebuild
deleted file mode 100644
index 03d887e68a0b..000000000000
--- a/dev-db/gigabase/gigabase-3.59.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/gigabase/gigabase-3.59.ebuild,v 1.1 2007/08/31 09:49:25 pva Exp $
-
-inherit eutils libtool multilib
-
-DESCRIPTION="OO-DBMS with interfaces for C/C++/Java/PHP/Perl"
-HOMEPAGE="http://www.garret.ru/~knizhnik/gigabase.html"
-SRC_URI="mirror://sourceforge/gigabase/${P}.tar.gz"
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~s390 ~x86"
-IUSE="doc"
-DEPEND=""
-
-S="${WORKDIR}"/gigabase
-
-src_compile() {
- mf="${S}/Makefile"
-
- econf || die "econf failed"
-
- sed -r -i -e 's/subsql([^\.]|$)/subsql-gdb\1/' ${mf}
-
- emake || die "compilation failed"
-}
-
-src_install() {
- einstall || die "make install failed"
-
- dodoc CHANGES
- use doc && dohtml GigaBASE.htm
- use doc && dohtml -r docs/html/*
-}
-
-pkg_postinst() {
- elog "The subsql binary has been renamed to subsql-gdb,"
- elog "to avoid a name clash with the FastDB version of subsql"
- echo
- ewarn "Content of indices created by old (<=3.42) version of GigaBASE with"
- ewarn "USE_LOCALE_SETTINGS enabled and using non-standard locale will be"
- ewarn "different with format used by version 3.43 and higher. So you will"
- ewarn "have to recreate indices in this case."
-}
diff --git a/dev-db/gigabase/gigabase-3.60.ebuild b/dev-db/gigabase/gigabase-3.63.ebuild
index b62a29cc7e73..be18244a2e6d 100644
--- a/dev-db/gigabase/gigabase-3.60.ebuild
+++ b/dev-db/gigabase/gigabase-3.63.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2007 Gentoo Foundation
+# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/gigabase/gigabase-3.60.ebuild,v 1.1 2007/11/01 12:31:56 pva Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/gigabase/gigabase-3.63.ebuild,v 1.1 2008/03/03 19:28:32 pva Exp $
-inherit eutils libtool multilib
+inherit autotools eutils multilib
DESCRIPTION="OO-DBMS with interfaces for C/C++/Java/PHP/Perl"
HOMEPAGE="http://www.garret.ru/~knizhnik/gigabase.html"
@@ -17,10 +17,11 @@ S=${WORKDIR}/gigabase
src_unpack() {
unpack ${A}
-
cd "${S}"
- sed -ie 's: confdefs.h::g' Makefile.in
- epatch "${FILESDIR}"/${P}-confdefs.h-and-warnings.patch
+
+ # Fix testsuite. Should be fixed in next release.
+ sed -i -e 's:testperf.dbs:testidx2.dbs:' testidx2.cpp
+ eautoreconf
}
src_compile() {