blob: 0598d54a11dafe9b30573b85a6be9f9357399433 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit eutils
DESCRIPTION="A FUSE filesystem for Linux with on-access file scanning through clamd daemon"
HOMEPAGE="http://clamfs.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="sys-fs/fuse
dev-cpp/commoncpp2
dev-libs/rlog
dev-libs/poco"
RDEPEND="${RDEPEND}"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${P}-invalid_conversion.patch"
}
src_install() {
emake install DESTDIR="${D}" || die "make install failed"
dodoc AUTHORS ChangeLog README || die "dodoc failed"
insinto /etc/${PN}
newins doc/clamfs.xml clamfs.xml.example || die "newins failed"
}
|