Gentoo Archives: gentoo-commits

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