# TOra ebuild file # Don Seiler, don@seiler.us S=${WORKDIR}/tora-1.3.6.1 A="tora-alpha-1.3.6.1.tar.gz" DESCRIPTION="TOra - Toolkit For Oracle" SRC_URI="http://unc.dl.sourceforge.net/sourceforge/tora/${A}" HOMEPAGE="http://www.globecom.se/tora/" DEPEND=">=x11-libs/qt-3.0.0 mysql? ( >=dev-db/mysql-3.23 ) postgres? ( >=dev-db/postgresql-7.1 )" src_unpack() { unpack ${A} cd ${S} } src_compile() { local myconf use kde && myconf="$myconf --with-kde" \ || myconf="$myconf --without-kde" use mysql && myconf="$myconf" \ || myconf="$myconf --without-mysql" # use postgres && myconf="$myconf" \ # || myconf="$myconf --without-postgres" use oracle && myconf="$myconf" \ || myconf="$myconf --without-oracle" ./configure \ --prefix=/usr \ --with-mono \ $myconf || die "configure failed" emake || die "emake failed" } src_install() { dodir ${D}/usr/bin make \ ROOT=${D} \ install || die "make install failed" }