blob: ef19acab1809269bf6535707ce19d8b0bc2bd23e (
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
|
# Copyright 1999-2004 Gentoo Foundation
# 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.8 2004/06/25 01:25:09 agriffis Exp $
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"
IUSE=""
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
}
|