# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ DESCRIPTION="Open Source Database Benchmark" HOMEPAGE="http://osdb.sourceforge.net/" SRC_URI="mirror://sourceforge/${PN}/${P}.tgz mirror://sourceforge/${PN}/data-40mb.tgz mirror://sourceforge/${PN}/data-4mb.tgz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86" IUSE="mysql postgres" DEPEND="mysql? ( dev-db/mysql ) postgres? ( dev-db/postgresql )" S=${WORKDIR}/${PN} src_compile() { econf \ $(use_with mysql) \ $(use_with postgres postgresql) \ || die "econf failed" emake || die "emake failed" } src_install() { einstall || die "einstall failed" insinto /usr/share/osdb doins -r ${WORKDIR}/data-4{,0}mb || die "doins failed" dodoc AUTHORS ChangeLog README TODO || die "dodoc failed" dohtml docs/* || die "dohtml failed" } pkg_postinst() { einfo einfo "The data files needed to run osdb have been installed in /usr/share/osdb" einfo }