Gentoo Archives: gentoo-commits

From: "Matsuu Takuto (matsuu)" <matsuu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-fs/clamfs: ChangeLog metadata.xml clamfs-1.0.1.ebuild
Date: Fri, 08 Jan 2010 16:29:30
Message-Id: E1NTHiI-0007s7-Q9@stork.gentoo.org
1 matsuu 10/01/08 16:29:26
2
3 Added: ChangeLog metadata.xml clamfs-1.0.1.ebuild
4 Log:
5 Initial import, bug #259863.
6 (Portage version: 2.1.7.16/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 sys-fs/clamfs/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/clamfs/ChangeLog?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/clamfs/ChangeLog?rev=1.1&content-type=text/plain
13
14 Index: ChangeLog
15 ===================================================================
16 # ChangeLog for sys-fs/clamfs
17 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
18 # $Header: /var/cvsroot/gentoo-x86/sys-fs/clamfs/ChangeLog,v 1.1 2010/01/08 16:29:26 matsuu Exp $
19
20 *clamfs-1.0.1 (08 Jan 2010)
21
22 08 Jan 2010; MATSUU Takuto <matsuu@g.o> +clamfs-1.0.1.ebuild,
23 +files/clamfs-1.0.1-gentoo.patch, +files/clamfs.confd,
24 +files/clamfs.initd, +metadata.xml:
25 Initial import, bug #259863.
26
27
28
29
30 1.1 sys-fs/clamfs/metadata.xml
31
32 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/clamfs/metadata.xml?rev=1.1&view=markup
33 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/clamfs/metadata.xml?rev=1.1&content-type=text/plain
34
35 Index: metadata.xml
36 ===================================================================
37 <?xml version="1.0" encoding="UTF-8"?>
38 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
39 <pkgmetadata>
40 <herd>no-herd</herd>
41 <maintainer>
42 <email>matsuu@g.o</email>
43 </maintainer>
44 <longdescription lang="en">
45 ClamFS is a FUSE-based user-space file system for Linux with on-access
46 anti-virus file scanning through clamd daemon (a file scanning service
47 developed by ClamAV Project).
48 </longdescription>
49 </pkgmetadata>
50
51
52
53
54 1.1 sys-fs/clamfs/clamfs-1.0.1.ebuild
55
56 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/clamfs/clamfs-1.0.1.ebuild?rev=1.1&view=markup
57 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/clamfs/clamfs-1.0.1.ebuild?rev=1.1&content-type=text/plain
58
59 Index: clamfs-1.0.1.ebuild
60 ===================================================================
61 # Copyright 1999-2010 Gentoo Foundation
62 # Distributed under the terms of the GNU General Public License v2
63 # $Header: /var/cvsroot/gentoo-x86/sys-fs/clamfs/clamfs-1.0.1.ebuild,v 1.1 2010/01/08 16:29:26 matsuu Exp $
64
65 EAPI="2"
66 inherit eutils linux-info
67
68 DESCRIPTION="A FUSE-based user-space file system with on-access anti-virus file scanning"
69 HOMEPAGE="http://clamfs.sourceforge.net/"
70 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
71
72 LICENSE="GPL-2"
73 SLOT="0"
74 KEYWORDS="~amd64 ~x86"
75 IUSE=""
76
77 DEPEND=">=dev-libs/boost-1.33
78 sys-fs/fuse
79 dev-cpp/commoncpp2
80 dev-libs/rlog
81 dev-libs/poco"
82 RDEPEND="${DEPEND}
83 app-antivirus/clamav"
84
85 CONFIG_CHECK="~FUSE_FS"
86
87 src_prepare() {
88 epatch "${FILESDIR}/${P}-gentoo.patch"
89 }
90
91 src_install() {
92 emake install DESTDIR="${D}" || die "emake install failed"
93
94 insinto /etc/clamfs
95 doins doc/clamfs.xml || die
96
97 newinitd "${FILESDIR}/${PN}.initd" ${PN} || die
98 newconfd "${FILESDIR}/${PN}.confd" ${PN} || die
99
100 dodoc AUTHORS ChangeLog NEWS README TODO || die
101 }