diff options
Diffstat (limited to 'dev-php')
-rw-r--r-- | dev-php/PEAR-Console_Getopt/ChangeLog | 10 | ||||
-rw-r--r-- | dev-php/PEAR-Console_Getopt/PEAR-Console_Getopt-1.4.0.ebuild | 28 |
2 files changed, 36 insertions, 2 deletions
diff --git a/dev-php/PEAR-Console_Getopt/ChangeLog b/dev-php/PEAR-Console_Getopt/ChangeLog index 37d864bb8e29..df43c8d76653 100644 --- a/dev-php/PEAR-Console_Getopt/ChangeLog +++ b/dev-php/PEAR-Console_Getopt/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-php/PEAR-Console_Getopt -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Console_Getopt/ChangeLog,v 1.39 2014/01/26 18:28:08 olemarkus Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Console_Getopt/ChangeLog,v 1.40 2015/05/05 13:24:11 grknight Exp $ + +*PEAR-Console_Getopt-1.4.0 (05 May 2015) + + 05 May 2015; Brian Evans <grknight@gentoo.org> + +PEAR-Console_Getopt-1.4.0.ebuild: + Version bump; New version changed license to BSD-2 26 Jan 2014; Ole Markus With <olemarkus@gentoo.org> PEAR-Console_Getopt-1.3.1.ebuild: diff --git a/dev-php/PEAR-Console_Getopt/PEAR-Console_Getopt-1.4.0.ebuild b/dev-php/PEAR-Console_Getopt/PEAR-Console_Getopt-1.4.0.ebuild new file mode 100644 index 000000000000..218df72accb4 --- /dev/null +++ b/dev-php/PEAR-Console_Getopt/PEAR-Console_Getopt-1.4.0.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2015 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.4.0.ebuild,v 1.1 2015/05/05 13:24:11 grknight Exp $ + +EAPI=5 + +MY_PN="${PN/PEAR-/}" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="Command-line option parser" + +LICENSE="BSD-2" +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.4:* + >=dev-php/PEAR-PEAR-1.8.1" +RDEPEND="${DEPEND}" +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 +} |