# Copyright 2003 Roy Marples # Distributed under the terms of the GNU General Public License v2 inherit php-lib DESCRIPTION="Active Data Objects Data Base library for PHP" HOMEPAGE="http://php.weblogs.com/ADODB" DOT_P=${P/./} MY_P=${DOT_P/-/} SRC_URI="http://phplens.com/lens/dl/${MY_P}.tgz" LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="x86 ~ppc ~sparc ~alpha" USE="" DEPEND="" RDEPEND="virtual/php" S="${WORKDIR}/${PN}" pkg_setup() { GREPSQL=`grep sql /var/db/pkg/dev-php/mod_php*/USE` if [ "${GREPSQL}" != "" ] ; then return 0 else eerror "Missing SQL support in mod_php !" die "aborting..." fi } src_install() { # install php files einfo "Building list of files to install" php-lib_src_install . `find . -name '*.php' -type f -print` # install documentation dodoc *.txt dohtml *.htm }