Gentoo Archives: gentoo-commits

From: "Nathan Phillip Brink (binki)" <binki@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libmowgli: ChangeLog libmowgli-2.0.0_alpha1.ebuild
Date: Fri, 03 Feb 2012 01:11:05
Message-Id: 20120203011052.A79392004B@flycatcher.gentoo.org
1 binki 12/02/03 01:10:52
2
3 Modified: ChangeLog libmowgli-2.0.0_alpha1.ebuild
4 Log:
5 Move dev-libs/libmowgli-2* to SLOT=2 as it has an (almost superficially) different API from libmowgli-1. EAPI=4 code cleanup.
6
7 (Portage version: 2.2.0_alpha84-r1/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.59 dev-libs/libmowgli/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libmowgli/ChangeLog?rev=1.59&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libmowgli/ChangeLog?rev=1.59&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libmowgli/ChangeLog?r1=1.58&r2=1.59
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libmowgli/ChangeLog,v
19 retrieving revision 1.58
20 retrieving revision 1.59
21 diff -u -r1.58 -r1.59
22 --- ChangeLog 31 Jan 2012 05:10:15 -0000 1.58
23 +++ ChangeLog 3 Feb 2012 01:10:52 -0000 1.59
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-libs/libmowgli
26 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libmowgli/ChangeLog,v 1.58 2012/01/31 05:10:15 jdhore Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libmowgli/ChangeLog,v 1.59 2012/02/03 01:10:52 binki Exp $
29 +
30 + 03 Feb 2012; Nathan Phillip Brink <binki@g.o>
31 + libmowgli-2.0.0_alpha1.ebuild:
32 + Move dev-libs/libmowgli-2* to SLOT=2 as it has an (almost superficially)
33 + different API from libmowgli-1. EAPI=4 code cleanup.
34
35 *libmowgli-2.0.0_alpha1 (31 Jan 2012)
36
37
38
39
40 1.2 dev-libs/libmowgli/libmowgli-2.0.0_alpha1.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libmowgli/libmowgli-2.0.0_alpha1.ebuild?rev=1.2&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libmowgli/libmowgli-2.0.0_alpha1.ebuild?rev=1.2&content-type=text/plain
44 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libmowgli/libmowgli-2.0.0_alpha1.ebuild?r1=1.1&r2=1.2
45
46 Index: libmowgli-2.0.0_alpha1.ebuild
47 ===================================================================
48 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libmowgli/libmowgli-2.0.0_alpha1.ebuild,v
49 retrieving revision 1.1
50 retrieving revision 1.2
51 diff -u -r1.1 -r1.2
52 --- libmowgli-2.0.0_alpha1.ebuild 31 Jan 2012 05:10:15 -0000 1.1
53 +++ libmowgli-2.0.0_alpha1.ebuild 3 Feb 2012 01:10:52 -0000 1.2
54 @@ -1,28 +1,27 @@
55 # Copyright 1999-2012 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libmowgli/libmowgli-2.0.0_alpha1.ebuild,v 1.1 2012/01/31 05:10:15 jdhore Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libmowgli/libmowgli-2.0.0_alpha1.ebuild,v 1.2 2012/02/03 01:10:52 binki Exp $
59
60 EAPI=4
61
62 MY_P=${P/_/-}
63
64 -DESCRIPTION="High-performance C development framework. Can be used stand-alone or as a supplement to GLib."
65 +DESCRIPTION="Useful set of performance and usability-oriented extensions to C"
66 HOMEPAGE="http://www.atheme.org/project/mowgli"
67 SRC_URI="http://atheme.org/downloads/${MY_P}.tar.gz"
68 IUSE="examples"
69
70 LICENSE="BSD-2"
71 -SLOT="0"
72 +SLOT="2"
73 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
74
75 S=${WORKDIR}/${MY_P}
76
77 src_configure() {
78 - econf $(use_enable examples) \
79 - || die "econf failed"
80 + econf $(use_enable examples)
81 }
82
83 src_install() {
84 - emake DESTDIR="${D}" install || die "emake install failed"
85 + emake DESTDIR="${D}" install
86 dodoc AUTHORS README doc/BOOST
87 }