summaryrefslogtreecommitdiff
path: root/sys-fs/inotify-tools/inotify-tools-3.20.2.2.ebuild
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-07-21 08:43:51 +0100
committerV3n3RiX <venerix@koprulu.sector>2022-07-21 08:43:51 +0100
commit3c54b2473c5fb6fe0fc543b15fc4678471922cb1 (patch)
tree85dd52aab1ba67c22a7a6645e2d7586b27acb611 /sys-fs/inotify-tools/inotify-tools-3.20.2.2.ebuild
parent34753f0703b775be89190c2d6a519e542387f3e8 (diff)
gentoo auto-resync : 21:07:2022 - 08:43:51
Diffstat (limited to 'sys-fs/inotify-tools/inotify-tools-3.20.2.2.ebuild')
-rw-r--r--sys-fs/inotify-tools/inotify-tools-3.20.2.2.ebuild41
1 files changed, 0 insertions, 41 deletions
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
deleted file mode 100644
index 22720914efb2..000000000000
--- a/sys-fs/inotify-tools/inotify-tools-3.20.2.2.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2021 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"
-
-BDEPEND="doc? ( app-doc/doxygen )"
-
-src_prepare() {
- default
-
- # Remove -Werror from CFLAGS (#745069)
- find -name "Makefile.am" -print0 \
- | xargs --null sed 's@ -Werror@@' -i || die
-
- 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
-}