blob: e8caf028f967a202ff91374680da4ad2077eea59 (
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
37
38
39
40
41
42
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/ondir/ondir-0.2.1.ebuild,v 1.2 2003/10/08 12:25:05 hillster Exp $
inherit eutils
DESCRIPTION="ondir is a program that automatically executes scripts as you traverse directories."
SRC_URI="http://ondir.sourceforge.net/${PV}/ondir-${PV}.tar.gz"
HOMEPAGE="http://ondir.sourceforge.net"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
DEPEND=""
S="${WORKDIR}/${P}"
src_unpack() {
unpack "${A}"
cd "${S}"
}
src_compile() {
emake PREFIX=/usr CONF=/etc/ondirrc || die "Make failed"
}
src_install() {
## EXEs
exeinto /usr/bin
exeopts -oroot -groot -m0755
doexe ondir
## MISC
insinto /usr/share/${PN}
insopts -oroot -groot -m0755
doins scripts.sh scripts.tcsh
insopts -oroot -groot -m0644
doins ondirrc.eg
## DOCS
dodoc AUTHORS ChangeLog COPYING \
INSTALL README TODO
doman ondir.1
}
|