Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 257646
Collapse All | Expand All

(-)sqlite_old/sqlite-3.6.10.ebuild (-3 / +8 lines)
Lines 15-26 Link Here
15
15
16
LICENSE="as-is"
16
LICENSE="as-is"
17
SLOT="3"
17
SLOT="3"
18
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
18
KEYWORDS="alpha ~amd64 arm hppa ia64 ~mips ppc ~ppc64 s390 sh sparc ~sparc-fbsd x86 ~x86-fbsd"
19
IUSE="debug doc soundex tcl +threadsafe"
19
IUSE="debug doc +readline rtree soundex tcl +threadsafe"
20
RESTRICT="!tcl? ( test )"
20
RESTRICT="!tcl? ( test )"
21
21
22
RDEPEND="tcl? ( dev-lang/tcl )"
22
RDEPEND="tcl? ( dev-lang/tcl )"
23
DEPEND="${RDEPEND}
23
DEPEND="${RDEPEND}
24
	readline? ( sys-libs/readline )
24
	doc? ( app-arch/unzip )"
25
	doc? ( app-arch/unzip )"
25
26
26
pkg_setup() {
27
pkg_setup() {
Lines 52-62 Link Here
52
	# not available via configure and requested in bug #143794
53
	# not available via configure and requested in bug #143794
53
	use soundex && append-flags -DSQLITE_SOUNDEX=1
54
	use soundex && append-flags -DSQLITE_SOUNDEX=1
54
55
56
	# not available via configure
57
	use rtree && append-flags -DSQLITE_ENABLE_RTREE=1
58
55
	econf \
59
	econf \
56
		$(use_enable debug) \
60
		$(use_enable debug) \
57
		$(use_enable threadsafe) \
61
		$(use_enable threadsafe) \
58
		$(use_enable threadsafe cross-thread-connections) \
62
		$(use_enable threadsafe cross-thread-connections) \
59
		$(use_enable tcl)
63
		$(use_enable tcl) \
64
		$(use_enable readline)
60
	emake all || die "emake all failed"
65
	emake all || die "emake all failed"
61
}
66
}
62
67

Return to bug 257646