summaryrefslogtreecommitdiffstats
path: root/abs/core-testing/fam/PKGBUILD
blob: e7f5e41372ffc5689da86c3e6d7c0a572e2a0b7b (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
# $Id: PKGBUILD 15741 2008-10-18 01:59:29Z allan $
# Maintainer: Allan McRae <allan@archlinux.org>
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
pkgname=fam
pkgver=2.7.0
pkgrel=11
pkgdesc="File Alteration Monitor - used by KDE, GNOME and others"
arch=('i686' 'x86_64')
license=('LGPL' 'GPL')
depends=('portmap')
url="http://oss.sgi.com/projects/fam/"
backup=(etc/fam/fam.conf)
options=('!makeflags') # Don't !libtool
source=(ftp://oss.sgi.com/projects/fam/download/stable/${pkgname}-${pkgver}.tar.gz
	fam-2.7.0-dnotify.patch
	fam-2.7.0-largefiles.patch
	fam-2.7.0-noc++.patch
	fam-2.7.0-gcc43.patch
	include_fam_h.patch
	fam)
md5sums=('1bf3ae6c0c58d3201afc97c6a4834e39'
         '073d1763318344635ea316293390205c'
         '47b41e0b0498793af004696a096d7da1'
         '0274cd113d3dcb015653b5606c7714ac'
         '13c14778038aa9601a27498448e855e0'
         '2638b8ffacb9f03b6e438e08ea7b290a'
         '45b648907ba1c7edec17fb544f1f4a13')

build() {
  cd ${srcdir}/${pkgname}-${pkgver}
  patch -Np1 -i ${srcdir}/fam-2.7.0-dnotify.patch || return 1
  patch -Np1 -i ${srcdir}/fam-2.7.0-largefiles.patch || return 1
  patch -Np0 -i ${srcdir}/include_fam_h.patch || return 1
  patch -Np1 -i ${srcdir}/fam-2.7.0-noc++.patch || return 1
  patch -Np1 -i ${srcdir}/fam-2.7.0-gcc43.patch || return 1

  chmod 755 configure || return 1

  autoheader || return 1
  aclocal || return 1
  automake -a -c || return 1
  autoconf || return 1
  libtoolize --copy --force || return 1

  ./configure --prefix=/usr --sysconfdir=/etc/fam
  make || return 1
  make DESTDIR=${pkgdir} install
  install -D -m755 ../fam ${pkgdir}/etc/rc.d/fam
}