public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in app-misc/strigi: ChangeLog strigi-0.6.3.ebuild
@ 2009-01-14 12:31 Alexey Shvetsov (alexxy)
  0 siblings, 0 replies; 3+ messages in thread
From: Alexey Shvetsov (alexxy) @ 2009-01-14 12:31 UTC (permalink / raw
  To: gentoo-commits

alexxy      09/01/14 12:31:07

  Modified:             ChangeLog
  Added:                strigi-0.6.3.ebuild
  Log:
  Add new strigi 0.6.3
  (Portage version: 2.2_rc21/cvs/Linux 2.6.28-gentoo x86_64)

Revision  Changes    Path
1.20                 app-misc/strigi/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/strigi/ChangeLog?rev=1.20&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/strigi/ChangeLog?rev=1.20&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/strigi/ChangeLog?r1=1.19&r2=1.20

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-misc/strigi/ChangeLog,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- ChangeLog	14 Dec 2008 23:15:38 -0000	1.19
+++ ChangeLog	14 Jan 2009 12:31:07 -0000	1.20
@@ -1,6 +1,11 @@
 # ChangeLog for app-misc/strigi
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/strigi/ChangeLog,v 1.19 2008/12/14 23:15:38 jmbsvicetto Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-misc/strigi/ChangeLog,v 1.20 2009/01/14 12:31:07 alexxy Exp $
+
+*strigi-0.6.3 (14 Jan 2009)
+
+  14 Jan 2009; Alexey Shvetsov <alexxy@gentoo.org> +strigi-0.6.3.ebuild:
+  Import Bump new strigi to 0.6.3
 
   14 Dec 2008; Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org>
   strigi-0.5.8.ebuild, strigi-0.5.9.ebuild, strigi-0.5.10.ebuild,



1.1                  app-misc/strigi/strigi-0.6.3.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/strigi/strigi-0.6.3.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/strigi/strigi-0.6.3.ebuild?rev=1.1&content-type=text/plain

Index: strigi-0.6.3.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/strigi/strigi-0.6.3.ebuild,v 1.1 2009/01/14 12:31:07 alexxy Exp $

EAPI="2"

inherit cmake-utils eutils

DESCRIPTION="Fast crawling desktop search engine with Qt4 GUI"
HOMEPAGE="http://www.vandenoever.info/software/strigi"
SRC_URI="http://www.vandenoever.info/software/strigi/${P}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="+clucene +dbus debug exif fam hyperestraier inotify log +qt4 test"

COMMONDEPEND="
	dev-libs/libxml2
	virtual/libiconv
	clucene? ( >=dev-cpp/clucene-0.9.19 )
	dbus? ( sys-apps/dbus
		|| ( ( x11-libs/qt-dbus:4
			x11-libs/qt-gui:4 )
			=x11-libs/qt-4.3*:4[dbus] )
		)
	exif? ( media-gfx/exiv2 )
	fam? ( virtual/fam )
	hyperestraier? ( app-text/hyperestraier )
	log? ( >=dev-libs/log4cxx-0.9.7 )
	qt4? (
		|| ( ( x11-libs/qt-core:4
			x11-libs/qt-gui:4
			x11-libs/qt-dbus:4 )
			=x11-libs/qt-4.3*:4[dbus] )
		)
	!clucene? (
		!hyperestraier? (
			>=dev-cpp/clucene-0.9.19
		)
	)
"
#	sqlite? ( dev-db/sqlite:3 )"
DEPEND="${COMMONDEPEND}
	test? ( dev-util/cppunit )"
RDEPEND="${COMMONDEPEND}"

src_compile() {
	# Strigi needs either expat or libxml2.
	# However libxml2 seems to be required in both cases, linking to 2 xml parsers
	# is just silly, so we forcefully disable linking to expat.
	# Enabled: POLLING (only reliable way to check for files changed.)

	mycmakeargs="${mycmakeargs}
		-DENABLE_EXPAT=OFF -DENABLE_POLLING=ON
		-DFORCE_DEPS=ON -DENABLE_CPPUNIT=OFF
		-DENABLE_REGENERATEXSD=OFF
		$(cmake-utils_use_enable clucene CLUCENE)
		$(cmake-utils_use_enable dbus DBUS)
		$(cmake-utils_use_enable exif EXIV2)
		$(cmake-utils_use_enable fam FAM)
		$(cmake-utils_use_enable hyperestraier HYPERESTRAIER)
		$(cmake-utils_use_enable inotify INOTIFY)
		$(cmake-utils_use_enable log LOG4CXX)
		$(cmake-utils_use_enable qt4 DBUS)
		$(cmake-utils_use_enable qt4 QT4)"
#		$(cmake-utils_use_enable sqlite SQLITE)"

	if ! use clucene && ! use hyperestraier; then # && ! use sqlite; then
		mycmakeargs="${mycmakeargs} -DENABLE_CLUCENE=ON"
	fi

	cmake-utils_src_compile
}

src_test() {
	mycmakeargs="${mycmakeargs} -DENABLE_CPPUNIT=ON"
	cmake-utils_src_compile

	pushd "${WORKDIR}/${PN}_build"
	ctest --extra-verbose || die "Tests failed."
	popd
}

pkg_postinst() {
	if ! use clucene && ! use hyperestraier; then # && ! use sqlite; then
		elog "Because you didn't enable any of the supported backends:"
		elog "clucene, hyperestraier and sqlite"
		elog "clucene support was silently installed."
		elog "If you prefer another backend, be sure to reinstall strigi"
		elog "and to enable that backend use flag"
	fi
}






^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-misc/strigi: ChangeLog strigi-0.6.3.ebuild
@ 2009-02-01 18:20 Tomas Chvatal (scarabeus)
  0 siblings, 0 replies; 3+ messages in thread
From: Tomas Chvatal (scarabeus) @ 2009-02-01 18:20 UTC (permalink / raw
  To: gentoo-commits

scarabeus    09/02/01 18:20:18

  Modified:             ChangeLog strigi-0.6.3.ebuild
  Log:
  Update deps. Per bug #257254.
  (Portage version: 2.2_rc23/cvs/Linux x86_64)

Revision  Changes    Path
1.21                 app-misc/strigi/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/strigi/ChangeLog?rev=1.21&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/strigi/ChangeLog?rev=1.21&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/strigi/ChangeLog?r1=1.20&r2=1.21

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-misc/strigi/ChangeLog,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- ChangeLog	14 Jan 2009 12:31:07 -0000	1.20
+++ ChangeLog	1 Feb 2009 18:20:18 -0000	1.21
@@ -1,6 +1,9 @@
 # ChangeLog for app-misc/strigi
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/strigi/ChangeLog,v 1.20 2009/01/14 12:31:07 alexxy Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/strigi/ChangeLog,v 1.21 2009/02/01 18:20:18 scarabeus Exp $
+
+  01 Feb 2009; Tomas Chvatal <scarabeus@gentoo.org> strigi-0.6.3.ebuild:
+  Update deps. Per bug #257254.
 
 *strigi-0.6.3 (14 Jan 2009)
 



1.2                  app-misc/strigi/strigi-0.6.3.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/strigi/strigi-0.6.3.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/strigi/strigi-0.6.3.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/strigi/strigi-0.6.3.ebuild?r1=1.1&r2=1.2

Index: strigi-0.6.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-misc/strigi/strigi-0.6.3.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- strigi-0.6.3.ebuild	14 Jan 2009 12:31:07 -0000	1.1
+++ strigi-0.6.3.ebuild	1 Feb 2009 18:20:18 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/strigi/strigi-0.6.3.ebuild,v 1.1 2009/01/14 12:31:07 alexxy Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/strigi/strigi-0.6.3.ebuild,v 1.2 2009/02/01 18:20:18 scarabeus Exp $
 
 EAPI="2"
 
@@ -24,7 +24,7 @@
 			x11-libs/qt-gui:4 )
 			=x11-libs/qt-4.3*:4[dbus] )
 		)
-	exif? ( media-gfx/exiv2 )
+	exif? ( >=media-gfx/exiv2-0.17 )
 	fam? ( virtual/fam )
 	hyperestraier? ( app-text/hyperestraier )
 	log? ( >=dev-libs/log4cxx-0.9.7 )






^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-misc/strigi: ChangeLog strigi-0.6.3.ebuild
@ 2009-02-01 23:00 Jorge Manuel B. S. Vicetto (jmbsvicetto)
  0 siblings, 0 replies; 3+ messages in thread
From: Jorge Manuel B. S. Vicetto (jmbsvicetto) @ 2009-02-01 23:00 UTC (permalink / raw
  To: gentoo-commits

jmbsvicetto    09/02/01 23:00:48

  Modified:             ChangeLog strigi-0.6.3.ebuild
  Log:
  Restored ~ppc and ~ppc64 keywords to KDE-4.2.0
  (Portage version: 2.2_rc23/cvs/Linux x86_64)

Revision  Changes    Path
1.22                 app-misc/strigi/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/strigi/ChangeLog?rev=1.22&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/strigi/ChangeLog?rev=1.22&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/strigi/ChangeLog?r1=1.21&r2=1.22

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-misc/strigi/ChangeLog,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- ChangeLog	1 Feb 2009 18:20:18 -0000	1.21
+++ ChangeLog	1 Feb 2009 23:00:48 -0000	1.22
@@ -1,6 +1,10 @@
 # ChangeLog for app-misc/strigi
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/strigi/ChangeLog,v 1.21 2009/02/01 18:20:18 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/strigi/ChangeLog,v 1.22 2009/02/01 23:00:48 jmbsvicetto Exp $
+
+  01 Feb 2009; Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org>
+  strigi-0.6.3.ebuild:
+  Restored ~ppc and ~ppc64 keywords to KDE-4.2.0
 
   01 Feb 2009; Tomas Chvatal <scarabeus@gentoo.org> strigi-0.6.3.ebuild:
   Update deps. Per bug #257254.



1.3                  app-misc/strigi/strigi-0.6.3.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/strigi/strigi-0.6.3.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/strigi/strigi-0.6.3.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/strigi/strigi-0.6.3.ebuild?r1=1.2&r2=1.3

Index: strigi-0.6.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-misc/strigi/strigi-0.6.3.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- strigi-0.6.3.ebuild	1 Feb 2009 18:20:18 -0000	1.2
+++ strigi-0.6.3.ebuild	1 Feb 2009 23:00:48 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/strigi/strigi-0.6.3.ebuild,v 1.2 2009/02/01 18:20:18 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/strigi/strigi-0.6.3.ebuild,v 1.3 2009/02/01 23:00:48 jmbsvicetto Exp $
 
 EAPI="2"
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
 IUSE="+clucene +dbus debug exif fam hyperestraier inotify log +qt4 test"
 
 COMMONDEPEND="






^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2009-02-01 23:00 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-02-01 18:20 [gentoo-commits] gentoo-x86 commit in app-misc/strigi: ChangeLog strigi-0.6.3.ebuild Tomas Chvatal (scarabeus)
  -- strict thread matches above, loose matches on Subject: below --
2009-02-01 23:00 Jorge Manuel B. S. Vicetto (jmbsvicetto)
2009-01-14 12:31 Alexey Shvetsov (alexxy)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox