diff options
Diffstat (limited to 'net-fs/davfs2/davfs2-0.2.1.ebuild')
-rw-r--r-- | net-fs/davfs2/davfs2-0.2.1.ebuild | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/net-fs/davfs2/davfs2-0.2.1.ebuild b/net-fs/davfs2/davfs2-0.2.1.ebuild new file mode 100644 index 000000000000..b2337d433f68 --- /dev/null +++ b/net-fs/davfs2/davfs2-0.2.1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-fs/davfs2/davfs2-0.2.1.ebuild,v 1.1 2004/08/15 17:55:12 stuart Exp $ + +IUSE="ssl" + +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/dav/${P}.tar.gz" +HOMEPAGE="http://dav.sourceforge.net" +KEYWORDS="x86" + +LICENSE="GPL-2" +DEPEND="ssl? ( >=dev-libs/openssl-0.9.6 )" +SLOT="0" + +src_compile() { + econf `use_enable ssl` || die + emake || die +} + +src_install() { + einstall +} + +pkg_postinst() { + einfo "" + einfo "Remember you have to have coda compiled in to your kernel" + einfo "in order to use davfs2" + einfo "" +} |