diff options
Diffstat (limited to 'dev-php/php-openid/php-openid-2.2.3_pre20140423.ebuild')
-rw-r--r-- | dev-php/php-openid/php-openid-2.2.3_pre20140423.ebuild | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/dev-php/php-openid/php-openid-2.2.3_pre20140423.ebuild b/dev-php/php-openid/php-openid-2.2.3_pre20140423.ebuild new file mode 100644 index 000000000000..d1a841cb8d15 --- /dev/null +++ b/dev-php/php-openid/php-openid-2.2.3_pre20140423.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +MY_PV="fff9217fb1acda132702730b66b10981ea9d4cac" +MY_P="${PN}-${MY_PV}" + +PHP_LIB_NAME="Auth" +DESCRIPTION="PHP OpenID implementation" +HOMEPAGE="https://github.com/openid/php-openid" +SRC_URI="https://github.com/openid/${PN}/archive/${MY_PV}.tar.gz -> ${MY_P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="examples" + +DEPEND="" +RDEPEND="|| ( dev-lang/php[gmp] dev-lang/php[bcmath] ) + dev-lang/php[curl,xml,ssl] + net-misc/curl[ssl]" + +S="${WORKDIR}/${MY_P}" + +src_install() { + insinto "/usr/share/php/${PN}" + cd "${S}/Auth" && doins -r . + + use examples && dodoc -r ../examples +} + +pkg_postinst() { + elog "This ebuild can optionally make use of:" + elog " dev-php/PEAR-DB" +} |