Gentoo Archives: gentoo-commits

From: "Matsuu Takuto (matsuu)" <matsuu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libev: ChangeLog libev-3.90-r2.ebuild
Date: Sat, 03 Jul 2010 16:55:16
Message-Id: 20100703165505.3075A2CE15@corvid.gentoo.org
1 matsuu 10/07/03 16:55:04
2
3 Modified: ChangeLog
4 Added: libev-3.90-r2.ebuild
5 Log:
6 Fixed compilation error in ev++.h, bug #325391.
7 (Portage version: 2.1.8.3/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.26 dev-libs/libev/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libev/ChangeLog?rev=1.26&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libev/ChangeLog?rev=1.26&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libev/ChangeLog?r1=1.25&r2=1.26
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libev/ChangeLog,v
19 retrieving revision 1.25
20 retrieving revision 1.26
21 diff -u -r1.25 -r1.26
22 --- ChangeLog 31 May 2010 18:27:32 -0000 1.25
23 +++ ChangeLog 3 Jul 2010 16:55:04 -0000 1.26
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-libs/libev
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libev/ChangeLog,v 1.25 2010/05/31 18:27:32 gmsoft Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libev/ChangeLog,v 1.26 2010/07/03 16:55:04 matsuu Exp $
29 +
30 +*libev-3.90-r2 (03 Jul 2010)
31 +
32 + 03 Jul 2010; MATSUU Takuto <matsuu@g.o> +libev-3.90-r2.ebuild,
33 + +files/libev-3.90-ev++.patch:
34 + Fixed compilation error in ev++.h, bug #325391.
35
36 31 May 2010; Guy Martin <gmsoft@g.o> libev-3.90-r1.ebuild:
37 Added ~hppa to KEYWORDS
38
39
40
41 1.1 dev-libs/libev/libev-3.90-r2.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libev/libev-3.90-r2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libev/libev-3.90-r2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libev-3.90-r2.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libev/libev-3.90-r2.ebuild,v 1.1 2010/07/03 16:55:04 matsuu Exp $
51
52 EAPI="3"
53
54 inherit autotools eutils
55
56 MY_P="${P/0}"
57 DESCRIPTION="A high-performance event loop/event model with lots of feature"
58 HOMEPAGE="http://software.schmorp.de/pkg/libev.html"
59 SRC_URI="http://dist.schmorp.de/libev/${MY_P}.tar.gz
60 http://dist.schmorp.de/libev/Attic/${MY_P}.tar.gz"
61
62 LICENSE="|| ( BSD GPL-2 )"
63 SLOT="0"
64 KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
65 IUSE="elibc_glibc"
66
67 # Bug #283558
68 DEPEND="elibc_glibc? ( >=sys-libs/glibc-2.9_p20081201 )"
69 RDEPEND="${DEPEND}"
70
71 S="${WORKDIR}/${MY_P}"
72
73 src_prepare() {
74 epatch "${FILESDIR}/${PN}-3.42-gentoo.patch" \
75 "${FILESDIR}/${P}-ev++.patch"
76
77 eautoreconf
78 }
79
80 src_install() {
81 emake DESTDIR="${D}" install || die
82
83 dodoc Changes README || die
84 }