diff options
author | Matti Bickel <mabi@gentoo.org> | 2013-03-24 18:36:11 +0000 |
---|---|---|
committer | Matti Bickel <mabi@gentoo.org> | 2013-03-24 18:36:11 +0000 |
commit | 43aaa9042970051992a865c0a005edefc79bdb80 (patch) | |
tree | d636c09ba7d2ba7c6e225de5f1012efe04f21884 /dev-php/agavi | |
parent | amd64, ppc and x86 stable wrt bug #457462 (diff) | |
download | gentoo-2-43aaa9042970051992a865c0a005edefc79bdb80.tar.gz gentoo-2-43aaa9042970051992a865c0a005edefc79bdb80.tar.bz2 gentoo-2-43aaa9042970051992a865c0a005edefc79bdb80.zip |
version bump
(Portage version: 2.2.0_alpha168/cvs/Linux x86_64, signed Manifest commit with key 0x4849EC6C)
Diffstat (limited to 'dev-php/agavi')
-rw-r--r-- | dev-php/agavi/ChangeLog | 10 | ||||
-rw-r--r-- | dev-php/agavi/agavi-1.0.7.ebuild | 40 |
2 files changed, 47 insertions, 3 deletions
diff --git a/dev-php/agavi/ChangeLog b/dev-php/agavi/ChangeLog index 5ec4621dfd27..6c418c3c7f52 100644 --- a/dev-php/agavi/ChangeLog +++ b/dev-php/agavi/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-php/agavi -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php/agavi/ChangeLog,v 1.6 2012/12/14 11:21:10 ulm Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-php/agavi/ChangeLog,v 1.7 2013/03/24 18:36:11 mabi Exp $ + +*agavi-1.0.7 (24 Mar 2013) + + 24 Mar 2013; Matti Bickel <mabi@gentoo.org> +agavi-1.0.7.ebuild: + version bump 14 Dec 2012; Ulrich Müller <ulm@gentoo.org> agavi-1.0.4.ebuild: Fix LICENSE, see LICENSE* files in package, bug 445234. @@ -68,4 +73,3 @@ 15 Oct 2005; Sebastian Bergmann <sebastian@gentoo.org> +metadata.xml, +agavi-0.9.0.ebuild: Initial ebuild. - diff --git a/dev-php/agavi/agavi-1.0.7.ebuild b/dev-php/agavi/agavi-1.0.7.ebuild new file mode 100644 index 000000000000..199a5ccde66c --- /dev/null +++ b/dev-php/agavi/agavi-1.0.7.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-php/agavi/agavi-1.0.7.ebuild,v 1.1 2013/03/24 18:36:11 mabi Exp $ + +EAPI="4" + +inherit php-pear-lib-r1 + +DESCRIPTION="PHP5 MVC Application Framework." +HOMEPAGE="http://www.agavi.org/" +SRC_URI="http://www.agavi.org/download/${PV}.tgz" + +LICENSE="LGPL-2.1+ icu unicode ZLIB public-domain" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +# currently fails to install with dev-php/PEAR-PEAR_PackageFileManager-1.7.0 +DEPEND=" + >=dev-lang/php-5[xml] + >=dev-php/PEAR-PEAR-1.6.2-r1 + >=dev-php/phing-2.4[-minimal] + <dev-php/PEAR-PEAR_PackageFileManager-1.7.0 + " + +RDEPEND=" + >=dev-php/phing-2.4 + " + +src_compile() { + phing package-pear || die "failed to build pear package" +} + +src_install() { + cd "${WORKDIR}" + mv "${S}" "${WORKDIR}"/${PV} + cp -pPR "${WORKDIR}"/${PV}/pear-build/* "${WORKDIR}"/ + cd "${S}" + php-pear-lib-r1_src_install +} |