Gentoo Archives: gentoo-commits

From: "Angelo Arrifano (miknix)" <miknix@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in gpe-base/libhandoff: ChangeLog libhandoff-0.1.ebuild
Date: Wed, 26 Aug 2009 20:25:59
Message-Id: E1MgMA4-0000lb-OR@stork.gentoo.org
1 miknix 09/08/26 17:19:52
2
3 Modified: ChangeLog libhandoff-0.1.ebuild
4 Log:
5 Add DEPEND on dev-util/gtk-doc-am due to use of GTK_DOC_CHECK M4 macro.
6 Remove redundant IUSE expansion.
7 Add commented doc USE flag for future usage.
8 Improve DESCRIPTION, add ChangeLog DOC.
9 (Portage version: 2.1.6.13/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.2 gpe-base/libhandoff/ChangeLog
13
14 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gpe-base/libhandoff/ChangeLog?rev=1.2&view=markup
15 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gpe-base/libhandoff/ChangeLog?rev=1.2&content-type=text/plain
16 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gpe-base/libhandoff/ChangeLog?r1=1.1&r2=1.2
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/gpe-base/libhandoff/ChangeLog,v
21 retrieving revision 1.1
22 retrieving revision 1.2
23 diff -u -r1.1 -r1.2
24 --- ChangeLog 1 Mar 2009 01:10:57 -0000 1.1
25 +++ ChangeLog 26 Aug 2009 17:19:52 -0000 1.2
26 @@ -1,6 +1,12 @@
27 # ChangeLog for gpe-base/libhandoff
28 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/gpe-base/libhandoff/ChangeLog,v 1.1 2009/03/01 01:10:57 solar Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/gpe-base/libhandoff/ChangeLog,v 1.2 2009/08/26 17:19:52 miknix Exp $
31 +
32 + 26 Aug 2009; Angelo Arrifano <miknix@g.o> libhandoff-0.1.ebuild:
33 + Add DEPEND on dev-util/gtk-doc-am due to use of GTK_DOC_CHECK M4 macro.
34 + Remove redundant IUSE expansion.
35 + Add commented doc USE flag for future usage.
36 + Improve DESCRIPTION, add ChangeLog DOC.
37
38 *libhandoff-0.1 (01 Mar 2009)
39
40
41
42
43 1.2 gpe-base/libhandoff/libhandoff-0.1.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gpe-base/libhandoff/libhandoff-0.1.ebuild?rev=1.2&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gpe-base/libhandoff/libhandoff-0.1.ebuild?rev=1.2&content-type=text/plain
47 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gpe-base/libhandoff/libhandoff-0.1.ebuild?r1=1.1&r2=1.2
48
49 Index: libhandoff-0.1.ebuild
50 ===================================================================
51 RCS file: /var/cvsroot/gentoo-x86/gpe-base/libhandoff/libhandoff-0.1.ebuild,v
52 retrieving revision 1.1
53 retrieving revision 1.2
54 diff -u -r1.1 -r1.2
55 --- libhandoff-0.1.ebuild 1 Mar 2009 01:10:57 -0000 1.1
56 +++ libhandoff-0.1.ebuild 26 Aug 2009 17:19:52 -0000 1.2
57 @@ -1,18 +1,27 @@
58 # Copyright 1999-2009 Gentoo Foundation
59 # Distributed under the terms of the GNU General Public License v2
60 -# $Header: /var/cvsroot/gentoo-x86/gpe-base/libhandoff/libhandoff-0.1.ebuild,v 1.1 2009/03/01 01:10:57 solar Exp $
61 +# $Header: /var/cvsroot/gentoo-x86/gpe-base/libhandoff/libhandoff-0.1.ebuild,v 1.2 2009/08/26 17:19:52 miknix Exp $
62
63 GPE_TARBALL_SUFFIX="bz2"
64 GPE_MIRROR="http://gpe.linuxtogo.org/download/source"
65 inherit eutils gpe
66
67 -DESCRIPTION="${PN} - GPE Palmtop Environment"
68 +DESCRIPTION="Handoff implementation for the GPE Palmtop Environment"
69
70 LICENSE="GPL-2"
71 SLOT="0"
72 KEYWORDS="~arm ~amd64 ~x86"
73 -IUSE="${IUSE}"
74 -GPE_DOCS=""
75 +GPE_DOCS="ChangeLog"
76
77 -RDEPEND="${RDEPEND} >=gpe-base/libgpewidget-0.102"
78 -DEPEND="${DEPEND} ${RDEPEND}"
79 +IUSE=""
80 +GPECONF="--disable-gtk-doc"
81 +# This package doesn't generate any gtk-doc yet,
82 +# leave this commented for now.
83 +# IUSE="doc"
84 +# GPECONF="${GPECONF} $(use_enable doc gtk-doc)"
85 +# DEPEND="doc? ( >=dev-util/gtk-doc-1.2 )"
86 +
87 +RDEPEND="${RDEPEND}
88 + >=gpe-base/libgpewidget-0.102"
89 +DEPEND="${DEPEND} ${RDEPEND}
90 + dev-util/gtk-doc-am"