Gentoo Archives: gentoo-commits

From: "Fabian Groffen (grobian)" <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-db/sqlite: sqlite-3.6.22.ebuild ChangeLog
Date: Fri, 08 Jan 2010 19:48:02
Message-Id: E1NTKoR-0001EG-GE@stork.gentoo.org
1 grobian 10/01/08 19:47:59
2
3 Modified: sqlite-3.6.22.ebuild ChangeLog
4 Log:
5 Transfer Prefix keywords, make ebuild Prefix aware, fix compilation on static-only platforms (bug #299294)
6 (Portage version: 2.2.00.15178-prefix/cvs/Darwin powerpc)
7
8 Revision Changes Path
9 1.2 dev-db/sqlite/sqlite-3.6.22.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.22.ebuild?rev=1.2&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.22.ebuild?rev=1.2&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.22.ebuild?r1=1.1&r2=1.2
14
15 Index: sqlite-3.6.22.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.22.ebuild,v
18 retrieving revision 1.1
19 retrieving revision 1.2
20 diff -u -r1.1 -r1.2
21 --- sqlite-3.6.22.ebuild 7 Jan 2010 18:15:01 -0000 1.1
22 +++ sqlite-3.6.22.ebuild 8 Jan 2010 19:47:59 -0000 1.2
23 @@ -1,10 +1,10 @@
24 # Copyright 1999-2010 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.22.ebuild,v 1.1 2010/01/07 18:15:01 arfrever Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.22.ebuild,v 1.2 2010/01/08 19:47:59 grobian Exp $
28
29 EAPI="2"
30
31 -inherit eutils flag-o-matic multilib versionator
32 +inherit eutils flag-o-matic multilib versionator toolchain-funcs
33
34 DESCRIPTION="an SQL Database Engine in a C Library"
35 HOMEPAGE="http://www.sqlite.org/"
36 @@ -21,7 +21,7 @@
37
38 LICENSE="as-is"
39 SLOT="3"
40 -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd"
41 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~ppc-aix ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
42 IUSE="debug doc +fts3 icu +readline soundex tcl +threadsafe test"
43
44 RDEPEND="icu? ( dev-libs/icu )
45 @@ -77,13 +77,15 @@
46 # amalgamation doesn't have tcl
47 econf \
48 $(use_enable readline) \
49 + --with-readline-inc=-I"${EPREFIX}"/usr/include/readline \
50 $(use_enable threadsafe) \
51 $(use tcl && echo --enable-tcl) \
52 - $(use !tcl && use test && echo --disable-tcl)
53 + $(use !tcl && use test && echo --disable-tcl) \
54 + $(tc-is-static-only && echo --enable-dynamic-extensions=no)
55 }
56
57 src_compile() {
58 - emake TCLLIBDIR="/usr/$(get_libdir)/${P}" || die "emake failed"
59 + emake TCLLIBDIR="${EPREFIX}/usr/$(get_libdir)/${P}" || die "emake failed"
60 }
61
62 src_test() {
63 @@ -100,7 +102,7 @@
64 src_install() {
65 emake \
66 DESTDIR="${D}" \
67 - TCLLIBDIR="/usr/$(get_libdir)/${P}" \
68 + TCLLIBDIR="${EPREFIX}/usr/$(get_libdir)/${P}" \
69 install \
70 || die "emake install failed"
71
72
73
74
75 1.313 dev-db/sqlite/ChangeLog
76
77 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.313&view=markup
78 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.313&content-type=text/plain
79 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?r1=1.312&r2=1.313
80
81 Index: ChangeLog
82 ===================================================================
83 RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v
84 retrieving revision 1.312
85 retrieving revision 1.313
86 diff -u -r1.312 -r1.313
87 --- ChangeLog 7 Jan 2010 18:15:01 -0000 1.312
88 +++ ChangeLog 8 Jan 2010 19:47:59 -0000 1.313
89 @@ -1,6 +1,10 @@
90 # ChangeLog for dev-db/sqlite
91 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
92 -# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.312 2010/01/07 18:15:01 arfrever Exp $
93 +# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.313 2010/01/08 19:47:59 grobian Exp $
94 +
95 + 08 Jan 2010; Fabian Groffen <grobian@g.o> sqlite-3.6.22.ebuild:
96 + Transfer Prefix keywords, make ebuild Prefix aware, fix compilation on
97 + static-only platforms (bug #299294)
98
99 *sqlite-3.6.22 (07 Jan 2010)