# by Flameeyes http://flameeyes.web.ctonet.it/ # Distributed under the terms of the GNU General Public License v2 # Missing xbase support, no xbase on gentoo portage inherit kde need-kde 3 IUSE="postgres mysql doc debug" DEPEND="$DEPEND postgres? ( dev-db/postgresql ) mysql? ( dev-db/mysql )" MY_P=${P/_/-} S=${WORKDIR}/${MY_P} DESCRIPTION="Rekall is a database front end, originally commercial software from theKompany.com but now licensed under the GPL." SRC_URI="http://www.rekallrevealed.org/packages/${MY_P}.tar.gz" HOMEPAGE="http://www.rekallrevealed.org" LICENSE="GPL-2" KEYWORDS="x86" src_compile() { econf \ `use_enable debug` \ `use_enable doc docs` \ `use_enable mysql mysql` \ `use_enable postgres pgsql` \ ${myconf} || die "Configure failed" emake || die "Parallel make failed" }