# ChangeLog for dev-php5/onphp-module
# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-php5/onphp-module/ChangeLog,v 1.10 2006/12/04 17:09:45 voxus Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-php5/onphp-module/ChangeLog,v 1.11 2006/12/17 18:54:27 voxus Exp $
+
+*onphp-module-0.8.3 (17 Dec 2006)
+
+ 17 Dec 2006; Konstantin V. Arkhipov <voxus@gentoo.org>
+ +onphp-module-0.8.3.ebuild:
+ Version bump.
04 Dec 2006; Konstantin V. Arkhipov <voxus@gentoo.org>
onphp-module-0.8.2.ebuild:
--- /dev/null
+MD5 06c9798e2d31de75e8cf77fdf7b39340 onphp-0.8.3.tar.bz2 110389
+RMD160 a5c25b301f4eee647037bacd59e9415cb11e0aea onphp-0.8.3.tar.bz2 110389
+SHA256 3381104b16959c9066ebd8e1f457fffe2633ec6fad4e4316cbb52e42043aab2e onphp-0.8.3.tar.bz2 110389
--- /dev/null
+# Copyright 1999-2006 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-php5/onphp-module/onphp-module-0.8.3.ebuild,v 1.1 2006/12/17 18:54:27 voxus Exp $
+
+PHP_EXT_NAME="onphp"
+PHP_EXT_INI="yes"
+PHP_EXT_ZENDEXT="no"
+
+inherit php-ext-pecl-r1
+
+SRC_URI="http://onphp.org/download/onphp-${PV}.tar.bz2"
+
+KEYWORDS="~amd64 ~x86"
+DESCRIPTION="onPHP's module."
+HOMEPAGE="http://onphp.org/"
+LICENSE="GPL-2"
+SLOT="0"
+IUSE=""
+
+# since need_php51 is missing
+DEPEND=">=dev-lang/php-5.1.4"
+RDEPEND="${DEPEND}
+ ~dev-php5/onphp-${PV}"
+
+PHP_VERSION="5"
+PHP_SHARED_CAT="php5"
+
+S="${WORKDIR}/onphp-${PV}/ext"
+
+pkg_setup() {
+ has_php
+
+ require_php_with_use spl reflection
+}
# ChangeLog for dev-php5/onphp
# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-php5/onphp/ChangeLog,v 1.36 2006/12/04 17:06:22 voxus Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-php5/onphp/ChangeLog,v 1.37 2006/12/17 18:53:42 voxus Exp $
+
+*onphp-0.8.3 (17 Dec 2006)
+
+ 17 Dec 2006; Konstantin V. Arkhipov <voxus@gentoo.org>
+ +onphp-0.8.3.ebuild:
+ Version bump.
04 Dec 2006; Konstantin V. Arkhipov <voxus@gentoo.org> onphp-0.8.2.ebuild:
Goes stable on amd64 and x86.
--- /dev/null
+MD5 06c9798e2d31de75e8cf77fdf7b39340 onphp-0.8.3.tar.bz2 110389
+RMD160 a5c25b301f4eee647037bacd59e9415cb11e0aea onphp-0.8.3.tar.bz2 110389
+SHA256 3381104b16959c9066ebd8e1f457fffe2633ec6fad4e4316cbb52e42043aab2e onphp-0.8.3.tar.bz2 110389
+MD5 7d112331bbe91e866703f3c362c09b91 onphp-api-0.8.3.tar.bz2 6164076
+RMD160 6cdb821c28119c65ab6cee3c53838862e0e3e1dd onphp-api-0.8.3.tar.bz2 6164076
+SHA256 4f145b0241997d4876560be42d93d6bf391ff17828125da15586862a08b6968a onphp-api-0.8.3.tar.bz2 6164076
--- /dev/null
+# Copyright 1999-2006 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-php5/onphp/onphp-0.8.3.ebuild,v 1.1 2006/12/17 18:53:42 voxus Exp $
+
+inherit php-lib-r1
+
+KEYWORDS="~x86 ~amd64"
+DESCRIPTION="onPHP is the GPL'ed multi-purpose object-oriented PHP framework."
+HOMEPAGE="http://onphp.org/"
+SRC_URI="http://onphp.org/download/${P}.tar.bz2
+ doc? ( http://onphp.org/download/${PN}-api-${PV}.tar.bz2 )"
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="doc"
+
+# since need_php51 is missing
+DEPEND=">=dev-lang/php-5.1"
+RDEPEND=">=dev-lang/php-5.1"
+PHP_VERSION="5"
+PHP_SHARED_CAT="php5"
+
+src_install() {
+ has_php
+
+ if use doc ; then
+ for doc in `find doc -maxdepth 1 -type f -print`; do
+ dodoc ${doc}
+ done
+
+ dohtml -r "${WORKDIR}/${PN}-api-${PV}/"*
+ fi
+
+ php-lib-r1_src_install ./ global.inc.php.tpl
+ php-lib-r1_src_install ./ `find core main meta -type f -print`
+}