Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-fs/inotify-tools: ChangeLog inotify-tools-3.13-r1.ebuild
Date: Wed, 28 Oct 2009 23:22:28
Message-Id: E1N3HqP-0008C1-AK@stork.gentoo.org
1 vapier 09/10/28 23:22:21
2
3 Modified: ChangeLog
4 Added: inotify-tools-3.13-r1.ebuild
5 Log:
6 Fix implicit doxygen handling, broken autotools, and install more doc files #177054 by Mart Raudsepp.
7 (Portage version: 2.2_rc46/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.27 sys-fs/inotify-tools/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/inotify-tools/ChangeLog?rev=1.27&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/inotify-tools/ChangeLog?rev=1.27&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/inotify-tools/ChangeLog?r1=1.26&r2=1.27
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-fs/inotify-tools/ChangeLog,v
19 retrieving revision 1.26
20 retrieving revision 1.27
21 diff -u -r1.26 -r1.27
22 --- ChangeLog 23 Sep 2009 20:51:05 -0000 1.26
23 +++ ChangeLog 28 Oct 2009 23:22:20 -0000 1.27
24 @@ -1,6 +1,13 @@
25 # ChangeLog for sys-fs/inotify-tools
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/inotify-tools/ChangeLog,v 1.26 2009/09/23 20:51:05 patrick Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/inotify-tools/ChangeLog,v 1.27 2009/10/28 23:22:20 vapier Exp $
29 +
30 +*inotify-tools-3.13-r1 (28 Oct 2009)
31 +
32 + 28 Oct 2009; Mike Frysinger <vapier@g.o>
33 + +inotify-tools-3.13-r1.ebuild:
34 + Fix implicit doxygen handling, broken autotools, and install more doc
35 + files #177054 by Mart Raudsepp.
36
37 23 Sep 2009; Patrick Lauer <patrick@g.o> inotify-tools-3.12.ebuild,
38 inotify-tools-3.13.ebuild:
39
40
41
42 1.1 sys-fs/inotify-tools/inotify-tools-3.13-r1.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/inotify-tools/inotify-tools-3.13-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/inotify-tools/inotify-tools-3.13-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: inotify-tools-3.13-r1.ebuild
48 ===================================================================
49 # Copyright 1999-2009 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/sys-fs/inotify-tools/inotify-tools-3.13-r1.ebuild,v 1.1 2009/10/28 23:22:20 vapier Exp $
52
53 EAPI="2"
54
55 DESCRIPTION="a set of command-line programs providing a simple interface to inotify"
56 HOMEPAGE="http://inotify-tools.sourceforge.net/"
57 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~amd64 ~hppa ~x86 ~arm"
62 IUSE="doc"
63
64 DEPEND="doc? ( app-doc/doxygen )"
65 RDEPEND=""
66
67 src_prepare() {
68 # timestamps are busted in tarball
69 find . -type f -exec touch -r configure {} +
70 }
71
72 src_configure() {
73 # only docs installed are doxygen ones, so use /html
74 econf \
75 --docdir=/usr/share/doc/${PF}/html \
76 $(use_enable doc doxygen) \
77 || die
78 }
79
80 src_install() {
81 emake DESTDIR="${D}" install || die
82 dodoc README NEWS AUTHORS ChangeLog
83 }