Gentoo Archives: gentoo-commits

From: "Yixun Lan (dlan)" <dlan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libev: ChangeLog libev-4.15-r1.ebuild libev-4.11-r1.ebuild
Date: Fri, 21 Mar 2014 21:39:10
Message-Id: 20140321213903.9C4662004E@flycatcher.gentoo.org
1 dlan 14/03/21 21:39:03
2
3 Modified: ChangeLog
4 Added: libev-4.15-r1.ebuild
5 Removed: libev-4.11-r1.ebuild
6 Log:
7 drop 4.11; cleanup; add multilib support, thanks @iamnr3
8
9 (Portage version: 2.2.8/cvs/Linux x86_64, signed Manifest commit with key 0xAABEFD55)
10
11 Revision Changes Path
12 1.64 dev-libs/libev/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libev/ChangeLog?rev=1.64&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libev/ChangeLog?rev=1.64&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libev/ChangeLog?r1=1.63&r2=1.64
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libev/ChangeLog,v
21 retrieving revision 1.63
22 retrieving revision 1.64
23 diff -u -r1.63 -r1.64
24 --- ChangeLog 20 Dec 2013 19:57:20 -0000 1.63
25 +++ ChangeLog 21 Mar 2014 21:39:03 -0000 1.64
26 @@ -1,6 +1,13 @@
27 # ChangeLog for dev-libs/libev
28 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libev/ChangeLog,v 1.63 2013/12/20 19:57:20 hwoarang Exp $
30 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libev/ChangeLog,v 1.64 2014/03/21 21:39:03 dlan Exp $
32 +
33 +*libev-4.15-r1 (21 Mar 2014)
34 +
35 + 21 Mar 2014; Yixun Lan <dlan@g.o> -libev-4.11-r1.ebuild,
36 + +libev-4.15-r1.ebuild, -files/4.01-gentoo.patch,
37 + -files/libev-4.11-gentoo.patch:
38 + drop 4.11; cleanup; add multilib support, thanks @iamnr3
39
40 20 Dec 2013; Markos Chandras <hwoarang@g.o>
41 +files/libev-4.15-automake-1.14.patch, libev-4.15.ebuild:
42
43
44
45 1.1 dev-libs/libev/libev-4.15-r1.ebuild
46
47 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libev/libev-4.15-r1.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libev/libev-4.15-r1.ebuild?rev=1.1&content-type=text/plain
49
50 Index: libev-4.15-r1.ebuild
51 ===================================================================
52 # Copyright 1999-2014 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libev/libev-4.15-r1.ebuild,v 1.1 2014/03/21 21:39:03 dlan Exp $
55
56 EAPI=5
57
58 inherit autotools eutils multilib-minimal
59
60 DESCRIPTION="A high-performance event loop/event model with lots of feature"
61 HOMEPAGE="http://software.schmorp.de/pkg/libev.html"
62 SRC_URI="http://dist.schmorp.de/libev/${P}.tar.gz
63 http://dist.schmorp.de/libev/Attic/${P}.tar.gz"
64
65 LICENSE="|| ( BSD GPL-2 )"
66 SLOT="0"
67 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
68 IUSE="elibc_glibc static-libs"
69
70 # Bug #283558
71 DEPEND="elibc_glibc? ( >=sys-libs/glibc-2.9_p20081201 )"
72 RDEPEND="${DEPEND}"
73
74 DOCS=( Changes README )
75
76 src_prepare() {
77 sed -i -e "/^include_HEADERS/s/ event.h//" Makefile.am || die
78
79 # bug #411847
80 epatch "${FILESDIR}/${PN}-pc.patch"
81 # bug #493050
82 epatch "${FILESDIR}/${P}-automake-1.14.patch"
83
84 epatch_user
85 eautoreconf
86 }
87
88 multilib_src_configure() {
89 ECONF_SOURCE="${S}" \
90 econf \
91 --disable-maintainer-mode \
92 $(use_enable static-libs static)
93 }
94
95 multilib_src_install_all() {
96 use static-libs || prune_libtool_files
97 einstalldocs
98 }