Gentoo Archives: gentoo-commits

From: "Stefan Schweizer (genstef)" <genstef@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-fs/davfs2: ChangeLog davfs2-1.3.3.ebuild
Date: Tue, 20 Jan 2009 15:43:15
Message-Id: E1LPIky-0003Si-Rs@stork.gentoo.org
1 genstef 09/01/20 15:43:12
2
3 Modified: ChangeLog
4 Added: davfs2-1.3.3.ebuild
5 Log:
6 Version bump, bug 220359
7 (Portage version: 2.2_rc9/cvs/Linux 2.6.20-vs2.2.0-gentoo i686)
8
9 Revision Changes Path
10 1.40 net-fs/davfs2/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-fs/davfs2/ChangeLog?rev=1.40&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-fs/davfs2/ChangeLog?rev=1.40&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-fs/davfs2/ChangeLog?r1=1.39&r2=1.40
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-fs/davfs2/ChangeLog,v
19 retrieving revision 1.39
20 retrieving revision 1.40
21 diff -u -r1.39 -r1.40
22 --- ChangeLog 7 Sep 2008 13:48:30 -0000 1.39
23 +++ ChangeLog 20 Jan 2009 15:43:12 -0000 1.40
24 @@ -1,6 +1,11 @@
25 # ChangeLog for net-fs/davfs2
26 -# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-fs/davfs2/ChangeLog,v 1.39 2008/09/07 13:48:30 maekke Exp $
28 +# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/net-fs/davfs2/ChangeLog,v 1.40 2009/01/20 15:43:12 genstef Exp $
30 +
31 +*davfs2-1.3.3 (20 Jan 2009)
32 +
33 + 20 Jan 2009; Stefan Schweizer <genstef@g.o> +davfs2-1.3.3.ebuild:
34 + Version bump, bug 220359
35
36 07 Sep 2008; Markus Meier <maekke@g.o> davfs2-1.3.0.ebuild:
37 x86 stable, bug #236157
38
39
40
41 1.1 net-fs/davfs2/davfs2-1.3.3.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-fs/davfs2/davfs2-1.3.3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-fs/davfs2/davfs2-1.3.3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: davfs2-1.3.3.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/net-fs/davfs2/davfs2-1.3.3.ebuild,v 1.1 2009/01/20 15:43:12 genstef Exp $
51
52 inherit linux-mod eutils
53
54 DESCRIPTION="a Linux file system driver that allows you to mount a WebDAV server as a local disk drive. Davfs2 uses fuse (or coda) for kernel driver and neon for WebDAV interface"
55 SRC_URI="mirror://sourceforge/dav/${P}.tar.gz"
56 HOMEPAGE="http://dav.sourceforge.net"
57 LICENSE="GPL-2"
58 KEYWORDS="~amd64 ~ppc ~x86"
59 IUSE="ssl debug socks5"
60 RESTRICT="test"
61
62 DEPEND="ssl? ( >=dev-libs/openssl-0.9.6 )
63 socks5? ( >=net-proxy/dante-1.1.13 )
64 dev-libs/libxml2
65 net-misc/neon
66 sys-libs/zlib"
67 SLOT="0"
68
69 src_compile() {
70 local myconf
71
72 if use debug; then
73 myconf="--with-debug"
74 fi
75
76 econf \
77 $(use_with ssl) \
78 $(use_with socks5 socks) \
79 --enable-largefile \
80 ${myconf} || die "econf failed"
81 emake || die "emake failed"
82 }
83
84 src_install() {
85 emake DESTDIR="${D}" install || die "make install failed"
86 dodoc AUTHORS BUGS ChangeLog FAQ INSTALL.davfs2 NEWS README \
87 README.translators THANKS TODO
88
89 # remove wrong locations created by install
90 rm -r "${D}/usr/share/doc/davfs2"
91 rm -r "${D}/usr/share/davfs2"
92
93 dodir /var/run/mount.davfs
94 keepdir /var/run/mount.davfs
95 fowners root:users /var/run/mount.davfs
96 fperms 1774 /var/run/mount.davfs
97
98 # ignore nobody's home
99 cat>>"${D}/etc/davfs2/davfs2.conf"<<EOF
100
101 # nobody is a system account in Gentoo
102 ignore_home nobody
103 EOF
104 }