blob: da8cc972bf392b9706c3113b1d1e1876b9401aee (
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-2005 Gentoo Foundation
# 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.7 2005/01/01 15:17:44 eradicator Exp $
inherit eutils
DESCRIPTION="program that automatically executes scripts as you traverse directories"
HOMEPAGE="http://ondir.sourceforge.net/"
SRC_URI="http://ondir.sourceforge.net/${PV}/ondir-${PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~amd64"
IUSE=""
DEPEND=""
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 INSTALL README TODO
doman ondir.1
}
|