diff options
author | Konstantin V. Arkhipov <voxus@gentoo.org> | 2005-09-03 21:38:35 +0000 |
---|---|---|
committer | Konstantin V. Arkhipov <voxus@gentoo.org> | 2005-09-03 21:38:35 +0000 |
commit | 495a4acdecad6339ddaa7b39e1cf00d2abf2f8a8 (patch) | |
tree | ebdaed91a29edb3cc0d6e7dd6fab237675f571d3 /dev-php/onphp | |
parent | Version bump and removed the installation of the LGPL license file from all v... (diff) | |
download | historical-495a4acdecad6339ddaa7b39e1cf00d2abf2f8a8.tar.gz historical-495a4acdecad6339ddaa7b39e1cf00d2abf2f8a8.tar.bz2 historical-495a4acdecad6339ddaa7b39e1cf00d2abf2f8a8.zip |
+ onphp
Diffstat (limited to 'dev-php/onphp')
-rw-r--r-- | dev-php/onphp/ChangeLog | 8 | ||||
-rw-r--r-- | dev-php/onphp/Manifest | 4 | ||||
-rw-r--r-- | dev-php/onphp/files/digest-onphp-0.2.0 | 1 | ||||
-rw-r--r-- | dev-php/onphp/metadata.xml | 8 | ||||
-rw-r--r-- | dev-php/onphp/onphp-0.2.0.ebuild | 27 |
5 files changed, 48 insertions, 0 deletions
diff --git a/dev-php/onphp/ChangeLog b/dev-php/onphp/ChangeLog new file mode 100644 index 000000000000..328c2ab19ee0 --- /dev/null +++ b/dev-php/onphp/ChangeLog @@ -0,0 +1,8 @@ +# 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.1 2005/09/03 21:38:35 voxus Exp $ + +*onphp-0.2.0 (03 Sep 2005) + + 03 Sep 2005; Konstantin Arkhipov <voxus@gentoo.org> +onphp-0.2.0.ebuild: + Initial import. diff --git a/dev-php/onphp/Manifest b/dev-php/onphp/Manifest new file mode 100644 index 000000000000..2346aa406e33 --- /dev/null +++ b/dev-php/onphp/Manifest @@ -0,0 +1,4 @@ +MD5 4757a3f381980a52c074b194c06ca7f0 onphp-0.2.0.ebuild 631 +MD5 f78efcd9c7a33a054dd473d3a1b0f01f ChangeLog 233 +MD5 cb28be74814f0f6cbf78047995f51226 metadata.xml 233 +MD5 508b034d7c6a6e761123b6b683ed2f3f files/digest-onphp-0.2.0 63 diff --git a/dev-php/onphp/files/digest-onphp-0.2.0 b/dev-php/onphp/files/digest-onphp-0.2.0 new file mode 100644 index 000000000000..4e1386c797ed --- /dev/null +++ b/dev-php/onphp/files/digest-onphp-0.2.0 @@ -0,0 +1 @@ +MD5 66e6ff868a34f3396596a6f57fe4d605 onphp-0.2.0.tar.bz2 52014 diff --git a/dev-php/onphp/metadata.xml b/dev-php/onphp/metadata.xml new file mode 100644 index 000000000000..1f8cb34afaa4 --- /dev/null +++ b/dev-php/onphp/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<maintainer> + <email>voxus@gentoo.org</email> + <name>Konstantin Arkhipov</name> +</maintainer> +</pkgmetadata> diff --git a/dev-php/onphp/onphp-0.2.0.ebuild b/dev-php/onphp/onphp-0.2.0.ebuild new file mode 100644 index 000000000000..50f4ad841c76 --- /dev/null +++ b/dev-php/onphp/onphp-0.2.0.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.0.ebuild,v 1.1 2005/09/03 21:38:35 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=">=dev-php/php-5.0.0" + +TARGETDIR="${D}/usr/lib/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 +} |