sys-fs/inotify-tools: Bump to version 3.20.2.2
authorLars Wendler <polynomial-c@gentoo.org>
Mon, 3 Feb 2020 15:59:55 +0000 (16:59 +0100)
committerLars Wendler <polynomial-c@gentoo.org>
Mon, 3 Feb 2020 16:02:46 +0000 (17:02 +0100)
Package-Manager: Portage-2.3.87, Repoman-2.3.20
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
sys-fs/inotify-tools/Manifest
sys-fs/inotify-tools/inotify-tools-3.20.2.2.ebuild [new file with mode: 0644]

index a5c34797d36c2d7e61819165050c3aa3e05dc369..e6e64742a003133d6c52822351fffad473a4f493 100644 (file)
@@ -1 +1,2 @@
 DIST inotify-tools-3.20.1.tar.gz 79564 BLAKE2B 4b1235951f55ecb7c6c92b06b68dedebad8677c2265616dddd275bf627034b66b5756cf17a2f68f4201a78b043ec8a0800f115f3952c19875ae7f524b9b21382 SHA512 a97d27e6033036f0db5c0737bee3510206db9f4c843f0d18f1b2e179e838624ea33316c34fd9917c158dbb3580367908e90042fb1bfb146f150c32833b0b2ff2
+DIST inotify-tools-3.20.2.2.tar.gz 81006 BLAKE2B 7dd29985f68096fe2146a3ad84d619b3d1238b0db25eeb125f2fe9591fa678078351f00c7e09b526cf2251e4736201d5625ff0e477523cae370a307ccb667730 SHA512 72d6fdcc216d8083cd384c71c02dc8e800d3a9702613568b3c571f704aee3d42bf084c52f2141c9afb8d28e8b87ebb6391ed3d825b3d664ed51c552debeb1881
diff --git a/sys-fs/inotify-tools/inotify-tools-3.20.2.2.ebuild b/sys-fs/inotify-tools/inotify-tools-3.20.2.2.ebuild
new file mode 100644 (file)
index 0000000..391f17c
--- /dev/null
@@ -0,0 +1,37 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools
+
+DESCRIPTION="a set of command-line programs providing a simple interface to inotify"
+HOMEPAGE="https://github.com/inotify-tools/inotify-tools"
+SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~mips ~sparc ~x86"
+IUSE="doc"
+
+DEPEND="doc? ( app-doc/doxygen )"
+RDEPEND=""
+
+src_prepare() {
+       default
+       eautoreconf
+}
+
+src_configure() {
+       # only docs installed are doxygen ones, so use /html
+       local myeconfargs=(
+               --docdir='$(datarootdir)'/doc/${PF}/html
+               $(use_enable doc doxygen)
+       )
+       econf "${myeconfargs[@]}"
+}
+
+src_install() {
+       default
+       find "${ED}" \( -name '*.a*' -o -name '*.la' \) -delete || die
+}