Gentoo Archives: gentoo-commits

From: "Ingmar Vanhassel (ingmar)" <ingmar@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/xmlrpc-c: ChangeLog xmlrpc-c-1.06.09-r1.ebuild
Date: Fri, 22 Feb 2008 23:24:18
Message-Id: E1JShFX-0000To-BP@stork.gentoo.org
1 ingmar 08/02/22 23:24:15
2
3 Modified: ChangeLog
4 Added: xmlrpc-c-1.06.09-r1.ebuild
5 Log:
6 Revision bump to ensure that -Wl,--as-needed get Flameeyes' fix.
7 (Portage version: 2.1.4.4)
8
9 Revision Changes Path
10 1.43 dev-libs/xmlrpc-c/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/xmlrpc-c/ChangeLog?rev=1.43&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/xmlrpc-c/ChangeLog?rev=1.43&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/xmlrpc-c/ChangeLog?r1=1.42&r2=1.43
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-libs/xmlrpc-c/ChangeLog,v
19 retrieving revision 1.42
20 retrieving revision 1.43
21 diff -u -r1.42 -r1.43
22 --- ChangeLog 21 Feb 2008 14:03:00 -0000 1.42
23 +++ ChangeLog 22 Feb 2008 23:24:14 -0000 1.43
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-libs/xmlrpc-c
26 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/xmlrpc-c/ChangeLog,v 1.42 2008/02/21 14:03:00 armin76 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/xmlrpc-c/ChangeLog,v 1.43 2008/02/22 23:24:14 ingmar Exp $
29 +
30 +*xmlrpc-c-1.06.09-r1 (22 Feb 2008)
31 +
32 + 22 Feb 2008; Ingmar Vanhassel <ingmar@g.o>
33 + +xmlrpc-c-1.06.09-r1.ebuild:
34 + Revision bump to ensure that -Wl,--as-needed get Flameeyes' fix.
35
36 21 Feb 2008; Raúl Porcel <armin76@g.o> xmlrpc-c-1.06.09.ebuild:
37 alpha/ia64/sparc/x86 stable
38
39
40
41 1.1 dev-libs/xmlrpc-c/xmlrpc-c-1.06.09-r1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/xmlrpc-c/xmlrpc-c-1.06.09-r1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/xmlrpc-c/xmlrpc-c-1.06.09-r1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: xmlrpc-c-1.06.09-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/dev-libs/xmlrpc-c/xmlrpc-c-1.06.09-r1.ebuild,v 1.1 2008/02/22 23:24:14 ingmar Exp $
51
52 inherit eutils
53
54 DESCRIPTION="A lightweigt RPC library based on XML and HTTP"
55 SRC_URI="mirror://sourceforge/${PN}/${P}.tgz"
56 HOMEPAGE="http://xmlrpc-c.sourceforge.net/"
57
58 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
59 IUSE="curl libwww threads"
60 LICENSE="BSD"
61 SLOT="0"
62
63 DEPEND="dev-libs/libxml2
64 libwww? ( net-libs/libwww
65 >=dev-libs/openssl-0.9.8g )
66 curl? ( net-misc/curl )"
67
68 pkg_setup() {
69 if ! use curl && ! use libwww; then
70 ewarn "Neither CURL nor libwww support was selected"
71 ewarn "No client library will be be built"
72 fi
73 }
74
75 src_unpack() {
76 unpack ${A}
77 cd "${S}"
78
79 epatch "${FILESDIR}"/${PN}-1.05-pic.patch
80 epatch "${FILESDIR}"/${PN}-1.06.02-threadupdatestatus.patch
81 epatch "${FILESDIR}"/${PN}-1.06.02-strsol.patch
82 epatch "${FILESDIR}"/${PN}-gcc43.patch
83 epatch "${FILESDIR}"/${P}-asneeded.patch
84
85 # Respect the user's CFLAGS/CXXFLAGS.
86 sed -i -e "/CFLAGS_COMMON/s:-g -O3$:${CFLAGS}:" Makefile.common
87 sed -i -e "/CXXFLAGS_COMMON/s:-g$:${CXXFLAGS}:" Makefile.common
88 }
89
90 src_compile() {
91 econf --disable-wininet-client --enable-libxml2-backend \
92 $(use_enable threads abyss-threads) \
93 $(use_enable curl curl-client) \
94 $(use_enable libwww libwww-client) || die "econf failed"
95 emake -j1 || die "emake failed"
96 }
97
98 src_install() {
99 emake -j1 DESTDIR="${D}" install || die "installation failed"
100
101 dodoc README doc/CREDITS doc/DEVELOPING doc/HISTORY doc/SECURITY doc/TESTING \
102 doc/TODO || die "installing docs failed"
103 }
104
105
106
107 --
108 gentoo-commits@l.g.o mailing list