diff options
author | Ole Markus With <olemarkus@gentoo.org> | 2011-03-12 20:43:04 +0000 |
---|---|---|
committer | Ole Markus With <olemarkus@gentoo.org> | 2011-03-12 20:43:04 +0000 |
commit | 040e70a7303dea554d325e3ad27de995eb4e18d0 (patch) | |
tree | c294d1ee57b9ca640d8d5d34eead05479d9348e8 /dev-php/doctrine | |
parent | alpha/sparc stable wrt #353436 (diff) | |
download | gentoo-2-040e70a7303dea554d325e3ad27de995eb4e18d0.tar.gz gentoo-2-040e70a7303dea554d325e3ad27de995eb4e18d0.tar.bz2 gentoo-2-040e70a7303dea554d325e3ad27de995eb4e18d0.zip |
Version bump. Bug #357695. Thanks to Denny
(Portage version: 2.1.9.41/cvs/Linux x86_64)
Diffstat (limited to 'dev-php/doctrine')
-rw-r--r-- | dev-php/doctrine/ChangeLog | 11 | ||||
-rw-r--r-- | dev-php/doctrine/doctrine-1.2.3.ebuild | 26 |
2 files changed, 34 insertions, 3 deletions
diff --git a/dev-php/doctrine/ChangeLog b/dev-php/doctrine/ChangeLog index 78778abf866b..74422f96c187 100644 --- a/dev-php/doctrine/ChangeLog +++ b/dev-php/doctrine/ChangeLog @@ -1,6 +1,11 @@ -# ChangeLog for dev-php5/doctrine -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php/doctrine/ChangeLog,v 1.1 2011/03/12 19:49:23 olemarkus Exp $ +# ChangeLog for dev-php/doctrine +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-php/doctrine/ChangeLog,v 1.2 2011/03/12 20:43:04 olemarkus Exp $ + +*doctrine-1.2.3 (12 Mar 2011) + + 12 Mar 2011; <olemarkus@gentoo.org> +doctrine-1.2.3.ebuild: + Version bump. Bug #357695. Thanks to Denny *doctrine-1.2.2 (01 May 2010) diff --git a/dev-php/doctrine/doctrine-1.2.3.ebuild b/dev-php/doctrine/doctrine-1.2.3.ebuild new file mode 100644 index 000000000000..77996ffcc31f --- /dev/null +++ b/dev-php/doctrine/doctrine-1.2.3.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-php/doctrine/doctrine-1.2.3.ebuild,v 1.1 2011/03/12 20:43:04 olemarkus Exp $ + +EAPI="2" + +MY_P="Doctrine-${PV}" +DESCRIPTION="An object relational mapper for PHP5" +HOMEPAGE="http://www.doctrine-project.org/" +SRC_URI="http://www.doctrine-project.org/downloads/${MY_P}.tgz" + +LICENSE="LGPL-2.1 MIT BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND=">=dev-lang/php-5.2.3[cli,pdo]" +RDEPEND="${DEPEND}" + +S="${WORKDIR}/${MY_P}" + +src_install() { + insinto /usr/share/php + doins -r Doctrine + doins Doctrine.php +} |