diff options
author | 2009-11-22 21:46:13 +0000 | |
---|---|---|
committer | 2009-11-22 21:46:13 +0000 | |
commit | 6bcbba9b285efd3b1d76ea816efa4ac72e1fc35c (patch) | |
tree | ed26647962bd52a5d20be25fade10d489f98f9fa /sys-fs/clamfs/clamfs-1.0.0.ebuild | |
parent | net-misc/uanytun: Initial commit. New Ebuild for bug 294103. (diff) | |
download | sunrise-6bcbba9b285efd3b1d76ea816efa4ac72e1fc35c.tar.gz sunrise-6bcbba9b285efd3b1d76ea816efa4ac72e1fc35c.tar.bz2 sunrise-6bcbba9b285efd3b1d76ea816efa4ac72e1fc35c.zip |
sys-fs/clamfs: Initial commit, bug #259863. Thanks to Ishan Arora for proposal of ebuild.
svn path=/sunrise/; revision=9582
Diffstat (limited to 'sys-fs/clamfs/clamfs-1.0.0.ebuild')
-rw-r--r-- | sys-fs/clamfs/clamfs-1.0.0.ebuild | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/sys-fs/clamfs/clamfs-1.0.0.ebuild b/sys-fs/clamfs/clamfs-1.0.0.ebuild new file mode 100644 index 000000000..0598d54a1 --- /dev/null +++ b/sys-fs/clamfs/clamfs-1.0.0.ebuild @@ -0,0 +1,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" +} |