Gentoo Archives: gentoo-commits

From: "Peter Volkov (pva)" <pva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-db/gigabase: ChangeLog gigabase-3.67.ebuild gigabase-3.65.ebuild gigabase-3.63.ebuild gigabase-3.62.ebuild
Date: Thu, 09 Oct 2008 18:15:35
Message-Id: E1Ko02v-0006Bj-Q2@stork.gentoo.org
1 pva 08/10/09 18:15:33
2
3 Modified: ChangeLog
4 Added: gigabase-3.67.ebuild
5 Removed: gigabase-3.65.ebuild gigabase-3.63.ebuild
6 gigabase-3.62.ebuild
7 Log:
8 Version bump.
9 (Portage version: 2.2_rc11/cvs/Linux 2.6.26-gentoo-r1 i686)
10
11 Revision Changes Path
12 1.37 dev-db/gigabase/ChangeLog
13
14 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/gigabase/ChangeLog?rev=1.37&view=markup
15 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/gigabase/ChangeLog?rev=1.37&content-type=text/plain
16 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/gigabase/ChangeLog?r1=1.36&r2=1.37
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-db/gigabase/ChangeLog,v
21 retrieving revision 1.36
22 retrieving revision 1.37
23 diff -u -r1.36 -r1.37
24 --- ChangeLog 3 Jul 2008 16:09:37 -0000 1.36
25 +++ ChangeLog 9 Oct 2008 18:15:33 -0000 1.37
26 @@ -1,6 +1,12 @@
27 # ChangeLog for dev-db/gigabase
28 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-db/gigabase/ChangeLog,v 1.36 2008/07/03 16:09:37 pva Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/dev-db/gigabase/ChangeLog,v 1.37 2008/10/09 18:15:33 pva Exp $
31 +
32 +*gigabase-3.67 (09 Oct 2008)
33 +
34 + 09 Oct 2008; Peter Volkov <pva@g.o> -gigabase-3.62.ebuild,
35 + -gigabase-3.63.ebuild, -gigabase-3.65.ebuild, +gigabase-3.67.ebuild:
36 + Version bump.
37
38 *gigabase-3.66 (03 Jul 2008)
39
40
41
42
43 1.1 dev-db/gigabase/gigabase-3.67.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/gigabase/gigabase-3.67.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/gigabase/gigabase-3.67.ebuild?rev=1.1&content-type=text/plain
47
48 Index: gigabase-3.67.ebuild
49 ===================================================================
50 # Copyright 1999-2008 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-db/gigabase/gigabase-3.67.ebuild,v 1.1 2008/10/09 18:15:33 pva Exp $
53
54 inherit eutils multilib
55
56 DESCRIPTION="OO-DBMS with interfaces for C/C++/Java/PHP/Perl"
57 HOMEPAGE="http://www.garret.ru/~knizhnik/gigabase.html"
58 SRC_URI="mirror://sourceforge/gigabase/${P}.tar.gz"
59 LICENSE="MIT"
60 SLOT="0"
61 KEYWORDS="~amd64 ~s390 ~x86"
62 IUSE="doc"
63 DEPEND=""
64
65 S=${WORKDIR}/gigabase
66
67 src_compile() {
68 mf="${S}/Makefile"
69
70 econf || die "econf failed"
71
72 sed -r -i -e 's/subsql([^\.]|$)/subsql-gdb\1/' ${mf}
73
74 emake || die "compilation failed"
75 }
76
77 src_install() {
78 einstall || die "make install failed"
79
80 dodoc CHANGES
81 use doc && dohtml GigaBASE.htm
82 use doc && dohtml -r docs/html/*
83 }
84
85 pkg_postinst() {
86 elog "The subsql binary has been renamed to subsql-gdb,"
87 elog "to avoid a name clash with the FastDB version of subsql"
88 echo
89 ewarn "Content of indices created by old (<=3.42) version of GigaBASE with"
90 ewarn "USE_LOCALE_SETTINGS enabled and using non-standard locale will be"
91 ewarn "different with format used by version 3.43 and higher. So you will"
92 ewarn "have to recreate indices in this case."
93 }