diff options
author | 2010-05-11 11:32:52 +0000 | |
---|---|---|
committer | 2010-05-11 11:32:52 +0000 | |
commit | 8fa1cd55bab1ee2253130528278a0149e0a391ec (patch) | |
tree | e04a1434ffd1184cd33c904012fa0a8df0e3acea /dev-php/adodb/adodb-5.11.ebuild | |
parent | Removing stray dobin call that triggered #318001 (diff) | |
download | historical-8fa1cd55bab1ee2253130528278a0149e0a391ec.tar.gz historical-8fa1cd55bab1ee2253130528278a0149e0a391ec.tar.bz2 historical-8fa1cd55bab1ee2253130528278a0149e0a391ec.zip |
Version bump.
Package-Manager: portage-2.2_rc67/cvs/Linux x86_64
Diffstat (limited to 'dev-php/adodb/adodb-5.11.ebuild')
-rw-r--r-- | dev-php/adodb/adodb-5.11.ebuild | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/dev-php/adodb/adodb-5.11.ebuild b/dev-php/adodb/adodb-5.11.ebuild new file mode 100644 index 000000000000..9de1c2bdeac4 --- /dev/null +++ b/dev-php/adodb/adodb-5.11.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-php/adodb/adodb-5.11.ebuild,v 1.1 2010/05/11 11:32:52 pva Exp $ + +EAPI="2" + +inherit php-lib-r1 versionator + +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +DESCRIPTION="Active Data Objects Data Base library for PHP." +HOMEPAGE="http://adodb.sourceforge.net/" + +MY_PV=$(delete_all_version_separators "${PV}" ) +SRC_URI="mirror://sourceforge/adodb/${PN}${MY_PV}.tgz" +LICENSE="LGPL-2.1" +SLOT="0" +IUSE="" + +DEPEND="" +RDEPEND="" + +S=${WORKDIR}/${PN}$(get_major_version) + +need_php5 + +pkg_setup() { + ewarn "ADODB requires some form of SQL or ODBC support in your PHP." +} + +src_install() { + # install php files + php-lib-r1_src_install . $(find . -name '*.php' -print) + + # install xsl files + php-lib-r1_src_install . xsl/*.xsl + + # install documentation + dodoc-php *.txt xmlschema.dtd session/adodb-sess.txt pear/readme.Auth.txt + dohtml-php docs/*.htm +} |