diff options
Diffstat (limited to 'dev-php/doctrine/doctrine-1.2.4.ebuild')
-rw-r--r-- | dev-php/doctrine/doctrine-1.2.4.ebuild | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/dev-php/doctrine/doctrine-1.2.4.ebuild b/dev-php/doctrine/doctrine-1.2.4.ebuild new file mode 100644 index 000000000000..5d471e444f5d --- /dev/null +++ b/dev-php/doctrine/doctrine-1.2.4.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.4.ebuild,v 1.1 2011/03/21 07:17:24 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 +} |