Gentoo Archives: gentoo-commits

From: "Benedikt Boehm (hollow)" <hollow@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in www-apache/mod_auth_openid: ChangeLog mod_auth_openid-0.2-r1.ebuild
Date: Thu, 08 May 2008 19:13:34
Message-Id: E1JuBYV-0003qr-Re@stork.gentoo.org
1 hollow 08/05/08 19:13:27
2
3 Modified: ChangeLog
4 Added: mod_auth_openid-0.2-r1.ebuild
5 Log:
6 fix #220595
7 (Portage version: 2.1.5_rc6)
8
9 Revision Changes Path
10 1.2 www-apache/mod_auth_openid/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apache/mod_auth_openid/ChangeLog?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apache/mod_auth_openid/ChangeLog?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apache/mod_auth_openid/ChangeLog?r1=1.1&r2=1.2
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/www-apache/mod_auth_openid/ChangeLog,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- ChangeLog 22 Mar 2008 19:20:30 -0000 1.1
23 +++ ChangeLog 8 May 2008 19:13:27 -0000 1.2
24 @@ -1,6 +1,12 @@
25 # ChangeLog for www-apache/mod_auth_openid
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_auth_openid/ChangeLog,v 1.1 2008/03/22 19:20:30 hollow Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_auth_openid/ChangeLog,v 1.2 2008/05/08 19:13:27 hollow Exp $
29 +
30 +*mod_auth_openid-0.2-r1 (08 May 2008)
31 +
32 + 08 May 2008; Benedikt Böhm <hollow@g.o>
33 + +mod_auth_openid-0.2-r1.ebuild:
34 + fix #220595
35
36 *mod_auth_openid-0.2 (22 Mar 2008)
37
38
39
40
41 1.1 www-apache/mod_auth_openid/mod_auth_openid-0.2-r1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apache/mod_auth_openid/mod_auth_openid-0.2-r1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apache/mod_auth_openid/mod_auth_openid-0.2-r1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: mod_auth_openid-0.2-r1.ebuild
47 ===================================================================
48 # Copyright 1999-2008 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/www-apache/mod_auth_openid/mod_auth_openid-0.2-r1.ebuild,v 1.1 2008/05/08 19:13:27 hollow Exp $
51
52 inherit eutils apache-module autotools
53
54 DESCRIPTION="an OpenID authentication module for the apache webserver"
55 HOMEPAGE="http://trac.butterfat.net/public/mod_auth_openid"
56 SRC_URI="http://butterfat.net/releases/mod_auth_openid/${P}.tar.gz"
57
58 LICENSE="as-is"
59 SLOT="0"
60 KEYWORDS="~amd64 ~x86"
61 IUSE=""
62
63 DEPEND="dev-libs/apr
64 net-libs/libopkele
65 >=dev-db/sqlite-3"
66 RDEPEND="${DEPEND}"
67
68 APACHE2_MOD_CONF="10_${PN}"
69 APACHE2_MOD_DEFINE="AUTH_OPENID"
70
71 need_apache2
72
73 src_unpack() {
74 unpack ${A}
75 cd "${S}"
76
77 sed -i -e '/^ACLOCAL_AMFLAGS=/d' Makefile.am
78
79 AT_M4DIR="acinclude.d"
80 eautoreconf
81 }
82
83 src_compile() {
84 econf --with-apxs="${APXS}" \
85 --without-bdb-dir \
86 --with-sqlite3=/usr \
87 --with-apr-config=/usr/bin/apr-1-config \
88 || die "econf failed"
89 emake || die "emake failed"
90 }
91
92
93
94 --
95 gentoo-commits@l.g.o mailing list