Gentoo Archives: gentoo-commits

From: "Anthony G. Basile (blueness)" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-dns/c-ares: ChangeLog c-ares-1.8.0.ebuild
Date: Sat, 28 Apr 2012 10:21:28
Message-Id: 20120428102114.BA1A62004B@flycatcher.gentoo.org
1 blueness 12/04/28 10:21:14
2
3 Modified: ChangeLog
4 Added: c-ares-1.8.0.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.1.10.49/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.71 net-dns/c-ares/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/c-ares/ChangeLog?rev=1.71&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/c-ares/ChangeLog?rev=1.71&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/c-ares/ChangeLog?r1=1.70&r2=1.71
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-dns/c-ares/ChangeLog,v
20 retrieving revision 1.70
21 retrieving revision 1.71
22 diff -u -r1.70 -r1.71
23 --- ChangeLog 26 Apr 2012 17:21:13 -0000 1.70
24 +++ ChangeLog 28 Apr 2012 10:21:14 -0000 1.71
25 @@ -1,6 +1,11 @@
26 # ChangeLog for net-dns/c-ares
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-dns/c-ares/ChangeLog,v 1.70 2012/04/26 17:21:13 aballier Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-dns/c-ares/ChangeLog,v 1.71 2012/04/28 10:21:14 blueness Exp $
30 +
31 +*c-ares-1.8.0 (28 Apr 2012)
32 +
33 + 28 Apr 2012; Anthony G. Basile <blueness@g.o> +c-ares-1.8.0.ebuild:
34 + Version bump
35
36 26 Apr 2012; Alexis Ballier <aballier@g.o> c-ares-1.7.5.ebuild:
37 keyword ~amd64-fbsd
38
39
40
41 1.1 net-dns/c-ares/c-ares-1.8.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/c-ares/c-ares-1.8.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/c-ares/c-ares-1.8.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: c-ares-1.8.0.ebuild
47 ===================================================================
48 # Copyright 1999-2012 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/net-dns/c-ares/c-ares-1.8.0.ebuild,v 1.1 2012/04/28 10:21:14 blueness Exp $
51
52 EAPI=4
53
54 DESCRIPTION="C library that resolves names asynchronously"
55 HOMEPAGE="http://c-ares.haxx.se/"
56 SRC_URI="http://${PN}.haxx.se/download/${P}.tar.gz"
57
58 LICENSE="MIT"
59 SLOT="0"
60 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc64-solaris"
61 IUSE="static-libs"
62
63 DOCS=( AUTHORS CHANGES README README.cares RELEASE-NOTES TODO )
64
65 src_configure() {
66 econf \
67 --enable-nonblocking \
68 --enable-symbol-hiding \
69 $(use_enable static-libs static)
70 }
71
72 src_install() {
73 default
74 find "${ED}" -name "*.la" -exec rm {} + || die
75 }