diff options
author | 2008-07-03 16:09:37 +0000 | |
---|---|---|
committer | 2008-07-03 16:09:37 +0000 | |
commit | c67afeb3f7e8b66e628a9d6e9ba5ba7528b2c5d0 (patch) | |
tree | 8f4981528183824c5bb36df392514075e664bf59 /dev-db/gigabase | |
parent | alpha/ia64/sparc/x86 stable wrt #230193 (diff) | |
download | gentoo-2-c67afeb3f7e8b66e628a9d6e9ba5ba7528b2c5d0.tar.gz gentoo-2-c67afeb3f7e8b66e628a9d6e9ba5ba7528b2c5d0.tar.bz2 gentoo-2-c67afeb3f7e8b66e628a9d6e9ba5ba7528b2c5d0.zip |
Version bump.
(Portage version: 2.2_rc1/cvs/Linux 2.6.22-ovz005 i686)
Diffstat (limited to 'dev-db/gigabase')
-rw-r--r-- | dev-db/gigabase/ChangeLog | 8 | ||||
-rw-r--r-- | dev-db/gigabase/gigabase-3.65.ebuild | 4 | ||||
-rw-r--r-- | dev-db/gigabase/gigabase-3.66.ebuild | 44 |
3 files changed, 53 insertions, 3 deletions
diff --git a/dev-db/gigabase/ChangeLog b/dev-db/gigabase/ChangeLog index 6dae8d35e6d2..e89b6a3c3374 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.35 2008/05/11 10:53:42 pva Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/gigabase/ChangeLog,v 1.36 2008/07/03 16:09:37 pva Exp $ + +*gigabase-3.66 (03 Jul 2008) + + 03 Jul 2008; Peter Volkov <pva@gentoo.org> gigabase-3.65.ebuild, + +gigabase-3.66.ebuild: + Version bump. *gigabase-3.65 (11 May 2008) diff --git a/dev-db/gigabase/gigabase-3.65.ebuild b/dev-db/gigabase/gigabase-3.65.ebuild index fd25f4cd9620..363eecac04ec 100644 --- a/dev-db/gigabase/gigabase-3.65.ebuild +++ b/dev-db/gigabase/gigabase-3.65.ebuild @@ -1,8 +1,8 @@ # 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.65.ebuild,v 1.1 2008/05/11 10:53:42 pva Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/gigabase/gigabase-3.65.ebuild,v 1.2 2008/07/03 16:09:37 pva Exp $ -inherit autotools eutils multilib +inherit eutils multilib DESCRIPTION="OO-DBMS with interfaces for C/C++/Java/PHP/Perl" HOMEPAGE="http://www.garret.ru/~knizhnik/gigabase.html" diff --git a/dev-db/gigabase/gigabase-3.66.ebuild b/dev-db/gigabase/gigabase-3.66.ebuild new file mode 100644 index 000000000000..9813d7f3d026 --- /dev/null +++ b/dev-db/gigabase/gigabase-3.66.ebuild @@ -0,0 +1,44 @@ +# 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.66.ebuild,v 1.1 2008/07/03 16:09:37 pva Exp $ + +inherit eutils 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." +} |