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.83.ebuild gigabase-3.82.ebuild gigabase-3.70.ebuild gigabase-3.69.ebuild
Date: Sun, 02 Oct 2011 09:17:48
Message-Id: 20111002091721.5A7342004B@flycatcher.gentoo.org
1 pva 11/10/02 09:17:21
2
3 Modified: ChangeLog
4 Added: gigabase-3.83.ebuild
5 Removed: gigabase-3.82.ebuild gigabase-3.70.ebuild
6 gigabase-3.69.ebuild
7 Log:
8 Version bump. Drop old.
9
10 (Portage version: 2.1.10.19/cvs/Linux x86_64)
11
12 Revision Changes Path
13 1.52 dev-db/gigabase/ChangeLog
14
15 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/gigabase/ChangeLog?rev=1.52&view=markup
16 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/gigabase/ChangeLog?rev=1.52&content-type=text/plain
17 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/gigabase/ChangeLog?r1=1.51&r2=1.52
18
19 Index: ChangeLog
20 ===================================================================
21 RCS file: /var/cvsroot/gentoo-x86/dev-db/gigabase/ChangeLog,v
22 retrieving revision 1.51
23 retrieving revision 1.52
24 diff -u -r1.51 -r1.52
25 --- ChangeLog 15 Jul 2011 20:15:04 -0000 1.51
26 +++ ChangeLog 2 Oct 2011 09:17:21 -0000 1.52
27 @@ -1,6 +1,12 @@
28 # ChangeLog for dev-db/gigabase
29 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
30 -# $Header: /var/cvsroot/gentoo-x86/dev-db/gigabase/ChangeLog,v 1.51 2011/07/15 20:15:04 maekke Exp $
31 +# $Header: /var/cvsroot/gentoo-x86/dev-db/gigabase/ChangeLog,v 1.52 2011/10/02 09:17:21 pva Exp $
32 +
33 +*gigabase-3.83 (02 Oct 2011)
34 +
35 + 02 Oct 2011; Peter Volkov <pva@g.o> -gigabase-3.69.ebuild,
36 + -gigabase-3.70.ebuild, -gigabase-3.82.ebuild, +gigabase-3.83.ebuild:
37 + Version bump. Drop old.
38
39 15 Jul 2011; Markus Meier <maekke@g.o> gigabase-3.82-r1.ebuild:
40 x86 stable, bug #372599
41
42
43
44 1.1 dev-db/gigabase/gigabase-3.83.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/gigabase/gigabase-3.83.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/gigabase/gigabase-3.83.ebuild?rev=1.1&content-type=text/plain
48
49 Index: gigabase-3.83.ebuild
50 ===================================================================
51 # Copyright 1999-2011 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/dev-db/gigabase/gigabase-3.83.ebuild,v 1.1 2011/10/02 09:17:21 pva Exp $
54
55 inherit eutils multilib
56
57 DESCRIPTION="OO-DBMS with interfaces for C/C++/Java/PHP/Perl"
58 HOMEPAGE="http://www.garret.ru/~knizhnik/gigabase.html"
59 SRC_URI="mirror://sourceforge/gigabase/${P}.tar.gz"
60
61 LICENSE="MIT"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE="doc"
65
66 DEPEND="doc? ( app-doc/doxygen )"
67 RDEPEND=""
68
69 S=${WORKDIR}/gigabase
70
71 src_compile() {
72 mf="${S}/Makefile"
73
74 econf
75 sed -r -i -e 's/subsql([^\.]|$)/subsql-gdb\1/' ${mf}
76 emake || die "compilation failed"
77 use doc && { doxygen doxygen.cfg || die "doxygen failed"; }
78 }
79
80 src_install() {
81 einstall || die "make install failed"
82
83 dodoc CHANGES
84 use doc && dohtml GigaBASE.htm
85 use doc && dohtml -r docs/html/*
86 }
87
88 pkg_postinst() {
89 elog "The subsql binary has been renamed to subsql-gdb,"
90 elog "to avoid a name clash with the FastDB version of subsql"
91 }