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.80-r1.ebuild
Date: Thu, 03 Sep 2009 08:32:40
Message-Id: E1MjCYt-0000Ru-WB@stork.gentoo.org
1 matsuu 09/09/03 13:41:15
2
3 Modified: ChangeLog
4 Added: libev-3.80-r1.ebuild
5 Log:
6 Fixed dependency, bug #283558.
7 (Portage version: 2.1.6.13/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.17 dev-libs/libev/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libev/ChangeLog?rev=1.17&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libev/ChangeLog?rev=1.17&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libev/ChangeLog?r1=1.16&r2=1.17
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libev/ChangeLog,v
19 retrieving revision 1.16
20 retrieving revision 1.17
21 diff -u -r1.16 -r1.17
22 --- ChangeLog 19 Aug 2009 16:38:41 -0000 1.16
23 +++ ChangeLog 3 Sep 2009 13:41:15 -0000 1.17
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-libs/libev
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libev/ChangeLog,v 1.16 2009/08/19 16:38:41 matsuu Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libev/ChangeLog,v 1.17 2009/09/03 13:41:15 matsuu Exp $
29 +
30 +*libev-3.80-r1 (03 Sep 2009)
31 +
32 + 03 Sep 2009; MATSUU Takuto <matsuu@g.o> +libev-3.80-r1.ebuild:
33 + Fixed dependency, bug #283558.
34
35 *libev-3.80 (19 Aug 2009)
36
37
38
39
40 1.1 dev-libs/libev/libev-3.80-r1.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libev/libev-3.80-r1.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libev/libev-3.80-r1.ebuild?rev=1.1&content-type=text/plain
44
45 Index: libev-3.80-r1.ebuild
46 ===================================================================
47 # Copyright 1999-2009 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libev/libev-3.80-r1.ebuild,v 1.1 2009/09/03 13:41:15 matsuu Exp $
50
51 inherit autotools eutils
52
53 MY_P="${P/0}"
54 DESCRIPTION="A high-performance event loop/event model with lots of feature"
55 HOMEPAGE="http://software.schmorp.de/pkg/libev.html"
56 SRC_URI="http://dist.schmorp.de/libev/${MY_P}.tar.gz
57 http://dist.schmorp.de/libev/Attic/${MY_P}.tar.gz"
58
59 LICENSE="|| ( BSD GPL-2 )"
60 SLOT="0"
61 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd"
62 IUSE=""
63
64 # Bug #283558
65 DEPEND=">=sys-libs/glibc-2.9_p20081201"
66 RDEPEND="${DEPEND}"
67
68 S="${WORKDIR}/${MY_P}"
69
70 src_unpack() {
71 unpack ${A}
72 cd "${S}"
73 epatch "${FILESDIR}/${PN}-3.42-gentoo.patch"
74
75 eautoreconf
76 }
77
78 src_install() {
79 emake DESTDIR="${D}" install || die
80
81 dodoc Changes README
82 }