diff options
Diffstat (limited to 'dev-db/gigabase/gigabase-3.31.ebuild')
-rw-r--r-- | dev-db/gigabase/gigabase-3.31.ebuild | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/dev-db/gigabase/gigabase-3.31.ebuild b/dev-db/gigabase/gigabase-3.31.ebuild new file mode 100644 index 000000000000..6db8558c0385 --- /dev/null +++ b/dev-db/gigabase/gigabase-3.31.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2005 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-db/gigabase/gigabase-3.31.ebuild,v 1.1 2005/01/06 22:16:22 rphillips Exp $ + +DESCRIPTION="OO-DBMS with interfaces for C/C++/Java/PHP/Perl" +HOMEPAGE="http://www.garret.ru/~knizhnik/gigabase.html" +SRC_URI="http://www.garret.ru/~knizhnik/${P}.tar.gz" +LICENSE="MIT" +SLOT="0" +KEYWORDS="x86 s390" +IUSE="" +DEPEND="" + +S=${WORKDIR}/gigabase + +src_compile() { + mf="${S}/Makefile" + + econf || die "econf failed" + + sed -r -e 's/subsql([^\.]|$)/subsql-gdb\1/' ${mf} > ${mf}.tmp + mv ${mf}.tmp ${mf} + + emake || die +} + +src_install() { + make \ + prefix=${D}/usr \ + mandir=${D}/usr/share/man \ + infodir=${D}/usr/share/info \ + install || die + + dodoc CHANGES + dohtml GigaBASE.htm + dohtml -r docs/html/* +} + +pkg_postinst() { + einfo "The subsql binary has been renamed to subsql-gdb," + einfo "to avoid a name clash with the FastDB version of subsql" +} |