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-admin/watchfolder/
Date: Wed, 08 Mar 2017 23:10:43
Message-Id: 1489014635.adb454c92a23837bdc9955239442c736494b78e1.monsieurp@gentoo
1 commit: adb454c92a23837bdc9955239442c736494b78e1
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Wed Mar 8 23:10:19 2017 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Wed Mar 8 23:10:35 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=adb454c9
7
8 app-admin/watchfolder: clean up old.
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 app-admin/watchfolder/watchfolder-0.3.3.ebuild | 43 --------------------------
13 1 file changed, 43 deletions(-)
14
15 diff --git a/app-admin/watchfolder/watchfolder-0.3.3.ebuild b/app-admin/watchfolder/watchfolder-0.3.3.ebuild
16 deleted file mode 100644
17 index 87993d3e5a6..00000000000
18 --- a/app-admin/watchfolder/watchfolder-0.3.3.ebuild
19 +++ /dev/null
20 @@ -1,43 +0,0 @@
21 -# Copyright 1999-2017 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -inherit eutils toolchain-funcs
25 -
26 -DESCRIPTION="Watches directories and processes files"
27 -HOMEPAGE="http://freshmeat.net/projects/watchd/"
28 -SRC_URI="http://dstunrea.sdf-eu.org/files/${P}.tar.gz"
29 -
30 -LICENSE="GPL-2"
31 -SLOT="0"
32 -KEYWORDS="~alpha ~amd64 ~ppc ~x86"
33 -IUSE=""
34 -DEPEND=""
35 -
36 -S="${WORKDIR}/${P/folder/d}"
37 -
38 -src_unpack() {
39 - unpack ${A}
40 - cd "${S}"
41 -
42 - # patch to remove warnings on 64 bit systems
43 - epatch "${FILESDIR}"/${PV}-64bit.patch || die
44 - # and a gcc 4.3.3 / fortify_sources fix
45 - epatch "${FILESDIR}"/${PV}-fortify-sources.patch || die
46 -
47 - sed -i \
48 - -e '/-c -o/s:OPT:CFLAGS:' \
49 - -e 's:(\(LD\)\?OPT):(LDFLAGS) $(CFLAGS):' \
50 - -e 's:gcc:$(CC):' \
51 - Makefile || die "sed Makefile failed"
52 -}
53 -
54 -src_compile() {
55 - emake CC="$(tc-getCC)" || die "emake failed"
56 -}
57 -
58 -src_install() {
59 - dobin watchd || die "dobin failed"
60 - insinto /etc
61 - doins watchd.conf
62 - dodoc README doc/*
63 -}