summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wendler <polynomial-c@gentoo.org>2010-06-15 11:47:51 +0000
committerLars Wendler <polynomial-c@gentoo.org>2010-06-15 11:47:51 +0000
commitd9f4debe72653ebf50e559d249cf8baf99c19a9b (patch)
treee9b549d4109a9cb4e1eaf2176c39694d3fe61173 /sys-fs/inotify-tools
parentQA, imported prefix changes (diff)
downloadgentoo-2-d9f4debe72653ebf50e559d249cf8baf99c19a9b.tar.gz
gentoo-2-d9f4debe72653ebf50e559d249cf8baf99c19a9b.tar.bz2
gentoo-2-d9f4debe72653ebf50e559d249cf8baf99c19a9b.zip
non-maintainer commit: Version bump (bug #315135)
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'sys-fs/inotify-tools')
-rw-r--r--sys-fs/inotify-tools/ChangeLog10
-rw-r--r--sys-fs/inotify-tools/inotify-tools-3.14.ebuild35
2 files changed, 43 insertions, 2 deletions
diff --git a/sys-fs/inotify-tools/ChangeLog b/sys-fs/inotify-tools/ChangeLog
index 28818c569233..26ce0c30ef53 100644
--- a/sys-fs/inotify-tools/ChangeLog
+++ b/sys-fs/inotify-tools/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for sys-fs/inotify-tools
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/inotify-tools/ChangeLog,v 1.30 2009/11/26 10:37:20 maekke Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/inotify-tools/ChangeLog,v 1.31 2010/06/15 11:47:51 polynomial-c Exp $
+
+*inotify-tools-3.14 (15 Jun 2010)
+
+ 15 Jun 2010; Lars Wendler <polynomial-c@gentoo.org>
+ +inotify-tools-3.14.ebuild:
+ non-maintainer commit: Version bump (bug #315135)
26 Nov 2009; Markus Meier <maekke@gentoo.org>
inotify-tools-3.13-r1.ebuild:
diff --git a/sys-fs/inotify-tools/inotify-tools-3.14.ebuild b/sys-fs/inotify-tools/inotify-tools-3.14.ebuild
new file mode 100644
index 000000000000..9197047e472a
--- /dev/null
+++ b/sys-fs/inotify-tools/inotify-tools-3.14.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2010 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/inotify-tools/inotify-tools-3.14.ebuild,v 1.1 2010/06/15 11:47:51 polynomial-c Exp $
+
+EAPI="2"
+
+DESCRIPTION="a set of command-line programs providing a simple interface to inotify"
+HOMEPAGE="http://inotify-tools.sourceforge.net/"
+SRC_URI="http://github.com/downloads/rvoicilas/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~hppa ~x86"
+IUSE="doc"
+
+DEPEND="doc? ( app-doc/doxygen )"
+RDEPEND=""
+
+src_prepare() {
+ # timestamps are busted in tarball
+ find . -type f -exec touch -r configure {} +
+}
+
+src_configure() {
+ # only docs installed are doxygen ones, so use /html
+ econf \
+ --docdir=/usr/share/doc/${PF}/html \
+ $(use_enable doc doxygen) \
+ || die
+}
+
+src_install() {
+ emake DESTDIR="${D}" install || die
+ dodoc README NEWS AUTHORS ChangeLog
+}