Gentoo Archives: gentoo-commits

From: "Chris Reffett (creffett)" <creffett@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in www-apache/mod_fcgid: mod_fcgid-2.3.9-r1.ebuild ChangeLog
Date: Fri, 07 Feb 2014 20:08:47
Message-Id: 20140207200842.7D4082004C@flycatcher.gentoo.org
1 creffett 14/02/07 20:08:42
2
3 Modified: ChangeLog
4 Added: mod_fcgid-2.3.9-r1.ebuild
5 Log:
6 Revision bump: bump EAPI, use emake instead of make, fix DESCRIPTION, split configure step into src_configure
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 42618354)
9
10 Revision Changes Path
11 1.62 www-apache/mod_fcgid/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_fcgid/ChangeLog?rev=1.62&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_fcgid/ChangeLog?rev=1.62&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_fcgid/ChangeLog?r1=1.61&r2=1.62
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/www-apache/mod_fcgid/ChangeLog,v
20 retrieving revision 1.61
21 retrieving revision 1.62
22 diff -u -r1.61 -r1.62
23 --- ChangeLog 7 Feb 2014 20:00:11 -0000 1.61
24 +++ ChangeLog 7 Feb 2014 20:08:42 -0000 1.62
25 @@ -1,6 +1,12 @@
26 # ChangeLog for www-apache/mod_fcgid
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_fcgid/ChangeLog,v 1.61 2014/02/07 20:00:11 creffett Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_fcgid/ChangeLog,v 1.62 2014/02/07 20:08:42 creffett Exp $
30 +
31 +*mod_fcgid-2.3.9-r1 (07 Feb 2014)
32 +
33 + 07 Feb 2014; Chris Reffett <creffett@g.o> +mod_fcgid-2.3.9-r1.ebuild:
34 + Revision bump: bump EAPI, use emake instead of make, fix DESCRIPTION, split
35 + configure step into src_configure
36
37 07 Feb 2014; Chris Reffett <creffett@g.o> -mod_fcgid-2.3.7.ebuild:
38 Drop vulnerable versions wrt bug 487314
39
40
41
42 1.1 www-apache/mod_fcgid/mod_fcgid-2.3.9-r1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_fcgid/mod_fcgid-2.3.9-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_fcgid/mod_fcgid-2.3.9-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: mod_fcgid-2.3.9-r1.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/www-apache/mod_fcgid/mod_fcgid-2.3.9-r1.ebuild,v 1.1 2014/02/07 20:08:42 creffett Exp $
52
53 EAPI=5
54 inherit apache-module eutils multilib
55
56 DESCRIPTION="A binary-compatible alternative to mod_fastcgi with better process management."
57 HOMEPAGE="http://httpd.apache.org/mod_fcgid/"
58 SRC_URI="mirror://apache/httpd/mod_fcgid/${P}.tar.bz2"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86"
63 IUSE=""
64
65 APACHE2_MOD_CONF="2.2/20_${PN}"
66 APACHE2_MOD_DEFINE="FCGID"
67
68 DOCFILES="CHANGES-FCGID README-FCGID STATUS-FCGID"
69
70 need_apache2
71
72 src_configure() {
73 ./configure.apxs || die "apxs configure failed"
74 }
75
76 src_compile () {
77 emake
78 ln -sf modules/fcgid/.libs .libs || die "symlink creation failed"
79 }