diff options
author | Stefan Schweizer <genstef@gentoo.org> | 2005-08-20 20:38:02 +0000 |
---|---|---|
committer | Stefan Schweizer <genstef@gentoo.org> | 2005-08-20 20:38:02 +0000 |
commit | 4bec7730478bdafb6f6c7fe0a93c3cbba5445dd4 (patch) | |
tree | 1382449b7a69e12bae312ada29acee639f30672e /net-fs/davfs2/davfs2-0.2.4-r1.ebuild | |
parent | Added ~sparc keyword. (diff) | |
download | gentoo-2-4bec7730478bdafb6f6c7fe0a93c3cbba5445dd4.tar.gz gentoo-2-4bec7730478bdafb6f6c7fe0a93c3cbba5445dd4.tar.bz2 gentoo-2-4bec7730478bdafb6f6c7fe0a93c3cbba5445dd4.zip |
Fix some installation problems thanks to Alexander Skwar <askwar@digitalprojects.com> in bug 102522 and Michael Mauch <michael.mauch@gmx.de> in bug 102440
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'net-fs/davfs2/davfs2-0.2.4-r1.ebuild')
-rw-r--r-- | net-fs/davfs2/davfs2-0.2.4-r1.ebuild | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/net-fs/davfs2/davfs2-0.2.4-r1.ebuild b/net-fs/davfs2/davfs2-0.2.4-r1.ebuild new file mode 100644 index 000000000000..2392334c3d04 --- /dev/null +++ b/net-fs/davfs2/davfs2-0.2.4-r1.ebuild @@ -0,0 +1,77 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-fs/davfs2/davfs2-0.2.4-r1.ebuild,v 1.1 2005/08/20 20:38:02 genstef Exp $ + +inherit linux-info eutils + +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" +LICENSE="GPL-2" +KEYWORDS="~amd64 ~ppc x86" +IUSE="ssl debug socks5" + +DEPEND="ssl? ( >=dev-libs/openssl-0.9.6 ) + socks5? ( >=net-proxy/dante-1.1.13 ) + dev-libs/libxml2 + net-misc/neon + sys-libs/zlib" +SLOT="0" + +CONFIG_CHECK="CODA_FS" +CODA_FS_ERROR="${P} requires kernel support for Coda to be found in filesystems, network filesystems" + +src_unpack() { + unpack ${A} + cd ${S} + epatch ${FILESDIR}/include-compiler.patch #81507 +} + +src_compile() { + local myconf + + if use debug; then + myconf="--with-debug" + fi + if kernel_is 2 4; then + myconf="${myconf} --with-kernel-src=${KV_DIR}" + else + myconf="${myconf} --without-kernel-src" + fi + + econf \ + $(use_with ssl) \ + $(use_with socks5 socks) \ + ${myconf} || die "econf failed" + emake || die "emake failed" +} + +src_install() { + dodir /usr/sbin + einstall || die "einstall failed" + dodoc BUGS ChangeLog davfs2.conf.template FAQ NEWS README secrets.template THANKS TODO + + #fix einstalled files in wrong places + cd ${D}/usr/share + rm COPYING ChangeLog davfs2.conf.template FAQ NEWS README secrets.template THANKS TODO INSTALL + dodir /usr/share/man/man8 + mv ${D}/usr/share/man/mount.davfs.8.gz ${D}/usr/share/man/man8 + + dodir /var/run/mount.davfs + keepdir /var/run/mount.davfs + fowners root:users /var/run/mount.davfs + fperms 1774 /var/run/mount.davfs + + dodir /sbin + dosym /usr/sbin/mount.davfs /sbin/mount.davfs + + dodir /etc/modules.d + cat >${D}/etc/modules.d/davfs2 <<EOF +alias char-major-67 coda +alias /dev/davfs* coda +EOF +} + +pkg_postinst() { + update-modules +} |