diff options
author | Ben de Groot <yngwin@gentoo.org> | 2010-01-01 21:38:07 +0000 |
---|---|---|
committer | Ben de Groot <yngwin@gentoo.org> | 2010-01-01 21:38:07 +0000 |
commit | d6267d4eb502649695a1527cdc83380e9f264739 (patch) | |
tree | abe44e7c078f5057072520b93d7036de6187bf69 /dev-php | |
parent | Transfer Prefix keywords (diff) | |
download | gentoo-2-d6267d4eb502649695a1527cdc83380e9f264739.tar.gz gentoo-2-d6267d4eb502649695a1527cdc83380e9f264739.tar.bz2 gentoo-2-d6267d4eb502649695a1527cdc83380e9f264739.zip |
Initial commit. Ebuild based on the one by Nathan Phillip Brink in his ohnobinki overlay.
(Portage version: 2.2_rc61/cvs/Linux x86_64)
Diffstat (limited to 'dev-php')
-rw-r--r-- | dev-php/php-openid/ChangeLog | 11 | ||||
-rw-r--r-- | dev-php/php-openid/metadata.xml | 5 | ||||
-rw-r--r-- | dev-php/php-openid/php-openid-2.1.3.ebuild | 31 |
3 files changed, 47 insertions, 0 deletions
diff --git a/dev-php/php-openid/ChangeLog b/dev-php/php-openid/ChangeLog new file mode 100644 index 000000000000..32bb578d91ca --- /dev/null +++ b/dev-php/php-openid/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for dev-php/php-openid +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-php/php-openid/ChangeLog,v 1.1 2010/01/01 21:38:07 yngwin Exp $ + +*php-openid-2.1.3 (01 Jan 2010) + + 01 Jan 2010; Ben de Groot <yngwin@gentoo.org> +php-openid-2.1.3.ebuild, + +metadata.xml: + Initial commit. Ebuild based on the one by Nathan Phillip Brink in his + ohnobinki overlay. + diff --git a/dev-php/php-openid/metadata.xml b/dev-php/php-openid/metadata.xml new file mode 100644 index 000000000000..0575d3a570dc --- /dev/null +++ b/dev-php/php-openid/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>php</herd> +</pkgmetadata> diff --git a/dev-php/php-openid/php-openid-2.1.3.ebuild b/dev-php/php-openid/php-openid-2.1.3.ebuild new file mode 100644 index 000000000000..00938704b1f4 --- /dev/null +++ b/dev-php/php-openid/php-openid-2.1.3.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-php/php-openid/php-openid-2.1.3.ebuild,v 1.1 2010/01/01 21:38:07 yngwin Exp $ + +EAPI="2" +inherit php-lib-r1 + +PHP_LIB_NAME="Auth" +DESCRIPTION="PHP OpenID implementation" +HOMEPAGE="http://openidenabled.com/php-openid/" +SRC_URI="http://openidenabled.com/files/php-openid/packages/${P}.tar.bz2" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="examples" + +DEPEND="" +RDEPEND="|| ( virtual/php[bcmath] virtual/php[gmp] ) + virtual/php[curl]" + +src_install() { + cd "${S}"/Auth + php-lib-r1_src_install . * */* + + if use examples; then + cd "${S}" + insinto /usr/share/doc/${PF}/examples + doins -r examples/* + fi +} |