diff options
author | Peter Volkov <pva@gentoo.org> | 2011-05-16 12:52:23 +0000 |
---|---|---|
committer | Peter Volkov <pva@gentoo.org> | 2011-05-16 12:52:23 +0000 |
commit | 90488179f69698a0d0c84581348f160376d86745 (patch) | |
tree | 75f616420d7f80acf8bc05aadea2140b22551cd9 /dev-db | |
parent | [bump] dev-perl/CPAN-Mini-Inject-0.290.0 (diff) | |
download | gentoo-2-90488179f69698a0d0c84581348f160376d86745.tar.gz gentoo-2-90488179f69698a0d0c84581348f160376d86745.tar.bz2 gentoo-2-90488179f69698a0d0c84581348f160376d86745.zip |
Version bump.
(Portage version: 2.1.9.49/cvs/Linux x86_64)
Diffstat (limited to 'dev-db')
-rw-r--r-- | dev-db/gigabase/ChangeLog | 9 | ||||
-rw-r--r-- | dev-db/gigabase/gigabase-3.82.ebuild | 40 |
2 files changed, 47 insertions, 2 deletions
diff --git a/dev-db/gigabase/ChangeLog b/dev-db/gigabase/ChangeLog index 0c62674f9cb2..d8c035674e99 100644 --- a/dev-db/gigabase/ChangeLog +++ b/dev-db/gigabase/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-db/gigabase -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/gigabase/ChangeLog,v 1.46 2009/07/07 07:35:41 pva Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-db/gigabase/ChangeLog,v 1.47 2011/05/16 12:52:23 pva Exp $ + +*gigabase-3.82 (16 May 2011) + + 16 May 2011; Peter Volkov <pva@gentoo.org> +gigabase-3.82.ebuild: + Version bump. *gigabase-3.70 (07 Jul 2009) diff --git a/dev-db/gigabase/gigabase-3.82.ebuild b/dev-db/gigabase/gigabase-3.82.ebuild new file mode 100644 index 000000000000..7f84ee595ff2 --- /dev/null +++ b/dev-db/gigabase/gigabase-3.82.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-db/gigabase/gigabase-3.82.ebuild,v 1.1 2011/05/16 12:52:23 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="" +RDEPEND="" + +S=${WORKDIR}/gigabase + +src_compile() { + mf="${S}/Makefile" + + econf + 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" +} |