Gentoo Archives: gentoo-commits

From: "Victor Ostorga (vostorga)" <vostorga@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/httpup: ChangeLog httpup-0.3.2.ebuild
Date: Fri, 28 Aug 2009 20:16:03
Message-Id: E1Mg25p-00009r-Uc@stork.gentoo.org
1 vostorga 09/08/25 19:54:09
2
3 Modified: ChangeLog httpup-0.3.2.ebuild
4 Log:
5 Fixing build against gcc 4.4 #282676 , Respecting CXX variable
6 (Portage version: 2.1.6.13/cvs/Linux i686)
7
8 Revision Changes Path
9 1.6 dev-util/httpup/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/httpup/ChangeLog?rev=1.6&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/httpup/ChangeLog?rev=1.6&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/httpup/ChangeLog?r1=1.5&r2=1.6
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-util/httpup/ChangeLog,v
18 retrieving revision 1.5
19 retrieving revision 1.6
20 diff -u -r1.5 -r1.6
21 --- ChangeLog 20 Jun 2008 14:07:12 -0000 1.5
22 +++ ChangeLog 25 Aug 2009 19:54:09 -0000 1.6
23 @@ -1,6 +1,10 @@
24 # ChangeLog for dev-util/httpup
25 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/dev-util/httpup/ChangeLog,v 1.5 2008/06/20 14:07:12 loki_val Exp $
27 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/dev-util/httpup/ChangeLog,v 1.6 2009/08/25 19:54:09 vostorga Exp $
29 +
30 + 25 Aug 2009; VĂ­ctor Ostorga <vostorga@g.o> httpup-0.3.2.ebuild,
31 + +files/httpup-0.3.2-gcc44.patch:
32 + Fixing build against gcc 4.4 #282676 , Respecting CXX variable
33
34 20 Jun 2008; Peter Alfredsen <loki_val@g.o>
35 +files/httpup-0.3.2-gcc43.patch, httpup-0.3.2.ebuild:
36
37
38
39 1.4 dev-util/httpup/httpup-0.3.2.ebuild
40
41 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/httpup/httpup-0.3.2.ebuild?rev=1.4&view=markup
42 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/httpup/httpup-0.3.2.ebuild?rev=1.4&content-type=text/plain
43 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/httpup/httpup-0.3.2.ebuild?r1=1.3&r2=1.4
44
45 Index: httpup-0.3.2.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/dev-util/httpup/httpup-0.3.2.ebuild,v
48 retrieving revision 1.3
49 retrieving revision 1.4
50 diff -u -r1.3 -r1.4
51 --- httpup-0.3.2.ebuild 20 Jun 2008 14:07:12 -0000 1.3
52 +++ httpup-0.3.2.ebuild 25 Aug 2009 19:54:09 -0000 1.4
53 @@ -1,8 +1,8 @@
54 -# Copyright 1999-2008 Gentoo Foundation
55 +# Copyright 1999-2009 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/dev-util/httpup/httpup-0.3.2.ebuild,v 1.3 2008/06/20 14:07:12 loki_val Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/dev-util/httpup/httpup-0.3.2.ebuild,v 1.4 2009/08/25 19:54:09 vostorga Exp $
59
60 -inherit eutils
61 +inherit eutils toolchain-funcs
62
63 DESCRIPTION="synchronisation tool for http file repositories"
64 HOMEPAGE="http://clc.berlios.de/projects/httpup/"
65 @@ -14,6 +14,7 @@
66 IUSE=""
67
68 DEPEND="net-misc/curl"
69 +RDEPEND="${DEPEND}"
70
71 src_unpack() {
72 unpack ${A}
73 @@ -22,6 +23,11 @@
74 -e 's:g++:$(CXX) $(CFLAGS) $(LDFLAGS):' \
75 Makefile
76 epatch "${FILESDIR}"/${P}-gcc43.patch
77 + epatch "${FILESDIR}"/${P}-gcc44.patch
78 +}
79 +
80 +src_compile() {
81 + emake CXX="$(tc-getCXX)" || die "make failed"
82 }
83
84 src_install() {