diff options
Diffstat (limited to 'dev-db/fastdb/fastdb-2.92.ebuild')
-rw-r--r-- | dev-db/fastdb/fastdb-2.92.ebuild | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/dev-db/fastdb/fastdb-2.92.ebuild b/dev-db/fastdb/fastdb-2.92.ebuild deleted file mode 100644 index 5484c936beac..000000000000 --- a/dev-db/fastdb/fastdb-2.92.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/fastdb/fastdb-2.92.ebuild,v 1.5 2007/01/31 13:34:04 genone Exp $ - -DESCRIPTION="OO-DBMS that holds all data in memory; interfaces for C/C++/Kylix" -HOMEPAGE="http://www.garret.ru/~knizhnik/fastdb.html" -SRC_URI="http://www.garret.ru/~knizhnik/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~x86 ~ppc" - -IUSE="" - -DEPEND="virtual/libc" - -S="${WORKDIR}/${PN}" - -src_compile() { - mf="${S}/makefile" - - sed -r -e 's/subsql([^\.]|$)/subsql-fdb\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 FastDB.htm - dohtml -r docs/html/* -} - -pkg_postinst() { - elog "The subsql binary has been renamed to subsql-fdb," - elog "to avoid a name clash with the GigaBase version of subsql" -} |