Gentoo Archives: gentoo-commits

From: "Christoph Junghans (ottxor)" <ottxor@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/iniparser: ChangeLog iniparser-3.0.0.ebuild
Date: Wed, 11 Jan 2012 02:53:00
Message-Id: 20120111025247.93C912004C@flycatcher.gentoo.org
1 ottxor 12/01/11 02:52:47
2
3 Modified: ChangeLog
4 Added: iniparser-3.0.0.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.2.0_alpha84/cvs/Linux i686)
9
10 Revision Changes Path
11 1.20 dev-libs/iniparser/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/iniparser/ChangeLog?rev=1.20&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/iniparser/ChangeLog?rev=1.20&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/iniparser/ChangeLog?r1=1.19&r2=1.20
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/iniparser/ChangeLog,v
20 retrieving revision 1.19
21 retrieving revision 1.20
22 diff -u -r1.19 -r1.20
23 --- ChangeLog 26 Sep 2010 16:58:44 -0000 1.19
24 +++ ChangeLog 11 Jan 2012 02:52:47 -0000 1.20
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-libs/iniparser
27 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/iniparser/ChangeLog,v 1.19 2010/09/26 16:58:44 leio Exp $
29 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/iniparser/ChangeLog,v 1.20 2012/01/11 02:52:47 ottxor Exp $
31 +
32 +*iniparser-3.0.0 (11 Jan 2012)
33 +
34 + 11 Jan 2012; Christoph Junghans <ottxor@g.o> +iniparser-3.0.0.ebuild,
35 + +files/iniparser-3.0-autotools.patch:
36 + version bump
37
38 26 Sep 2010; Mart Raudsepp <leio@g.o> iniparser-3.0b-r2.ebuild:
39 Add ~mips
40
41
42
43 1.1 dev-libs/iniparser/iniparser-3.0.0.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/iniparser/iniparser-3.0.0.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/iniparser/iniparser-3.0.0.ebuild?rev=1.1&content-type=text/plain
47
48 Index: iniparser-3.0.0.ebuild
49 ===================================================================
50 # Copyright 1999-2012 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-libs/iniparser/iniparser-3.0.0.ebuild,v 1.1 2012/01/11 02:52:47 ottxor Exp $
53
54 EAPI="4"
55
56 inherit autotools-utils
57
58 DESCRIPTION="A free stand-alone ini file parsing library."
59 HOMEPAGE="http://ndevilla.free.fr/iniparser/"
60
61 #name this version 3.0.0 instead of 3.0 as 3.0.0 > 3.0b > 3.0
62 SRC_URI="http://ndevilla.free.fr/iniparser/${P%.0}.tar.gz"
63 LICENSE="MIT"
64 SLOT="0"
65 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-macos"
66 IUSE="doc examples static-libs"
67
68 DEPEND="doc? ( app-doc/doxygen )"
69 RDEPEND=""
70
71 # the tests are rather examples than tests, no point in running them
72 RESTRICT="test"
73
74 S="${WORKDIR}/${PN}"
75
76 DOCS=( AUTHORS README )
77
78 PATCHES=(
79 "${FILESDIR}/${PN}-3.0b-cpp.patch"
80 "${FILESDIR}/${PN}-3.0-autotools.patch"
81 )
82
83 AUTOTOOLS_AUTORECONF=1
84
85 src_install() {
86 autotools-utils_src_install
87
88 if use doc; then
89 emake -C doc
90 dohtml -r html/*
91 fi
92
93 if use examples ; then
94 insinto /usr/share/doc/${PF}/examples
95 doins test/*.{c,ini,py}
96 fi
97 }