Gentoo Archives: gentoo-commits

From: "Ben de Groot (yngwin)" <yngwin@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-php/php-openid: metadata.xml ChangeLog php-openid-2.1.3.ebuild
Date: Fri, 01 Jan 2010 21:38:09
Message-Id: E1NQpCB-0006MR-W4@stork.gentoo.org
1 yngwin 10/01/01 21:38:07
2
3 Added: metadata.xml ChangeLog php-openid-2.1.3.ebuild
4 Log:
5 Initial commit. Ebuild based on the one by Nathan Phillip Brink in his ohnobinki overlay.
6 (Portage version: 2.2_rc61/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 dev-php/php-openid/metadata.xml
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php/php-openid/metadata.xml?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php/php-openid/metadata.xml?rev=1.1&content-type=text/plain
13
14 Index: metadata.xml
15 ===================================================================
16 <?xml version="1.0" encoding="UTF-8"?>
17 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
18 <pkgmetadata>
19 <herd>php</herd>
20 </pkgmetadata>
21
22
23
24 1.1 dev-php/php-openid/ChangeLog
25
26 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php/php-openid/ChangeLog?rev=1.1&view=markup
27 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php/php-openid/ChangeLog?rev=1.1&content-type=text/plain
28
29 Index: ChangeLog
30 ===================================================================
31 # ChangeLog for dev-php/php-openid
32 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
33 # $Header: /var/cvsroot/gentoo-x86/dev-php/php-openid/ChangeLog,v 1.1 2010/01/01 21:38:07 yngwin Exp $
34
35 *php-openid-2.1.3 (01 Jan 2010)
36
37 01 Jan 2010; Ben de Groot <yngwin@g.o> +php-openid-2.1.3.ebuild,
38 +metadata.xml:
39 Initial commit. Ebuild based on the one by Nathan Phillip Brink in his
40 ohnobinki overlay.
41
42
43
44
45 1.1 dev-php/php-openid/php-openid-2.1.3.ebuild
46
47 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php/php-openid/php-openid-2.1.3.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php/php-openid/php-openid-2.1.3.ebuild?rev=1.1&content-type=text/plain
49
50 Index: php-openid-2.1.3.ebuild
51 ===================================================================
52 # Copyright 1999-2010 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $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 $
55
56 EAPI="2"
57 inherit php-lib-r1
58
59 PHP_LIB_NAME="Auth"
60 DESCRIPTION="PHP OpenID implementation"
61 HOMEPAGE="http://openidenabled.com/php-openid/"
62 SRC_URI="http://openidenabled.com/files/php-openid/packages/${P}.tar.bz2"
63
64 LICENSE="Apache-2.0"
65 SLOT="0"
66 KEYWORDS="~amd64 ~x86"
67 IUSE="examples"
68
69 DEPEND=""
70 RDEPEND="|| ( virtual/php[bcmath] virtual/php[gmp] )
71 virtual/php[curl]"
72
73 src_install() {
74 cd "${S}"/Auth
75 php-lib-r1_src_install . * */*
76
77 if use examples; then
78 cd "${S}"
79 insinto /usr/share/doc/${PF}/examples
80 doins -r examples/*
81 fi
82 }