diff options
author | Matti Bickel <mabi@gentoo.org> | 2010-06-11 22:34:17 +0000 |
---|---|---|
committer | Matti Bickel <mabi@gentoo.org> | 2010-06-11 22:34:17 +0000 |
commit | 7c5b556f687c462a3e2052242a58d10880f54358 (patch) | |
tree | 9151edbea751c7f52e34993a73386b60fb0d3c50 /dev-php | |
parent | bump, remove old (diff) | |
download | historical-7c5b556f687c462a3e2052242a58d10880f54358.tar.gz historical-7c5b556f687c462a3e2052242a58d10880f54358.tar.bz2 historical-7c5b556f687c462a3e2052242a58d10880f54358.zip |
eapi2
Package-Manager: portage-2.1.8.3/cvs/Linux x86_64
Diffstat (limited to 'dev-php')
-rw-r--r-- | dev-php/PEAR-Console_Getopt/ChangeLog | 7 | ||||
-rw-r--r-- | dev-php/PEAR-Console_Getopt/PEAR-Console_Getopt-1.2.3-r1.ebuild | 27 |
2 files changed, 33 insertions, 1 deletions
diff --git a/dev-php/PEAR-Console_Getopt/ChangeLog b/dev-php/PEAR-Console_Getopt/ChangeLog index fb5fadea355f..b12ad9372feb 100644 --- a/dev-php/PEAR-Console_Getopt/ChangeLog +++ b/dev-php/PEAR-Console_Getopt/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-php/PEAR-Console_Getopt # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Console_Getopt/ChangeLog,v 1.23 2010/05/09 16:24:19 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Console_Getopt/ChangeLog,v 1.24 2010/06/11 22:34:17 mabi Exp $ + +*PEAR-Console_Getopt-1.2.3-r1 (11 Jun 2010) + + 11 Jun 2010; <mabi@gentoo.org> +PEAR-Console_Getopt-1.2.3-r1.ebuild: + EAPI=2, update for php-5.3 09 May 2010; Raúl Porcel <armin76@gentoo.org> PEAR-Console_Getopt-1.2.3.ebuild: diff --git a/dev-php/PEAR-Console_Getopt/PEAR-Console_Getopt-1.2.3-r1.ebuild b/dev-php/PEAR-Console_Getopt/PEAR-Console_Getopt-1.2.3-r1.ebuild new file mode 100644 index 000000000000..ac021013d703 --- /dev/null +++ b/dev-php/PEAR-Console_Getopt/PEAR-Console_Getopt-1.2.3-r1.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Console_Getopt/PEAR-Console_Getopt-1.2.3-r1.ebuild,v 1.1 2010/06/11 22:34:17 mabi Exp $ + +EAPI="2" + +MY_PN="${PN/PEAR-/}" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="Command-line option parser" + +LICENSE="PHP-3" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +IUSE="" +SRC_URI="http://pear.php.net/get/${MY_P}.tgz" +DEPEND="|| ( <dev-lang/php-5.3[pcre] >=dev-lang/php-5.3 ) + >=dev-php/PEAR-PEAR-1.8.1" +PDEPEND="dev-php/pear" +HOMEPAGE="http://pear.php.net/package/Console_Getopt" + +S="${WORKDIR}/${MY_P}" + +src_install() { + insinto /usr/share/php/ + doins -r Console +} |