Gentoo Archives: gentoo-commits

From: "Victor Ostorga (vostorga)" <vostorga@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-cpp/tclap: ChangeLog tclap-1.1.0.ebuild
Date: Sun, 25 Oct 2009 21:48:57
Message-Id: E1N2AxL-0007S7-1i@stork.gentoo.org
1 vostorga 09/10/25 21:48:55
2
3 Modified: ChangeLog tclap-1.1.0.ebuild
4 Log:
5 Fixing description, license and repoman complains. Adding doc USE flag. Patch thanks to Toffanin <toffanin.mauro@×××××.com> bug 223203
6 (Portage version: 2.1.6.13/cvs/Linux i686)
7
8 Revision Changes Path
9 1.4 dev-cpp/tclap/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/tclap/ChangeLog?rev=1.4&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/tclap/ChangeLog?rev=1.4&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/tclap/ChangeLog?r1=1.3&r2=1.4
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-cpp/tclap/ChangeLog,v
18 retrieving revision 1.3
19 retrieving revision 1.4
20 diff -u -r1.3 -r1.4
21 --- ChangeLog 24 Jul 2009 18:23:17 -0000 1.3
22 +++ ChangeLog 25 Oct 2009 21:48:54 -0000 1.4
23 @@ -1,6 +1,10 @@
24 # ChangeLog for dev-cpp/tclap
25 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/dev-cpp/tclap/ChangeLog,v 1.3 2009/07/24 18:23:17 ssuominen Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/tclap/ChangeLog,v 1.4 2009/10/25 21:48:54 vostorga Exp $
28 +
29 + 25 Oct 2009; Víctor Ostorga <vostorga@g.o> tclap-1.1.0.ebuild:
30 + Fixing description, license and repoman complains. Adding doc USE flag.
31 + Patch thanks to Toffanin <toffanin.mauro@×××××.com> bug 223203
32
33 24 Jul 2009; Samuli Suominen <ssuominen@g.o> tclap-1.1.0.ebuild,
34 +files/tclap-1.1.0-gcc44.patch:
35
36
37
38 1.4 dev-cpp/tclap/tclap-1.1.0.ebuild
39
40 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/tclap/tclap-1.1.0.ebuild?rev=1.4&view=markup
41 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/tclap/tclap-1.1.0.ebuild?rev=1.4&content-type=text/plain
42 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/tclap/tclap-1.1.0.ebuild?r1=1.3&r2=1.4
43
44 Index: tclap-1.1.0.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/dev-cpp/tclap/tclap-1.1.0.ebuild,v
47 retrieving revision 1.3
48 retrieving revision 1.4
49 diff -u -r1.3 -r1.4
50 --- tclap-1.1.0.ebuild 24 Jul 2009 18:23:17 -0000 1.3
51 +++ tclap-1.1.0.ebuild 25 Oct 2009 21:48:54 -0000 1.4
52 @@ -1,26 +1,35 @@
53 # Copyright 1999-2009 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/dev-cpp/tclap/tclap-1.1.0.ebuild,v 1.3 2009/07/24 18:23:17 ssuominen Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/tclap/tclap-1.1.0.ebuild,v 1.4 2009/10/25 21:48:54 vostorga Exp $
57
58 EAPI=2
59 inherit eutils
60
61 -DESCRIPTION="Small flexible library for dealing with command line arguments"
62 +DESCRIPTION="Simple templatized C++ library for parsing command line arguments."
63 HOMEPAGE="http://tclap.sourceforge.net"
64 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
65
66 -LICENSE="as-is"
67 +LICENSE="MIT"
68 SLOT="0"
69 KEYWORDS="~amd64 ~ppc ~x86"
70 -IUSE=""
71 +IUSE="doc"
72
73 RDEPEND=""
74 -DEPEND=""
75 +DEPEND="doc? ( app-doc/doxygen )"
76
77 src_prepare() {
78 epatch "${FILESDIR}"/${P}-gcc44.patch
79 }
80
81 +src_configure() {
82 + local myconf="$(use_enable doc doxygen)"
83 + econf ${myconf}
84 +}
85 +
86 src_install() {
87 emake DESTDIR="${D}" install || die "emake install failed"
88 +
89 + if use doc; then
90 + dohtml -r docs/html/*
91 + fi
92 }