blob: 5ba81a69878c955b66c11d097a2d552f5693d249 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/gamin/gamin-0.1.8.ebuild,v 1.12 2007/05/27 05:58:06 kumba Exp $
inherit autotools eutils libtool
DESCRIPTION="Library providing the FAM File Alteration Monitor API"
HOMEPAGE="http://www.gnome.org/~veillard/gamin/"
SRC_URI="http://www.gnome.org/~veillard/gamin/sources/${P}.tar.gz
kernel_FreeBSD? ( mirror://gentoo/${PN}-0.1.7-freebsd.patch.bz2 )"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 m68k mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd"
IUSE="debug kernel_FreeBSD kernel_linux"
RDEPEND=">=dev-libs/glib-2
!app-admin/fam"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
PROVIDE="virtual/fam"
src_unpack() {
unpack ${A}
cd ${S}
use kernel_FreeBSD && epatch "${DISTDIR}/${PN}-0.1.7-freebsd.patch.bz2"
# Do not remove
elibtoolize
}
src_compile() {
econf \
$(use_enable kernel_linux inotify) \
$(use_enable debug) \
$(use_enable debug debug-api) \
|| die "econf failed"
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc AUTHORS ChangeLog README TODO NEWS doc/*txt
dohtml doc/*
}
|