diff options
author | Mike Frysinger <vapier@gentoo.org> | 2008-01-14 11:24:00 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2008-01-14 11:24:00 +0000 |
commit | fdfe9621620598572b3949b799a9992cdbf0efc4 (patch) | |
tree | bc8c5e8075a43b2704a22696c8ce979410020ca8 /dev-db | |
parent | Added dev-util/pkgconfig do DEPEND. Bug #205748 (diff) | |
download | gentoo-2-fdfe9621620598572b3949b799a9992cdbf0efc4.tar.gz gentoo-2-fdfe9621620598572b3949b799a9992cdbf0efc4.tar.bz2 gentoo-2-fdfe9621620598572b3949b799a9992cdbf0efc4.zip |
move messages out of src_unpack and into pkg_setup and drop dead $myconf usage from econf
(Portage version: 2.1.4)
Diffstat (limited to 'dev-db')
-rw-r--r-- | dev-db/sqlite/sqlite-3.5.4.ebuild | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/dev-db/sqlite/sqlite-3.5.4.ebuild b/dev-db/sqlite/sqlite-3.5.4.ebuild index 8fff93c1e5a1..22a398070cef 100644 --- a/dev-db/sqlite/sqlite-3.5.4.ebuild +++ b/dev-db/sqlite/sqlite-3.5.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.5.4.ebuild,v 1.3 2008/01/13 02:10:07 betelgeuse Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.5.4.ebuild,v 1.4 2008/01/14 11:24:00 vapier Exp $ EAPI="1" @@ -24,7 +24,7 @@ RDEPEND="${DEPEND}" SOURCE="/usr/bin/lemon" ALTERNATIVES="${SOURCE}-3 ${SOURCE}-0" -src_unpack() { +pkg_setup() { # test if has test ${FEATURES}; then if ! has userpriv ${FEATURES}; then @@ -32,12 +32,13 @@ src_unpack() { 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 test" - ewarn "suite." + ewarn "You must enable the tcl use flag if you want to run the testsuite." eerror "Testsuite will not be run." fi fi +} +src_unpack() { unpack ${A} cd "${S}" @@ -51,12 +52,12 @@ src_compile() { # not available via configure and requested in bug #143794 use soundex && append-flags -DSQLITE_SOUNDEX=1 - econf ${myconf} \ + econf \ $(use_enable debug) \ $(use_enable threadsafe) \ $(use_enable threadsafe cross-thread-connections) \ - $(use_enable tcl) - + $(use_enable tcl) \ + || die emake all || die "emake all failed" } @@ -72,7 +73,7 @@ src_test() { fi } -src_install () { +src_install() { emake \ DESTDIR="${D}" \ TCLLIBDIR="/usr/$(get_libdir)" \ |