blob: 43c8fe2020f36b40de5389d01e9e8ceb8c7a369c (
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
|
# 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-oss/fam-oss-2.6.9-r2.ebuild,v 1.3 2003/03/11 21:11:42 seemant Exp $
inherit libtool eutils
MY_P="${P/-oss/}"
S="${WORKDIR}/${MY_P}"
DESCRIPTION="FAM, the File Alteration Monitor"
SRC_URI="ftp://oss.sgi.com/projects/fam/download/${MY_P}.tar.gz"
HOMEPAGE="http://oss.sgi.com/projects/fam/"
KEYWORDS="~x86 ~ppc ~alpha ~sparc"
SLOT="0"
LICENSE="GPL-2 LGPL-2.1"
DEPEND=">=dev-lang/perl-5.6.1"
RDEPEND=">=net-nds/portmap-5b-r6"
src_unpack() {
unpack ${MY_P}.tar.gz
cd ${S}
epatch ${FILESDIR}/dnotify.patch.new
epatch ${FILESDIR}/fam-2.6.7-cleanup.patch
epatch ${FILESDIR}/${P}-gcc3.patch
# Now in dnotify patch.
# should fix the sigqueue overflow problems
# cd ${S}/fam
# mv Makefile.am Makefile.am.old
# sed -e "s:fam_LDADD =:fam_LDADD = -lrt -lpthread:" Makefile.am.old > Makefile.am
elibtoolize
# This one is old, and automake will install new one
rm -rf ${S}/missing
export WANT_AUTOCONF_2_5=1
export WANT_AUTOMAKE_1_5=1
aclocal
autoconf
# autoheader
automake --add-missing
}
src_install() {
cp fam/fam.conf fam/fam.conf.old
sed s:"local_only = false":"local_only = true":g fam/fam.conf.old >fam/fam.conf
make DESTDIR=${D} install || die
exeinto /etc/init.d
doexe ${FILESDIR}/fam
dodoc AUTHORS COPYING ChangeLog INSTALL NEWS TODO README*
}
|