diff options
author | 2010-04-26 20:45:46 +0000 | |
---|---|---|
committer | 2010-04-26 20:45:46 +0000 | |
commit | ea75115de29402cbeda756fc5ee04789a6536b2b (patch) | |
tree | bc39a3e63721e878a7396fd8e45e3c1efa78b46b /dev-php5 | |
parent | amd64/x86 stable, bug #309717 (diff) | |
download | gentoo-2-ea75115de29402cbeda756fc5ee04789a6536b2b.tar.gz gentoo-2-ea75115de29402cbeda756fc5ee04789a6536b2b.tar.bz2 gentoo-2-ea75115de29402cbeda756fc5ee04789a6536b2b.zip |
Initial commit, bug 306523; Thanks to Razvan Stanga for ebuild
(Portage version: 2.1.7.17/cvs/Linux x86_64)
Diffstat (limited to 'dev-php5')
-rw-r--r-- | dev-php5/pecl-uploadprogress/ChangeLog | 10 | ||||
-rw-r--r-- | dev-php5/pecl-uploadprogress/metadata.xml | 9 | ||||
-rw-r--r-- | dev-php5/pecl-uploadprogress/pecl-uploadprogress-1.0.1.ebuild | 17 |
3 files changed, 36 insertions, 0 deletions
diff --git a/dev-php5/pecl-uploadprogress/ChangeLog b/dev-php5/pecl-uploadprogress/ChangeLog new file mode 100644 index 000000000000..32ccdb82c708 --- /dev/null +++ b/dev-php5/pecl-uploadprogress/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for dev-php5/pecl-uploadprogress +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-php5/pecl-uploadprogress/ChangeLog,v 1.1 2010/04/26 20:45:46 beandog Exp $ + +*pecl-uploadprogress-1.0.1 (26 Apr 2010) + + 26 Apr 2010; Steve Dibb <beandog@gentoo.org> + +pecl-uploadprogress-1.0.1.ebuild, +metadata.xml: + Initial commit, bug 306523; Thanks to Razvan Stanga for ebuild + diff --git a/dev-php5/pecl-uploadprogress/metadata.xml b/dev-php5/pecl-uploadprogress/metadata.xml new file mode 100644 index 000000000000..6299f7039419 --- /dev/null +++ b/dev-php5/pecl-uploadprogress/metadata.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>php</herd> +<longdescription lang="en">An extension to track progress of a file upload. +See http://cvs.php.net/viewvc.cgi/pecl/uploadprogress/examples/ for a little example. It is only known to work on Apache with mod_php, other SAPI implementations unfortunately still have issues. +</longdescription> +</pkgmetadata> + diff --git a/dev-php5/pecl-uploadprogress/pecl-uploadprogress-1.0.1.ebuild b/dev-php5/pecl-uploadprogress/pecl-uploadprogress-1.0.1.ebuild new file mode 100644 index 000000000000..a3e76e803554 --- /dev/null +++ b/dev-php5/pecl-uploadprogress/pecl-uploadprogress-1.0.1.ebuild @@ -0,0 +1,17 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-php5/pecl-uploadprogress/pecl-uploadprogress-1.0.1.ebuild,v 1.1 2010/04/26 20:45:46 beandog Exp $ + +inherit php-ext-pecl-r1 + +DESCRIPTION="An extension to track progress of a file upload." +LICENSE="PHP-3.01" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +need_php_by_category + +pkg_postinst() { + elog "This extension is only known to work on Apache with mod_php." +} |