forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-php/php-openid: Bump snapshot for PHP 7 compatibility
Package-Manager: Portage-2.3.31, Repoman-2.3.9
- Loading branch information
Brian Evans
committed
Apr 25, 2018
1 parent
10a0363
commit 7b0c758
Showing
2 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST php-openid-26d5e12ea2a1eae180b11b061160d6f78fbedd17.tar.gz 399502 BLAKE2B f18b74c9db19d30710ad35cb97fd426e515cfb1426c887d194a5ef62352fca09ac801c32501eb95005bf2c6cfa13ff5b166972d1b10dbb8a2dcdab2780073f56 SHA512 d63bc7e4f79ecb07958a71dfc8eedae3d1fb0b41070be9b8d1036a08861497cd858602d23158f92ccf7bfa2b1ecdc999397c62f99b8ebb2dc65a8f1f2e2911f3 | ||
DIST php-openid-fff9217fb1acda132702730b66b10981ea9d4cac.tar.gz 396390 BLAKE2B 68cd024d88666d60e8490a1fa00f939160a249b1146caf80649f05637db3847712b869ecfbfa838ecf7af11f33241d3fa8135969473a3a5a1779d920d7fba94e SHA512 930567426a5aa7d5967f4ef231f78c5719e174e6be7b78f62ecdd9e2bc2ec99e7c6051585ae3a92c6e005e05460d394d81b4c0cdb80ac0ffdfe5eaf6fdb9f625 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Copyright 1999-2018 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=6 | ||
MY_PV="26d5e12ea2a1eae180b11b061160d6f78fbedd17" | ||
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-MDB2" | ||
} |