# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-db/tora/tora-3.0.0_pre20140918.ebuild,v 1.5 2014/09/18 Exp $ EAPI=5 inherit cmake-utils eutils if [[ ${PV} == 9999 ]]; then ESVN_REPO_URI="https://tora.svn.sourceforge.net/svnroot/tora/trunk/tora" inherit subversion SRC_URI="" else SRC_URI="http://dev.gentoo.org/~haubi/distfiles/${P}.tar.xz" RESTRICT="mirror" fi DESCRIPTION="TOra - Toolkit For Oracle" HOMEPAGE="http://torasql.com/" IUSE="debug mysql postgres" SLOT="0" LICENSE="GPL-2" KEYWORDS="~amd64 ~x86" DEPEND=" dev-util/pkgconfig dev-libs/ferrisloki x11-libs/qscintilla dev-qt/qtgui:4 dev-qt/qtsql:4[mysql?,postgres?] dev-qt/qtxmlpatterns:4 dev-db/oracle-instantclient-basic postgres? ( dev-db/postgresql-base ) " RDEPEND="${DEPEND}" src_prepare() { sed -i \ -e "/COPYING/ d" \ CMakeLists.txt || die "Removal of COPYING file failed" } src_configure() { local mycmakeargs=() mycmakeargs=(-DENABLE_ORACLE=ON) mycmakeargs+=( -DWANT_RPM=OFF -DWANT_BUNDLE=OFF -DWANT_BUNDLE_STANDALONE=OFF -DWANT_INTERNAL_QSCINTILLA=OFF -DWANT_INTERNAL_LOKI=OFF -DLOKI_LIBRARY="$(pkg-config --variable=libdir ferrisloki)/libferrisloki.so" -DLOKI_INCLUDE_DIR="$(pkg-config --variable=includedir ferrisloki)/FerrisLoki" $(cmake-utils_use_enable postgres PGSQL) $(cmake-utils_use_want debug) # path variables -DTORA_DOC_DIR=share/doc/${PF} ) cmake-utils_src_configure } src_install() { cmake-utils_src_install # doicon src/icons/${PN}.xpm || die domenu src/${PN}.desktop || die }