diff options
| author | Elias Probst <mail@eliasprobst.eu> | 2011-01-02 13:44:54 +0100 |
|---|---|---|
| committer | Theo Chatzimichos <tampakrap@gentoo.org> | 2011-01-02 14:47:16 +0200 |
| commit | b784f7c505fe507dfe9e7644eedb9e983de9b302 (patch) | |
| tree | 290239eb5cdb17444b475e4394c61ffddbbd6340 | |
| parent | ccb7fe63569f903372a90866d223ee9a3eae6946 (diff) | |
| download | kde-b784f7c505fe507dfe9e7644eedb9e983de9b302.tar.gz kde-b784f7c505fe507dfe9e7644eedb9e983de9b302.tar.bz2 kde-b784f7c505fe507dfe9e7644eedb9e983de9b302.zip | |
[app-misc/strigi] Updated strigi-9999.ebuild (strigi moved from SVN to git. Xine backend is disabled now as recommended by upstream. ebuild uses EAPI=3 now.
| -rw-r--r-- | app-misc/strigi/strigi-9999.ebuild | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/app-misc/strigi/strigi-9999.ebuild b/app-misc/strigi/strigi-9999.ebuild index 48da8f92447..e2f39392012 100644 --- a/app-misc/strigi/strigi-9999.ebuild +++ b/app-misc/strigi/strigi-9999.ebuild @@ -2,11 +2,19 @@ # Distributed under the terms of the GNU General Public License v2 # $Header: $ -EAPI="2" +EAPI=3 -ESVN_REPO_URI="svn://anonsvn.kde.org/home/kde/trunk/kdesupport/${PN}" -ESVN_PROJECT="${PN}" -inherit base cmake-utils eutils subversion +if [[ "${PV}" != "9999" ]]; then + SRC_URI="" + KEYWORDS="" +else + EGIT_REPO_URI="git://anongit.kde.org/strigi" + GIT_ECLASS="git" + EGIT_HAS_SUBMODULES="true" + KEYWORDS="" +fi + +inherit cmake-utils ${GIT_ECLASS} DESCRIPTION="Fast crawling desktop search engine with Qt4 GUI" HOMEPAGE="http://strigi.sourceforge.net/" @@ -14,8 +22,7 @@ SRC_URI="" LICENSE="GPL-2" SLOT="0" -KEYWORDS="" -IUSE="clucene +dbus debug exif fam ffmpeg hyperestraier inotify log +qt4 test xine" +IUSE="clucene +dbus debug exif fam ffmpeg hyperestraier inotify log +qt4 test" COMMONDEPEND=" app-arch/bzip2:0 @@ -36,21 +43,14 @@ COMMONDEPEND=" x11-libs/qt-core:4 x11-libs/qt-gui:4 ) - xine? ( media-libs/xine-lib ) " DEPEND="${COMMONDEPEND} test? ( dev-util/cppunit )" RDEPEND="${COMMONDEPEND}" -src_prepare() { - # subverison has own src_prepare - # so this is not required on stable ebuild - base_src_prepare -} - src_configure() { # Enabled: POLLING (only reliable way to check for files changed.) - + # Disabled: xine - recommended upstream to keep it this way mycmakeargs=( -DENABLE_POLLING=ON -DFORCE_DEPS=ON @@ -66,7 +66,7 @@ src_configure() { $(cmake-utils_use_enable log LOG4CXX) $(cmake-utils_use_enable qt4) $(cmake-utils_use_enable test CPPUNIT) - $(cmake-utils_use_enable xine) + $(cmake-utils_disable xine) ) if use qt4; then |
