summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKonstantin V. Arkhipov <voxus@gentoo.org>2005-09-23 22:10:46 +0000
committerKonstantin V. Arkhipov <voxus@gentoo.org>2005-09-23 22:10:46 +0000
commit3910639a813b0617ef30081737bb18e8a14bc51a (patch)
treec2ff2b1707e45e351229ee0e0d93c3a3b13824d5 /dev-php/onphp
parentVersion bump. Fixes bugs #98982 and #106551. Support for the cairo use flag w... (diff)
downloadgentoo-2-3910639a813b0617ef30081737bb18e8a14bc51a.tar.gz
gentoo-2-3910639a813b0617ef30081737bb18e8a14bc51a.tar.bz2
gentoo-2-3910639a813b0617ef30081737bb18e8a14bc51a.zip
* bump
(Portage version: 2.0.52-r1)
Diffstat (limited to 'dev-php/onphp')
-rw-r--r--dev-php/onphp/ChangeLog7
-rw-r--r--dev-php/onphp/Manifest2
-rw-r--r--dev-php/onphp/files/digest-onphp-0.2.21
-rw-r--r--dev-php/onphp/onphp-0.2.2.ebuild27
4 files changed, 36 insertions, 1 deletions
diff --git a/dev-php/onphp/ChangeLog b/dev-php/onphp/ChangeLog
index 027d266a060b..c8167855b408 100644
--- a/dev-php/onphp/ChangeLog
+++ b/dev-php/onphp/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for dev-php/onphp
# Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-php/onphp/ChangeLog,v 1.3 2005/09/10 22:52:18 voxus Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-php/onphp/ChangeLog,v 1.4 2005/09/23 22:10:46 voxus Exp $
+
+*onphp-0.2.2 (23 Sep 2005)
+
+ 23 Sep 2005; Konstantin Arkhipov <voxus@gentoo.org> +onphp-0.2.2.ebuild:
+ Version bump.
*onphp-0.2.1 (11 Sep 2005)
diff --git a/dev-php/onphp/Manifest b/dev-php/onphp/Manifest
index 50eb2cf7ffa8..3e61f6c10a1a 100644
--- a/dev-php/onphp/Manifest
+++ b/dev-php/onphp/Manifest
@@ -1,4 +1,6 @@
MD5 9b6724fb860eb880aa69932b4b246149 onphp-0.2.1.ebuild 716
+MD5 9b6724fb860eb880aa69932b4b246149 onphp-0.2.2.ebuild 716
MD5 c196110e1f7ebe3034aeb65d2e2e977b ChangeLog 669
MD5 cb28be74814f0f6cbf78047995f51226 metadata.xml 233
MD5 f444f271c657a5df3a129905a85d5d1a files/digest-onphp-0.2.1 63
+MD5 6e78b5b899b0f3cfd78c671278542f63 files/digest-onphp-0.2.2 63
diff --git a/dev-php/onphp/files/digest-onphp-0.2.2 b/dev-php/onphp/files/digest-onphp-0.2.2
new file mode 100644
index 000000000000..d1ff9cae7508
--- /dev/null
+++ b/dev-php/onphp/files/digest-onphp-0.2.2
@@ -0,0 +1 @@
+MD5 76ccc91e0f945ad937b528c56e1efcea onphp-0.2.2.tar.bz2 54847
diff --git a/dev-php/onphp/onphp-0.2.2.ebuild b/dev-php/onphp/onphp-0.2.2.ebuild
new file mode 100644
index 000000000000..6f8604aababc
--- /dev/null
+++ b/dev-php/onphp/onphp-0.2.2.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2005 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-php/onphp/onphp-0.2.2.ebuild,v 1.1 2005/09/23 22:10:46 voxus Exp $
+
+DESCRIPTION="onPHP is the GPL'ed multi-purpose object-oriented PHP framework."
+HOMEPAGE="http://onphp.shadanakar.org/"
+SRC_URI="http://onphp.shadanakar.org/download/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc"
+
+RDEPEND=">=virtual/php-5.0.0"
+
+TARGETDIR="${D}/usr/share/php/${PN}"
+
+src_install() {
+ use doc && {
+ find doc -maxdepth 1 -type f -exec dodoc {} \;
+ }
+
+ mkdir -p ${TARGETDIR}
+
+ cp -pPR core main ${TARGETDIR}/
+ cp global.inc.php.tpl ${TARGETDIR}/global.inc.php
+}