public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-db/sqlite: ChangeLog sqlite-3.6.21.ebuild
@ 2009-12-19 11:57 Petteri Raty (betelgeuse)
  0 siblings, 0 replies; 9+ messages in thread
From: Petteri Raty (betelgeuse) @ 2009-12-19 11:57 UTC (permalink / raw
  To: gentoo-commits

betelgeuse    09/12/19 11:57:01

  Modified:             ChangeLog sqlite-3.6.21.ebuild
  Log:
  Make building work without tcl installed using the amalgamation tarball from upstream. Fixes tests to work with -tcl. Thanks to Andrew <abrouwers@gmail.com>. Fixes bug #297113 and bug #297332.
  (Portage version: 2.2_rc54/cvs/Linux i686)

Revision  Changes    Path
1.300                dev-db/sqlite/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.300&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.300&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?r1=1.299&r2=1.300

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v
retrieving revision 1.299
retrieving revision 1.300
diff -u -r1.299 -r1.300
--- ChangeLog	12 Dec 2009 21:09:39 -0000	1.299
+++ ChangeLog	19 Dec 2009 11:57:01 -0000	1.300
@@ -1,6 +1,11 @@
 # ChangeLog for dev-db/sqlite
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.299 2009/12/12 21:09:39 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.300 2009/12/19 11:57:01 betelgeuse Exp $
+
+  19 Dec 2009; Petteri Räty <betelgeuse@gentoo.org> sqlite-3.6.21.ebuild:
+  Make building work without tcl installed using the amalgamation tarball
+  from upstream. Fixes tests to work with -tcl. Thanks to Andrew
+  <abrouwers@gmail.com>. Fixes bug #297113 and bug #297332.
 
   12 Dec 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
   sqlite-3.6.21.ebuild:



1.3                  dev-db/sqlite/sqlite-3.6.21.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.21.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.21.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.21.ebuild?r1=1.2&r2=1.3

Index: sqlite-3.6.21.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.21.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- sqlite-3.6.21.ebuild	12 Dec 2009 20:47:55 -0000	1.2
+++ sqlite-3.6.21.ebuild	19 Dec 2009 11:57:01 -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/dev-db/sqlite/sqlite-3.6.21.ebuild,v 1.2 2009/12/12 20:47:55 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.21.ebuild,v 1.3 2009/12/19 11:57:01 betelgeuse Exp $
 
 EAPI="2"
 
@@ -10,19 +10,25 @@
 HOMEPAGE="http://www.sqlite.org/"
 DOC_BASE="$(get_version_component_range 1-3)"
 DOC_PV="$(replace_all_version_separators _ ${DOC_BASE})"
-SRC_URI="http://www.sqlite.org/${P}.tar.gz
+
+SRC_URI="
+    tcl? ( http://www.sqlite.org/${P}.tar.gz )
+    !tcl? (
+		test? ( http://www.sqlite.org/${P}.tar.gz )
+		!test? ( http://www.sqlite.org/${PN}-amalgamation-${PV}.tar.gz )
+    )
 	doc? ( http://www.sqlite.org/${PN}_docs_${DOC_PV}.zip )"
 
 LICENSE="as-is"
 SLOT="3"
 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
-IUSE="debug doc fts3 icu +readline soundex tcl +threadsafe"
+IUSE="debug doc fts3 icu +readline soundex tcl +threadsafe test"
 
 RDEPEND="icu? ( dev-libs/icu )
 	readline? ( sys-libs/readline )
-	tcl? ( dev-lang/tcl )"
+	tcl? ( dev-lang/tcl )
+	test? ( dev-lang/tcl )"
 DEPEND="${RDEPEND}
-	dev-lang/tcl
 	doc? ( app-arch/unzip )"
 
 src_prepare() {
@@ -55,12 +61,18 @@
 		append-cppflags -DSQLITE_ENABLE_FTS3 -DSQLITE_ENABLE_FTS3_PARENTHESIS
 	fi
 
+	# The amalgamation source doesn't have these via Makefile
+	if use debug; then
+		append-cppflags -DSQLITE_DEBUG=1
+	else
+		append-cppflags -DNDEBUG
+	fi
+
+	# amalgamation doesn't have tcl
 	econf \
-		$(use_enable debug) \
 		$(use_enable readline) \
 		$(use_enable threadsafe) \
-		$(use_enable threadsafe cross-thread-connections) \
-		$(use_enable tcl)
+		$(use tcl && echo --enable-tcl)
 }
 
 src_compile() {






^ permalink raw reply	[flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-db/sqlite: ChangeLog sqlite-3.6.21.ebuild
@ 2010-02-11 14:14 Christian Faulhammer (fauli)
  0 siblings, 0 replies; 9+ messages in thread
From: Christian Faulhammer (fauli) @ 2010-02-11 14:14 UTC (permalink / raw
  To: gentoo-commits

fauli       10/02/11 14:14:12

  Modified:             ChangeLog sqlite-3.6.21.ebuild
  Log:
  stable x86, bug 300145
  (Portage version: 2.1.7.16/cvs/Linux i686)

Revision  Changes    Path
1.324                dev-db/sqlite/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.324&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.324&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?r1=1.323&r2=1.324

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v
retrieving revision 1.323
retrieving revision 1.324
diff -u -r1.323 -r1.324
--- ChangeLog	4 Feb 2010 09:55:22 -0000	1.323
+++ ChangeLog	11 Feb 2010 14:14:11 -0000	1.324
@@ -1,6 +1,9 @@
 # ChangeLog for dev-db/sqlite
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.323 2010/02/04 09:55:22 mduft Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.324 2010/02/11 14:14:11 fauli Exp $
+
+  11 Feb 2010; Christian Faulhammer <fauli@gentoo.org> sqlite-3.6.21.ebuild:
+  stable x86, bug 300145
 
   04 Feb 2010; Markus Duft <mduft@gentoo.org> sqlite-3.6.22-r1.ebuild:
   fixed #300674 by enabling tcl with +test



1.9                  dev-db/sqlite/sqlite-3.6.21.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.21.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.21.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.21.ebuild?r1=1.8&r2=1.9

Index: sqlite-3.6.21.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.21.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- sqlite-3.6.21.ebuild	22 Jan 2010 20:34:36 -0000	1.8
+++ sqlite-3.6.21.ebuild	11 Feb 2010 14:14:11 -0000	1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.21.ebuild,v 1.8 2010/01/22 20:34:36 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.21.ebuild,v 1.9 2010/02/11 14:14:11 fauli Exp $
 
 EAPI="2"
 
@@ -21,7 +21,7 @@
 
 LICENSE="as-is"
 SLOT="3"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~sparc-fbsd ~x86-fbsd"
 IUSE="debug doc +fts3 icu +readline soundex tcl +threadsafe test"
 
 RDEPEND="icu? ( dev-libs/icu )






^ permalink raw reply	[flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-db/sqlite: ChangeLog sqlite-3.6.21.ebuild
@ 2010-01-22 20:34 Brent Baude (ranger)
  0 siblings, 0 replies; 9+ messages in thread
From: Brent Baude (ranger) @ 2010-01-22 20:34 UTC (permalink / raw
  To: gentoo-commits

ranger      10/01/22 20:34:37

  Modified:             ChangeLog sqlite-3.6.21.ebuild
  Log:
  stable ppc, bug 300145
  (Portage version: 2.1.6.13/cvs/Linux ppc64)

Revision  Changes    Path
1.322                dev-db/sqlite/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.322&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.322&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?r1=1.321&r2=1.322

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v
retrieving revision 1.321
retrieving revision 1.322
diff -u -r1.321 -r1.322
--- ChangeLog	22 Jan 2010 11:33:29 -0000	1.321
+++ ChangeLog	22 Jan 2010 20:34:36 -0000	1.322
@@ -1,6 +1,9 @@
 # ChangeLog for dev-db/sqlite
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.321 2010/01/22 11:33:29 yngwin Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.322 2010/01/22 20:34:36 ranger Exp $
+
+  22 Jan 2010; Brent Baude <ranger@gentoo.org> sqlite-3.6.21.ebuild:
+  stable ppc, bug 300145
 
 *sqlite-3.6.22-r1 (22 Jan 2010)
 



1.8                  dev-db/sqlite/sqlite-3.6.21.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.21.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.21.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.21.ebuild?r1=1.7&r2=1.8

Index: sqlite-3.6.21.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.21.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- sqlite-3.6.21.ebuild	10 Jan 2010 13:40:22 -0000	1.7
+++ sqlite-3.6.21.ebuild	22 Jan 2010 20:34:36 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.21.ebuild,v 1.7 2010/01/10 13:40:22 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.21.ebuild,v 1.8 2010/01/22 20:34:36 ranger Exp $
 
 EAPI="2"
 
@@ -21,7 +21,7 @@
 
 LICENSE="as-is"
 SLOT="3"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd"
 IUSE="debug doc +fts3 icu +readline soundex tcl +threadsafe test"
 
 RDEPEND="icu? ( dev-libs/icu )






^ permalink raw reply	[flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-db/sqlite: ChangeLog sqlite-3.6.21.ebuild
@ 2010-01-10 13:40 Brent Baude (ranger)
  0 siblings, 0 replies; 9+ messages in thread
From: Brent Baude (ranger) @ 2010-01-10 13:40 UTC (permalink / raw
  To: gentoo-commits

ranger      10/01/10 13:40:23

  Modified:             ChangeLog sqlite-3.6.21.ebuild
  Log:
  Marking sqlite-3.6.21 ppc64 for bug 300145
  (Portage version: 2.1.6.13/cvs/Linux ppc64)

Revision  Changes    Path
1.315                dev-db/sqlite/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.315&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.315&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?r1=1.314&r2=1.315

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v
retrieving revision 1.314
retrieving revision 1.315
diff -u -r1.314 -r1.315
--- ChangeLog	9 Jan 2010 22:08:47 -0000	1.314
+++ ChangeLog	10 Jan 2010 13:40:22 -0000	1.315
@@ -1,6 +1,9 @@
 # ChangeLog for dev-db/sqlite
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.314 2010/01/09 22:08:47 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.315 2010/01/10 13:40:22 ranger Exp $
+
+  10 Jan 2010; Brent Baude <ranger@gentoo.org> sqlite-3.6.21.ebuild:
+  Marking sqlite-3.6.21 ppc64 for bug 300145
 
   09 Jan 2010; Christian Faulhammer <fauli@gentoo.org> sqlite-3.6.22.ebuild:
   keyword ~x86-freebsd



1.7                  dev-db/sqlite/sqlite-3.6.21.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.21.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.21.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.21.ebuild?r1=1.6&r2=1.7

Index: sqlite-3.6.21.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.21.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- sqlite-3.6.21.ebuild	3 Jan 2010 09:38:38 -0000	1.6
+++ sqlite-3.6.21.ebuild	10 Jan 2010 13:40:22 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.21.ebuild,v 1.6 2010/01/03 09:38:38 betelgeuse Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.21.ebuild,v 1.7 2010/01/10 13:40:22 ranger Exp $
 
 EAPI="2"
 
@@ -21,7 +21,7 @@
 
 LICENSE="as-is"
 SLOT="3"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd"
 IUSE="debug doc +fts3 icu +readline soundex tcl +threadsafe test"
 
 RDEPEND="icu? ( dev-libs/icu )






^ permalink raw reply	[flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-db/sqlite: ChangeLog sqlite-3.6.21.ebuild
@ 2010-01-03  9:38 Petteri Raty (betelgeuse)
  0 siblings, 0 replies; 9+ messages in thread
From: Petteri Raty (betelgeuse) @ 2010-01-03  9:38 UTC (permalink / raw
  To: gentoo-commits

betelgeuse    10/01/03 09:38:39

  Modified:             ChangeLog sqlite-3.6.21.ebuild
  Log:
  Turn on fts3 by default because FF3 needs it.
  (Portage version: 2.2_rc59/cvs/Linux i686)

Revision  Changes    Path
1.311                dev-db/sqlite/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.311&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.311&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?r1=1.310&r2=1.311

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v
retrieving revision 1.310
retrieving revision 1.311
diff -u -r1.310 -r1.311
--- ChangeLog	2 Jan 2010 18:27:30 -0000	1.310
+++ ChangeLog	3 Jan 2010 09:38:38 -0000	1.311
@@ -1,6 +1,9 @@
 # ChangeLog for dev-db/sqlite
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.310 2010/01/02 18:27:30 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.311 2010/01/03 09:38:38 betelgeuse Exp $
+
+  03 Jan 2010; Petteri Räty <betelgeuse@gentoo.org> sqlite-3.6.21.ebuild:
+  Turn on fts3 by default because FF3 needs it.
 
   02 Jan 2010; Raúl Porcel <armin76@gentoo.org> sqlite-3.6.20-r1.ebuild:
   alpha/ia64/sparc stable



1.6                  dev-db/sqlite/sqlite-3.6.21.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.21.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.21.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.21.ebuild?r1=1.5&r2=1.6

Index: sqlite-3.6.21.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.21.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- sqlite-3.6.21.ebuild	20 Dec 2009 15:34:47 -0000	1.5
+++ sqlite-3.6.21.ebuild	3 Jan 2010 09:38:38 -0000	1.6
@@ -1,6 +1,6 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.21.ebuild,v 1.5 2009/12/20 15:34:47 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.21.ebuild,v 1.6 2010/01/03 09:38:38 betelgeuse Exp $
 
 EAPI="2"
 
@@ -22,7 +22,7 @@
 LICENSE="as-is"
 SLOT="3"
 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
-IUSE="debug doc fts3 icu +readline soundex tcl +threadsafe test"
+IUSE="debug doc +fts3 icu +readline soundex tcl +threadsafe test"
 
 RDEPEND="icu? ( dev-libs/icu )
 	readline? ( sys-libs/readline )






^ permalink raw reply	[flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-db/sqlite: ChangeLog sqlite-3.6.21.ebuild
@ 2009-12-20 15:34 Arfrever Frehtes Taifersar Arahesis (arfrever)
  0 siblings, 0 replies; 9+ messages in thread
From: Arfrever Frehtes Taifersar Arahesis (arfrever) @ 2009-12-20 15:34 UTC (permalink / raw
  To: gentoo-commits

arfrever    09/12/20 15:34:47

  Modified:             ChangeLog sqlite-3.6.21.ebuild
  Log:
  Fix building with USE="icu -tcl -test" (bug #297534).
  (Portage version: 15121-svn/cvs/Linux x86_64)

Revision  Changes    Path
1.304                dev-db/sqlite/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.304&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.304&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?r1=1.303&r2=1.304

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v
retrieving revision 1.303
retrieving revision 1.304
diff -u -r1.303 -r1.304
--- ChangeLog	20 Dec 2009 14:40:42 -0000	1.303
+++ ChangeLog	20 Dec 2009 15:34:47 -0000	1.304
@@ -1,6 +1,10 @@
 # ChangeLog for dev-db/sqlite
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.303 2009/12/20 14:40:42 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.304 2009/12/20 15:34:47 arfrever Exp $
+
+  20 Dec 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+  sqlite-3.6.21.ebuild:
+  Fix building with USE="icu -tcl -test" (bug #297534).
 
   20 Dec 2009; Brent Baude <ranger@gentoo.org> sqlite-3.6.20-r1.ebuild:
   Marking sqlite-3.6.20-r1 ppc64 for bug 297532



1.5                  dev-db/sqlite/sqlite-3.6.21.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.21.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.21.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.21.ebuild?r1=1.4&r2=1.5

Index: sqlite-3.6.21.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.21.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- sqlite-3.6.21.ebuild	19 Dec 2009 12:05:13 -0000	1.4
+++ sqlite-3.6.21.ebuild	20 Dec 2009 15:34:47 -0000	1.5
@@ -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/dev-db/sqlite/sqlite-3.6.21.ebuild,v 1.4 2009/12/19 12:05:13 betelgeuse Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.21.ebuild,v 1.5 2009/12/20 15:34:47 arfrever Exp $
 
 EAPI="2"
 
@@ -48,7 +48,13 @@
 
 	if use icu; then
 		append-cppflags -DSQLITE_ENABLE_ICU
-		sed -e "s/TLIBS = @LIBS@/& -licui18n -licuuc/" -i Makefile.in || die "sed failed"
+		if use tcl || use test; then
+			# Normal tarball.
+			sed -e "s/TLIBS = @LIBS@/& -licui18n -licuuc/" -i Makefile.in || die "sed failed"
+		else
+			# Amalgamation tarball.
+			sed -e "s/LIBS = @LIBS@/& -licui18n -licuuc/" -i Makefile.in || die "sed failed"
+		fi
 	fi
 
 	# Support soundex, bug #143794






^ permalink raw reply	[flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-db/sqlite: ChangeLog sqlite-3.6.21.ebuild
@ 2009-12-19 12:05 Petteri Raty (betelgeuse)
  0 siblings, 0 replies; 9+ messages in thread
From: Petteri Raty (betelgeuse) @ 2009-12-19 12:05 UTC (permalink / raw
  To: gentoo-commits

betelgeuse    09/12/19 12:05:13

  Modified:             ChangeLog sqlite-3.6.21.ebuild
  Log:
  Fix a couple QA issues with the last commit.
  (Portage version: 2.2_rc54/cvs/Linux i686)

Revision  Changes    Path
1.301                dev-db/sqlite/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.301&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.301&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?r1=1.300&r2=1.301

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v
retrieving revision 1.300
retrieving revision 1.301
diff -u -r1.300 -r1.301
--- ChangeLog	19 Dec 2009 11:57:01 -0000	1.300
+++ ChangeLog	19 Dec 2009 12:05:13 -0000	1.301
@@ -1,6 +1,9 @@
 # ChangeLog for dev-db/sqlite
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.300 2009/12/19 11:57:01 betelgeuse Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.301 2009/12/19 12:05:13 betelgeuse Exp $
+
+  19 Dec 2009; Petteri Räty <betelgeuse@gentoo.org> sqlite-3.6.21.ebuild:
+  Fix a couple QA issues with the last commit.
 
   19 Dec 2009; Petteri Räty <betelgeuse@gentoo.org> sqlite-3.6.21.ebuild:
   Make building work without tcl installed using the amalgamation tarball



1.4                  dev-db/sqlite/sqlite-3.6.21.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.21.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.21.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.21.ebuild?r1=1.3&r2=1.4

Index: sqlite-3.6.21.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.21.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- sqlite-3.6.21.ebuild	19 Dec 2009 11:57:01 -0000	1.3
+++ sqlite-3.6.21.ebuild	19 Dec 2009 12:05:13 -0000	1.4
@@ -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/dev-db/sqlite/sqlite-3.6.21.ebuild,v 1.3 2009/12/19 11:57:01 betelgeuse Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.21.ebuild,v 1.4 2009/12/19 12:05:13 betelgeuse Exp $
 
 EAPI="2"
 
@@ -12,11 +12,11 @@
 DOC_PV="$(replace_all_version_separators _ ${DOC_BASE})"
 
 SRC_URI="
-    tcl? ( http://www.sqlite.org/${P}.tar.gz )
-    !tcl? (
+	tcl? ( http://www.sqlite.org/${P}.tar.gz )
+	!tcl? (
 		test? ( http://www.sqlite.org/${P}.tar.gz )
 		!test? ( http://www.sqlite.org/${PN}-amalgamation-${PV}.tar.gz )
-    )
+	)
 	doc? ( http://www.sqlite.org/${PN}_docs_${DOC_PV}.zip )"
 
 LICENSE="as-is"
@@ -26,9 +26,9 @@
 
 RDEPEND="icu? ( dev-libs/icu )
 	readline? ( sys-libs/readline )
-	tcl? ( dev-lang/tcl )
-	test? ( dev-lang/tcl )"
+	tcl? ( dev-lang/tcl )"
 DEPEND="${RDEPEND}
+	test? ( dev-lang/tcl )
 	doc? ( app-arch/unzip )"
 
 src_prepare() {
@@ -72,7 +72,8 @@
 	econf \
 		$(use_enable readline) \
 		$(use_enable threadsafe) \
-		$(use tcl && echo --enable-tcl)
+		$(use tcl && echo --enable-tcl) \
+		$(use !tcl && use test && echo --disable-tcl)
 }
 
 src_compile() {






^ permalink raw reply	[flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-db/sqlite: ChangeLog sqlite-3.6.21.ebuild
@ 2009-12-12 20:47 Arfrever Frehtes Taifersar Arahesis (arfrever)
  0 siblings, 0 replies; 9+ messages in thread
From: Arfrever Frehtes Taifersar Arahesis (arfrever) @ 2009-12-12 20:47 UTC (permalink / raw
  To: gentoo-commits

arfrever    09/12/12 20:47:55

  Modified:             ChangeLog sqlite-3.6.21.ebuild
  Log:
  Fix building and dependencies (bug #296245).
  (Portage version: 15055-svn/cvs/Linux x86_64)

Revision  Changes    Path
1.298                dev-db/sqlite/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.298&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.298&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?r1=1.297&r2=1.298

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v
retrieving revision 1.297
retrieving revision 1.298
diff -u -r1.297 -r1.298
--- ChangeLog	8 Dec 2009 11:30:35 -0000	1.297
+++ ChangeLog	12 Dec 2009 20:47:55 -0000	1.298
@@ -1,6 +1,10 @@
 # ChangeLog for dev-db/sqlite
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.297 2009/12/08 11:30:35 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.298 2009/12/12 20:47:55 arfrever Exp $
+
+  12 Dec 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+  sqlite-3.6.21.ebuild:
+  Fix building and dependencies (bug #296245).
 
 *sqlite-3.6.21 (08 Dec 2009)
 



1.2                  dev-db/sqlite/sqlite-3.6.21.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.21.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.21.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.21.ebuild?r1=1.1&r2=1.2

Index: sqlite-3.6.21.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.21.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sqlite-3.6.21.ebuild	8 Dec 2009 11:30:35 -0000	1.1
+++ sqlite-3.6.21.ebuild	12 Dec 2009 20:47:55 -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/dev-db/sqlite/sqlite-3.6.21.ebuild,v 1.1 2009/12/08 11:30:35 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.21.ebuild,v 1.2 2009/12/12 20:47:55 arfrever Exp $
 
 EAPI="2"
 
@@ -11,41 +11,25 @@
 DOC_BASE="$(get_version_component_range 1-3)"
 DOC_PV="$(replace_all_version_separators _ ${DOC_BASE})"
 SRC_URI="http://www.sqlite.org/${P}.tar.gz
-	doc? ( http://www.sqlite.org/${PN}_docs_${DOC_PV}.zip )
-	!tcl? ( mirror://gentoo/sqlite3.h-${PV}.bz2 )"
+	doc? ( http://www.sqlite.org/${PN}_docs_${DOC_PV}.zip )"
 
 LICENSE="as-is"
 SLOT="3"
 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
 IUSE="debug doc fts3 icu +readline soundex tcl +threadsafe"
-RESTRICT="!tcl? ( test )"
 
 RDEPEND="icu? ( dev-libs/icu )
 	readline? ( sys-libs/readline )
 	tcl? ( dev-lang/tcl )"
 DEPEND="${RDEPEND}
+	dev-lang/tcl
 	doc? ( app-arch/unzip )"
 
-pkg_setup() {
-	if ! use tcl; then
-		ewarn "Installation of SQLite with \"tcl\" USE flag enabled provides more (TCL-unrelated) functionality."
-
-		if use icu; then
-			ewarn "Support for ICU is enabled only when \"tcl\" USE flag is enabled."
-		fi
-
-		ebeep 1
-	fi
-}
-
 src_prepare() {
 	if use icu; then
 		rm -f test/like.test
 	fi
 
-	# Needed to compile without tcl installed but fails to compile when it is installed, bug #293405
-	use fts3 && ! has_version dev-lang/tcl && epatch "${FILESDIR}/sqlite-3.6.20-fts3.patch"
-
 	epunt_cxx
 }
 
@@ -54,21 +38,22 @@
 	append-cppflags -DSQLITE_ENABLE_COLUMN_METADATA
 
 	# Support R-trees, bug #257646
-	# Avoid "./.libs/libsqlite3.so: undefined reference to `sqlite3RtreeInit'" during non-amalgamation building.
-	if use tcl; then
-		append-cppflags -DSQLITE_ENABLE_RTREE
-	fi
+	append-cppflags -DSQLITE_ENABLE_RTREE
 
-	if use icu && use tcl; then
+	if use icu; then
 		append-cppflags -DSQLITE_ENABLE_ICU
 		sed -e "s/TLIBS = @LIBS@/& -licui18n -licuuc/" -i Makefile.in || die "sed failed"
 	fi
 
 	# Support soundex, bug #143794
-	use soundex && append-cppflags -DSQLITE_SOUNDEX
+	if use soundex; then
+		append-cppflags -DSQLITE_SOUNDEX
+	fi
 
-	# http://bugs.gentoo.org/show_bug.cgi?id=207701
-	use fts3 && append-cppflags -DSQLITE_ENABLE_FTS3=1
+	# Support FTS3, bug #207701
+	if use fts3; then
+		append-cppflags -DSQLITE_ENABLE_FTS3 -DSQLITE_ENABLE_FTS3_PARENTHESIS
+	fi
 
 	econf \
 		$(use_enable debug) \
@@ -79,7 +64,6 @@
 }
 
 src_compile() {
-	use tcl || cp "${WORKDIR}/sqlite3.h-${PV}" sqlite3.h
 	emake TCLLIBDIR="/usr/$(get_libdir)/${P}" || die "emake failed"
 }
 
@@ -92,11 +76,6 @@
 		ewarn "The userpriv feature must be enabled to run tests."
 		eerror "Testsuite will not be run."
 	fi
-
-	if ! use tcl; then
-		ewarn "You must enable the tcl USE flag if you want to run the testsuite."
-		eerror "Testsuite will not be run."
-	fi
 }
 
 src_install() {






^ permalink raw reply	[flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-db/sqlite: ChangeLog sqlite-3.6.21.ebuild
@ 2009-12-08 11:30 Arfrever Frehtes Taifersar Arahesis (arfrever)
  0 siblings, 0 replies; 9+ messages in thread
From: Arfrever Frehtes Taifersar Arahesis (arfrever) @ 2009-12-08 11:30 UTC (permalink / raw
  To: gentoo-commits

arfrever    09/12/08 11:30:35

  Modified:             ChangeLog
  Added:                sqlite-3.6.21.ebuild
  Log:
  Version bump.
  (Portage version: 14964-svn/cvs/Linux x86_64)

Revision  Changes    Path
1.297                dev-db/sqlite/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.297&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.297&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?r1=1.296&r2=1.297

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v
retrieving revision 1.296
retrieving revision 1.297
diff -u -r1.296 -r1.297
--- ChangeLog	29 Nov 2009 14:08:02 -0000	1.296
+++ ChangeLog	8 Dec 2009 11:30:35 -0000	1.297
@@ -1,6 +1,12 @@
 # ChangeLog for dev-db/sqlite
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.296 2009/11/29 14:08:02 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.297 2009/12/08 11:30:35 arfrever Exp $
+
+*sqlite-3.6.21 (08 Dec 2009)
+
+  08 Dec 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+  +sqlite-3.6.21.ebuild:
+  Version bump.
 
   29 Nov 2009; Raúl Porcel <armin76@gentoo.org> sqlite-3.6.19.ebuild:
   alpha/ia64/s390/sh/sparc stable wrt #291913



1.1                  dev-db/sqlite/sqlite-3.6.21.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.21.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.21.ebuild?rev=1.1&content-type=text/plain

Index: sqlite-3.6.21.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.21.ebuild,v 1.1 2009/12/08 11:30:35 arfrever Exp $

EAPI="2"

inherit eutils flag-o-matic multilib versionator

DESCRIPTION="an SQL Database Engine in a C Library"
HOMEPAGE="http://www.sqlite.org/"
DOC_BASE="$(get_version_component_range 1-3)"
DOC_PV="$(replace_all_version_separators _ ${DOC_BASE})"
SRC_URI="http://www.sqlite.org/${P}.tar.gz
	doc? ( http://www.sqlite.org/${PN}_docs_${DOC_PV}.zip )
	!tcl? ( mirror://gentoo/sqlite3.h-${PV}.bz2 )"

LICENSE="as-is"
SLOT="3"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
IUSE="debug doc fts3 icu +readline soundex tcl +threadsafe"
RESTRICT="!tcl? ( test )"

RDEPEND="icu? ( dev-libs/icu )
	readline? ( sys-libs/readline )
	tcl? ( dev-lang/tcl )"
DEPEND="${RDEPEND}
	doc? ( app-arch/unzip )"

pkg_setup() {
	if ! use tcl; then
		ewarn "Installation of SQLite with \"tcl\" USE flag enabled provides more (TCL-unrelated) functionality."

		if use icu; then
			ewarn "Support for ICU is enabled only when \"tcl\" USE flag is enabled."
		fi

		ebeep 1
	fi
}

src_prepare() {
	if use icu; then
		rm -f test/like.test
	fi

	# Needed to compile without tcl installed but fails to compile when it is installed, bug #293405
	use fts3 && ! has_version dev-lang/tcl && epatch "${FILESDIR}/sqlite-3.6.20-fts3.patch"

	epunt_cxx
}

src_configure() {
	# Support column metadata, bug #266651
	append-cppflags -DSQLITE_ENABLE_COLUMN_METADATA

	# Support R-trees, bug #257646
	# Avoid "./.libs/libsqlite3.so: undefined reference to `sqlite3RtreeInit'" during non-amalgamation building.
	if use tcl; then
		append-cppflags -DSQLITE_ENABLE_RTREE
	fi

	if use icu && use tcl; then
		append-cppflags -DSQLITE_ENABLE_ICU
		sed -e "s/TLIBS = @LIBS@/& -licui18n -licuuc/" -i Makefile.in || die "sed failed"
	fi

	# Support soundex, bug #143794
	use soundex && append-cppflags -DSQLITE_SOUNDEX

	# http://bugs.gentoo.org/show_bug.cgi?id=207701
	use fts3 && append-cppflags -DSQLITE_ENABLE_FTS3=1

	econf \
		$(use_enable debug) \
		$(use_enable readline) \
		$(use_enable threadsafe) \
		$(use_enable threadsafe cross-thread-connections) \
		$(use_enable tcl)
}

src_compile() {
	use tcl || cp "${WORKDIR}/sqlite3.h-${PV}" sqlite3.h
	emake TCLLIBDIR="/usr/$(get_libdir)/${P}" || die "emake failed"
}

src_test() {
	if [[ "${EUID}" -ne "0" ]]; then
		local test="test"
		use debug && test="fulltest"
		emake ${test} || die "Some test(s) failed"
	else
		ewarn "The userpriv feature must be enabled to run tests."
		eerror "Testsuite will not be run."
	fi

	if ! use tcl; then
		ewarn "You must enable the tcl USE flag if you want to run the testsuite."
		eerror "Testsuite will not be run."
	fi
}

src_install() {
	emake \
		DESTDIR="${D}" \
		TCLLIBDIR="/usr/$(get_libdir)/${P}" \
		install \
		|| die "emake install failed"

	doman sqlite3.1 || die "doman sqlite3.1 failed"

	if use doc; then
		# Naming scheme changes randomly between - and _ in releases
		# http://www.sqlite.org/cvstrac/tktview?tn=3523
		dohtml -r "${WORKDIR}"/${PN}-${DOC_PV}-docs/* || die "dohtml failed"
	fi
}






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

end of thread, other threads:[~2010-02-11 14:14 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-12-19 11:57 [gentoo-commits] gentoo-x86 commit in dev-db/sqlite: ChangeLog sqlite-3.6.21.ebuild Petteri Raty (betelgeuse)
  -- strict thread matches above, loose matches on Subject: below --
2010-02-11 14:14 Christian Faulhammer (fauli)
2010-01-22 20:34 Brent Baude (ranger)
2010-01-10 13:40 Brent Baude (ranger)
2010-01-03  9:38 Petteri Raty (betelgeuse)
2009-12-20 15:34 Arfrever Frehtes Taifersar Arahesis (arfrever)
2009-12-19 12:05 Petteri Raty (betelgeuse)
2009-12-12 20:47 Arfrever Frehtes Taifersar Arahesis (arfrever)
2009-12-08 11:30 Arfrever Frehtes Taifersar Arahesis (arfrever)

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