blob: 9e57ff5e76dc573a42a2124e8b0a6cdc0e111d34 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/watchfolder/watchfolder-0.3.1.1.ebuild,v 1.2 2003/02/13 05:32:54 vapier Exp $
MY_PV="${PV:0:5}_p1"
DESCRIPTION="Watches directories and processes files, similar to the watchfolder option of Acrobat Distiller."
HOMEPAGE=""
SRC_URI="http://dstunrea.sdf-eu.org/files/${PN}-${MY_PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND=""
#RDEPEND=""
S="${WORKDIR}/${PN}-${MY_PV}"
src_unpack() {
unpack ${A}
cd ${S}
mv Makefile Makefile.orig
sed "3s:OPT=:OPT=${CFLAGS} :" Makefile.orig >Makefile
}
src_compile() {
emake || die
}
src_install() {
dobin watchd
insinto /etc
doins watchd.conf
dodoc README doc/*
}
|