summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrice Clement <monsieurp@gentoo.org>2017-03-09 00:10:19 +0100
committerPatrice Clement <monsieurp@gentoo.org>2017-03-09 00:10:35 +0100
commitadb454c92a23837bdc9955239442c736494b78e1 (patch)
tree76567e2f8a2433eab2007b7ca7378514ae8965a4 /app-admin
parentapp-admin/watchfolder: remove trailing whitespaces. (diff)
downloadgentoo-adb454c92a23837bdc9955239442c736494b78e1.tar.gz
gentoo-adb454c92a23837bdc9955239442c736494b78e1.tar.bz2
gentoo-adb454c92a23837bdc9955239442c736494b78e1.zip
app-admin/watchfolder: clean up old.
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'app-admin')
-rw-r--r--app-admin/watchfolder/watchfolder-0.3.3.ebuild43
1 files changed, 0 insertions, 43 deletions
diff --git a/app-admin/watchfolder/watchfolder-0.3.3.ebuild b/app-admin/watchfolder/watchfolder-0.3.3.ebuild
deleted file mode 100644
index 87993d3e5a6e..000000000000
--- a/app-admin/watchfolder/watchfolder-0.3.3.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-inherit eutils toolchain-funcs
-
-DESCRIPTION="Watches directories and processes files"
-HOMEPAGE="http://freshmeat.net/projects/watchd/"
-SRC_URI="http://dstunrea.sdf-eu.org/files/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ppc ~x86"
-IUSE=""
-DEPEND=""
-
-S="${WORKDIR}/${P/folder/d}"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- # patch to remove warnings on 64 bit systems
- epatch "${FILESDIR}"/${PV}-64bit.patch || die
- # and a gcc 4.3.3 / fortify_sources fix
- epatch "${FILESDIR}"/${PV}-fortify-sources.patch || die
-
- sed -i \
- -e '/-c -o/s:OPT:CFLAGS:' \
- -e 's:(\(LD\)\?OPT):(LDFLAGS) $(CFLAGS):' \
- -e 's:gcc:$(CC):' \
- Makefile || die "sed Makefile failed"
-}
-
-src_compile() {
- emake CC="$(tc-getCC)" || die "emake failed"
-}
-
-src_install() {
- dobin watchd || die "dobin failed"
- insinto /etc
- doins watchd.conf
- dodoc README doc/*
-}