blob: cb6ee35df1a95947707893f33e89287e5852b2bb (
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/fam/fam-2.7.0.ebuild,v 1.2 2003/12/08 15:37:25 foser Exp $
inherit libtool eutils
DESCRIPTION="FAM, the File Alteration Monitor"
SRC_URI="ftp://oss.sgi.com/projects/fam/download/stable/${P}.tar.gz"
HOMEPAGE="http://oss.sgi.com/projects/fam/"
KEYWORDS="~x86 ~ppc ~alpha ~sparc ~hppa ~amd64 ~ia64"
SLOT="0"
LICENSE="GPL-2 LGPL-2.1"
IUSE=""
DEPEND=">=net-nds/portmap-5b-r6"
src_unpack() {
unpack ${A}
# fix permission problems with user* in FEATURES (#35307)
chmod u+w ${S}/configure
}
src_install() {
einstall || die
dosed -i -e "s:local_only = false:local_only = true:g" conf/fam.conf
exeinto /etc/init.d
doexe ${FILESDIR}/famd
dodoc AUTHORS COPYING ChangeLog INSTALL NEWS TODO README
}
pkg_postinst() {
einfo "To enable fam on boot you will have to add it to the"
einfo "default profile, issue the following command as root to do so."
echo
einfo "rc-update add famd default"
# temporary warning for people upgrading
# 6-12-03 foser <foser@gentoo.org>
echo
echo
ewarn "IMPORTANT INFO FOR USERS UPGRADING FROM OLDER (<2.7.0) FAM VERSIONS :"
echo
einfo "With the 2.7.0 version the fam daemon moved to sbin and was"
einfo "renamed from 'fam' to 'famd'. These changes are for consistency"
einfo "reasons also applied to the Gentoo init script. This means you"
einfo "will have to remove fam from the default runlevel and add famd."
einfo "This can be done by issueing the following commands :"
echo
einfo "rc-update del fam"
einfo "rc-update add famd default"
einfo "rm /etc/init.d/fam"
echo
einfo "The last command removes the old init script."
}
|