Gentoo Archives: gentoo-commits

From: "Christoph Junghans (ottxor)" <ottxor@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/fcgi: fcgi-2.4.1_pre0910052249-r1.ebuild ChangeLog
Date: Mon, 29 Oct 2012 15:00:56
Message-Id: 20121029150044.5B6BA21600@flycatcher.gentoo.org
1 ottxor 12/10/29 15:00:44
2
3 Modified: ChangeLog
4 Added: fcgi-2.4.1_pre0910052249-r1.ebuild
5 Log:
6 added prefix support (bug #440070)
7
8 (Portage version: 2.2.0_alpha142/cvs/Linux i686, signed Manifest commit with key C2000586)
9
10 Revision Changes Path
11 1.57 dev-libs/fcgi/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/fcgi/ChangeLog?rev=1.57&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/fcgi/ChangeLog?rev=1.57&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/fcgi/ChangeLog?r1=1.56&r2=1.57
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/fcgi/ChangeLog,v
20 retrieving revision 1.56
21 retrieving revision 1.57
22 diff -u -r1.56 -r1.57
23 --- ChangeLog 29 Oct 2012 06:59:19 -0000 1.56
24 +++ ChangeLog 29 Oct 2012 15:00:44 -0000 1.57
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-libs/fcgi
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/fcgi/ChangeLog,v 1.56 2012/10/29 06:59:19 graaff Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/fcgi/ChangeLog,v 1.57 2012/10/29 15:00:44 ottxor Exp $
30 +
31 +*fcgi-2.4.1_pre0910052249-r1 (29 Oct 2012)
32 +
33 + 29 Oct 2012; Christoph Junghans <ottxor@g.o>
34 + +fcgi-2.4.1_pre0910052249-r1.ebuild:
35 + added prefix support (bug #440070)
36
37 29 Oct 2012; Hans de Graaff <graaff@g.o>
38 -fcgi-2.4.1_pre0311112127.ebuild:
39 @@ -210,4 +216,3 @@
40
41 04 Sep 2003; Matthew Kennedy <mkennedy@g.o> :
42 Initial import.
43 -
44
45
46
47 1.1 dev-libs/fcgi/fcgi-2.4.1_pre0910052249-r1.ebuild
48
49 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/fcgi/fcgi-2.4.1_pre0910052249-r1.ebuild?rev=1.1&view=markup
50 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/fcgi/fcgi-2.4.1_pre0910052249-r1.ebuild?rev=1.1&content-type=text/plain
51
52 Index: fcgi-2.4.1_pre0910052249-r1.ebuild
53 ===================================================================
54 # Copyright 1999-2012 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 # $Header: /var/cvsroot/gentoo-x86/dev-libs/fcgi/fcgi-2.4.1_pre0910052249-r1.ebuild,v 1.1 2012/10/29 15:00:44 ottxor Exp $
57
58 EAPI="4"
59
60 inherit eutils autotools multilib
61
62 DESCRIPTION="FastCGI Developer's Kit"
63 HOMEPAGE="http://www.fastcgi.com/"
64 SRC_URI="http://www.fastcgi.com/dist/fcgi-2.4.1-SNAP-0910052249.tar.gz"
65
66 LICENSE="FastCGI"
67 SLOT="0"
68 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
69 IUSE="html"
70
71 DEPEND=""
72 RDEPEND=""
73
74 S="${WORKDIR}/fcgi-2.4.1-SNAP-0910052249"
75
76 src_prepare() {
77 epatch "${FILESDIR}/fcgi-2.4.0-Makefile.patch"
78 epatch "${FILESDIR}/fcgi-2.4.0-clientdata-pointer.patch"
79 epatch "${FILESDIR}/fcgi-2.4.0-html-updates.patch"
80 epatch "${FILESDIR}"/fcgi-2.4.1_pre0311112127-gcc44.patch
81 epatch "${FILESDIR}"/${P}-link.patch
82
83 eautoreconf
84 }
85
86 src_install() {
87 emake DESTDIR="${D}" install LIBRARY_PATH="${ED}/usr/$(get_libdir)"
88
89 dodoc README
90
91 # install the manpages into the right place
92 doman doc/*.[13]
93
94 # Only install the html documentation if USE=html
95 if use html ; then
96 dohtml "${S}"/doc/*/*
97 insinto /usr/share/doc/${PF}/html
98 doins -r "${S}/images"
99 fi
100
101 # install examples in the right place
102 insinto /usr/share/doc/${PF}/examples
103 doins "${S}/examples/"*.c
104 }