From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2D60E139085 for ; Sun, 1 Jan 2017 18:53:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 469E2E0D9B; Sun, 1 Jan 2017 18:53:36 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2448BE0D9B for ; Sun, 1 Jan 2017 18:53:36 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0D79B33E142 for ; Sun, 1 Jan 2017 18:53:35 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 84D6F25DC for ; Sun, 1 Jan 2017 18:53:33 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1483296812.9408d3e1b9c084949c39e5101758049f3be68b74.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/fsniper/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/fsniper/fsniper-1.3.1-r2.ebuild X-VCS-Directories: app-misc/fsniper/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 9408d3e1b9c084949c39e5101758049f3be68b74 X-VCS-Branch: master Date: Sun, 1 Jan 2017 18:53:33 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 48eb18b1-4378-4a97-b86b-d8af95ce21cb X-Archives-Hash: e79722d2e7c35571e7fe9dcfd5c2d1ad commit: 9408d3e1b9c084949c39e5101758049f3be68b74 Author: Patrice Clement gentoo org> AuthorDate: Sun Jan 1 18:53:06 2017 +0000 Commit: Patrice Clement gentoo org> CommitDate: Sun Jan 1 18:53:32 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9408d3e1 app-misc/fsniper: EAPI 6 bump and ebuild cleanup. Package-Manager: portage-2.3.0 app-misc/fsniper/fsniper-1.3.1-r2.ebuild | 39 ++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/app-misc/fsniper/fsniper-1.3.1-r2.ebuild b/app-misc/fsniper/fsniper-1.3.1-r2.ebuild new file mode 100644 index 00000000..d1a5f7b --- /dev/null +++ b/app-misc/fsniper/fsniper-1.3.1-r2.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit autotools + +DESCRIPTION="Monitors a given set of directories for new files" +HOMEPAGE="https://github.com/l3ib/fsniper/" +SRC_URI="http://projects.l3ib.org/${PN}/files/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND=" + dev-libs/libpcre + sys-apps/file" + +RDEPEND=" + ${DEPEND}" + +PATCHES=( + "${FILESDIR}"/${P}-format-security.patch + "${FILESDIR}"/${P}-umask.patch +) + +DOCS=( AUTHORS COPYING NEWS README example.conf ) + +src_prepare() { + default + eautoreconf +} + +src_install() { + emake DESTDIR="${D}" install + einstalldocs +}