# $Id: sqlite-3.6.18-r1.smage2 3179 2009-10-14 10:38:53Z niro $ PNAME="sqlite" PVER="3.7.0.1" PBUILD="r1" PCATEGORIE="dev-db" STATE="unstable" DESCRIPTION="SQLite is a small C library that implements a self-contained, embeddable, zero-configuration SQL database engine." HOMEPAGE="http://www.sqlite.org/" DEPEND=">= sys-libs/readline-6.1" SRCFILE="${PNAME}-${PVER}.tar.gz" SRCDIR="${BUILDDIR}/${PNAME}-${PVER}" sminclude mbuild SRC_URI=( http://www.sqlite.org/${SRCFILE} mirror://${PNAME}/${SRCFILE} ) UP2DATE="updatecmd http://www.sqlite.org | grep -A2 Current | sed -n 's/.*Version \(.*\) of.*/\1/;$ p'" src_compile() { cd ${SRCDIR} mconfigure \ --enable-load-extension \ --enable-readline \ --enable-cross-thread-connections \ --enable-threadsafe \ --disable-tcl \ --disable-debug \ --disable-amalgamation \ || die mmake all || die }