Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/fsniper/
Date: Sun, 01 Jan 2017 18:53:38
Message-Id: 1483296812.9408d3e1b9c084949c39e5101758049f3be68b74.monsieurp@gentoo
1 commit: 9408d3e1b9c084949c39e5101758049f3be68b74
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 1 18:53:06 2017 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 1 18:53:32 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9408d3e1
7
8 app-misc/fsniper: EAPI 6 bump and ebuild cleanup.
9
10 Package-Manager: portage-2.3.0
11
12 app-misc/fsniper/fsniper-1.3.1-r2.ebuild | 39 ++++++++++++++++++++++++++++++++
13 1 file changed, 39 insertions(+)
14
15 diff --git a/app-misc/fsniper/fsniper-1.3.1-r2.ebuild b/app-misc/fsniper/fsniper-1.3.1-r2.ebuild
16 new file mode 100644
17 index 00000000..d1a5f7b
18 --- /dev/null
19 +++ b/app-misc/fsniper/fsniper-1.3.1-r2.ebuild
20 @@ -0,0 +1,39 @@
21 +# Copyright 1999-2017 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +# $Id$
24 +
25 +EAPI=6
26 +
27 +inherit autotools
28 +
29 +DESCRIPTION="Monitors a given set of directories for new files"
30 +HOMEPAGE="https://github.com/l3ib/fsniper/"
31 +SRC_URI="http://projects.l3ib.org/${PN}/files/${P}.tar.gz"
32 +
33 +LICENSE="GPL-2"
34 +SLOT="0"
35 +KEYWORDS="~amd64 ~x86"
36 +
37 +DEPEND="
38 + dev-libs/libpcre
39 + sys-apps/file"
40 +
41 +RDEPEND="
42 + ${DEPEND}"
43 +
44 +PATCHES=(
45 + "${FILESDIR}"/${P}-format-security.patch
46 + "${FILESDIR}"/${P}-umask.patch
47 +)
48 +
49 +DOCS=( AUTHORS COPYING NEWS README example.conf )
50 +
51 +src_prepare() {
52 + default
53 + eautoreconf
54 +}
55 +
56 +src_install() {
57 + emake DESTDIR="${D}" install
58 + einstalldocs
59 +}