blob: 20f2108c9cac0a4247d224333713f6b50f6c90ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-php/sqlite-php/sqlite-php-0.0.5.ebuild,v 1.6 2004/01/05 21:28:00 aliz Exp $
S=${WORKDIR}/${P}
DESCRIPTION="PHP bindings for SQLite"
SRC_URI="mirror://sourceforge/sqlite-php/${P}.tgz"
HOMEPAGE="http://sourceforge.net/projects/sqlite-php/"
DEPEND="virtual/glibc
>=dev-php/php-4.2
>=dev-db/sqlite-2.7
!dev-php/PECL-sqlite"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86"
PHP_EXT_NAME="sqlite"
PHP_ZEND_EXT=
inherit php-ext-source
src_compile() {
myconf="${myconf} --with-sqlite=shared"
php-ext-source_src_compile
}
src_install () {
php-ext-source_src_install
dodoc README CREDITS CHANGES
}
|