blob: fe8cd1a73b57f39c9062f98d316c17cb9320727f (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/net-www/davfs2/davfs2-0.2.1.ebuild,v 1.1 2003/04/17 21:46:39 sethbc Exp $
DESCRIPTION="a Linux file system driver that allows you to mount a WebDAV server as a local disk drive. Davfs2 uses Coda for kernel driver and neon for WebDAV interface. "
SRC_URI="mirror://sourceforge/sourceforge/dav/${P}.tar.gz"
HOMEPAGE="http://dav.sourceforge.net"
KEYWORDS="x86"
LICENSE="GPL-2"
DEPEND=""
SLOT="0"
src_compile() {
econf
emake
}
src_install() {
einstall
}
pkg_postinst() {
einfo "Remember you have to have coda compiled in to your kernel"
einfo "In order to use Davfs2"
}
|