Gentoo Archives: gentoo-commits

From: "Maxim Koltsov (maksbotan)" <maksbotan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libee: ChangeLog libee-0.3.2-r1.ebuild
Date: Thu, 01 Dec 2011 16:37:30
Message-Id: 20111201163713.CBB842004B@flycatcher.gentoo.org
1 maksbotan 11/12/01 16:37:13
2
3 Modified: ChangeLog
4 Added: libee-0.3.2-r1.ebuild
5 Log:
6 Fix usage of autotools-utils.eclass, bug 392093. Thanks to mgorny and slepnoga
7
8 (Portage version: 2.1.10.33/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.4 dev-libs/libee/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libee/ChangeLog?rev=1.4&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libee/ChangeLog?rev=1.4&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libee/ChangeLog?r1=1.3&r2=1.4
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libee/ChangeLog,v
20 retrieving revision 1.3
21 retrieving revision 1.4
22 diff -u -r1.3 -r1.4
23 --- ChangeLog 26 Nov 2011 19:33:47 -0000 1.3
24 +++ ChangeLog 1 Dec 2011 16:37:13 -0000 1.4
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-libs/libee
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libee/ChangeLog,v 1.3 2011/11/26 19:33:47 maksbotan Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libee/ChangeLog,v 1.4 2011/12/01 16:37:13 maksbotan Exp $
30 +
31 +*libee-0.3.2-r1 (01 Dec 2011)
32 +
33 + 01 Dec 2011; Maxim Koltsov <maksbotan@g.o> +libee-0.3.2-r1.ebuild:
34 + Fix usage of autotools-utils.eclass, bug 392093. Thanks to mgorny and
35 + slepnoga
36
37 *libee-0.3.2 (26 Nov 2011)
38
39
40
41
42 1.1 dev-libs/libee/libee-0.3.2-r1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libee/libee-0.3.2-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libee/libee-0.3.2-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libee-0.3.2-r1.ebuild
48 ===================================================================
49 # Copyright 1999-2011 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libee/libee-0.3.2-r1.ebuild,v 1.1 2011/12/01 16:37:13 maksbotan Exp $
52
53 EAPI=4
54
55 AUTOTOOLS_IN_SOURCE_BUILD=1
56 inherit autotools-utils
57
58 DESCRIPTION="An Event Expression Library inspired by CEE"
59 HOMEPAGE="http://www.libee.org"
60 SRC_URI="http://www.libee.org/files/download/${P}.tar.gz"
61
62 LICENSE="LGPL-2.1"
63 SLOT="0"
64 KEYWORDS="~amd64 ~amd64-linux ~x86"
65 IUSE="debug static-libs"
66
67 DEPEND="dev-libs/libxml2
68 dev-libs/libestr"
69 RDEPEND="${DEPEND}"
70
71 DOCS=(INSTALL ChangeLog)
72
73 src_configure() {
74 local myeconfargs=(
75 $(use_enable debug)
76 --enable-testbench
77 )
78 autotools-utils_src_configure
79 }
80
81 src_compile() {
82 autotools-utils_src_compile -j1
83 }