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: libev-4.03.ebuild ChangeLog
Date: Wed, 26 Jan 2011 16:51:53
Message-Id: 20110126165143.8BC6120054@flycatcher.gentoo.org
1 matsuu 11/01/26 16:51:43
2
3 Modified: ChangeLog
4 Added: libev-4.03.ebuild
5 Log:
6 Version bumped. Added static-libs USE flag.
7
8 (Portage version: 2.1.9.31/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.32 dev-libs/libev/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libev/ChangeLog?rev=1.32&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libev/ChangeLog?rev=1.32&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libev/ChangeLog?r1=1.31&r2=1.32
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libev/ChangeLog,v
20 retrieving revision 1.31
21 retrieving revision 1.32
22 diff -u -r1.31 -r1.32
23 --- ChangeLog 26 Jan 2011 01:06:50 -0000 1.31
24 +++ ChangeLog 26 Jan 2011 16:51:43 -0000 1.32
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-libs/libev
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libev/ChangeLog,v 1.31 2011/01/26 01:06:50 jer Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libev/ChangeLog,v 1.32 2011/01/26 16:51:43 matsuu Exp $
30 +
31 +*libev-4.03 (26 Jan 2011)
32 +
33 + 26 Jan 2011; MATSUU Takuto <matsuu@g.o> +libev-4.03.ebuild:
34 + Version bumped. Added static-libs USE flag.
35
36 26 Jan 2011; Jeroen Roovers <jer@g.o> libev-3.90-r2.ebuild:
37 Stable for HPPA (bug #349213).
38
39
40
41 1.1 dev-libs/libev/libev-4.03.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libev/libev-4.03.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libev/libev-4.03.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libev-4.03.ebuild
47 ===================================================================
48 # Copyright 1999-2011 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libev/libev-4.03.ebuild,v 1.1 2011/01/26 16:51:43 matsuu Exp $
51
52 EAPI="3"
53
54 inherit autotools eutils
55
56 MY_P="${P}"
57
58 DESCRIPTION="A high-performance event loop/event model with lots of feature"
59 HOMEPAGE="http://software.schmorp.de/pkg/libev.html"
60 SRC_URI="http://dist.schmorp.de/libev/${MY_P}.tar.gz
61 http://dist.schmorp.de/libev/Attic/${MY_P}.tar.gz"
62
63 LICENSE="|| ( BSD GPL-2 )"
64 SLOT="0"
65 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
66 IUSE="elibc_glibc static-libs"
67
68 # Bug #283558
69 DEPEND="elibc_glibc? ( >=sys-libs/glibc-2.9_p20081201 )"
70 RDEPEND="${DEPEND}"
71
72 S="${WORKDIR}/${MY_P}"
73
74 src_prepare() {
75 epatch "${FILESDIR}/4.01-gentoo.patch"
76
77 eautoreconf
78 }
79
80 src_configure() {
81 econf $(use_enable static-libs static)
82 }
83
84 src_install() {
85 emake DESTDIR="${D}" install || die
86
87 dodoc Changes README || die
88 }