summaryrefslogtreecommitdiff
path: root/net-fs
diff options
context:
space:
mode:
authorStefan Schweizer <genstef@gentoo.org>2005-07-11 15:44:31 +0000
committerStefan Schweizer <genstef@gentoo.org>2005-07-11 15:44:31 +0000
commit71059c6da0412d0fb5ce8585806277c06912c47e (patch)
treeed2d0738bdc3746a976e7c068fa6b6a3c687e2f9 /net-fs
parentUpdate Hardened-PHP digest. (diff)
downloadgentoo-2-71059c6da0412d0fb5ce8585806277c06912c47e.tar.gz
gentoo-2-71059c6da0412d0fb5ce8585806277c06912c47e.tar.bz2
gentoo-2-71059c6da0412d0fb5ce8585806277c06912c47e.zip
Fixing bug 96901 by making the patch conditional (only 2.4 kernel) thanks to Michal Januszewski <spock@gentoo.org> and Stuart Grimshaw <stuart.gentoo@smgsystems.co.uk>
(Portage version: 1.589-cvs)
Diffstat (limited to 'net-fs')
-rw-r--r--net-fs/davfs2/ChangeLog7
-rw-r--r--net-fs/davfs2/davfs2-0.2.3-r1.ebuild7
2 files changed, 10 insertions, 4 deletions
diff --git a/net-fs/davfs2/ChangeLog b/net-fs/davfs2/ChangeLog
index 11e43585888e..411474ede04e 100644
--- a/net-fs/davfs2/ChangeLog
+++ b/net-fs/davfs2/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for net-fs/davfs2
# Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-fs/davfs2/ChangeLog,v 1.10 2005/05/17 18:24:36 genstef Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-fs/davfs2/ChangeLog,v 1.11 2005/07/11 15:44:31 genstef Exp $
+
+ 11 Jul 2005; Stefan Schweizer <genstef@gentoo.org> davfs2-0.2.3-r1.ebuild:
+ Fixing bug 96901 by making the patch conditional (only 2.4 kernel) thanks to
+ Michal Januszewski <spock@gentoo.org> and Stuart Grimshaw
+ <stuart.gentoo@smgsystems.co.uk>
17 May 2005; Stefan Schweizer <genstef@gentoo.org> davfs2-0.2.3-r1.ebuild:
More verbose message thanks to R. May <Tinitus1@onlinehome.de> in bug 92876
diff --git a/net-fs/davfs2/davfs2-0.2.3-r1.ebuild b/net-fs/davfs2/davfs2-0.2.3-r1.ebuild
index c2f376347c06..4d81e2338e4f 100644
--- a/net-fs/davfs2/davfs2-0.2.3-r1.ebuild
+++ b/net-fs/davfs2/davfs2-0.2.3-r1.ebuild
@@ -1,6 +1,6 @@
# 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.3-r1.ebuild,v 1.3 2005/05/17 18:24:36 genstef Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-fs/davfs2/davfs2-0.2.3-r1.ebuild,v 1.4 2005/07/11 15:44:31 genstef Exp $
inherit linux-info eutils
@@ -23,7 +23,7 @@ CODA_FS_ERROR="${P} requires kernel support for Coda to be found in filesystems,
src_unpack() {
unpack ${A}
cd ${S}
- epatch ${FILESDIR}/${PN}.nokernelsrc.patch
+ kernel_is 2 4 && epatch ${FILESDIR}/${PN}.nokernelsrc.patch
}
src_compile() {
@@ -33,7 +33,8 @@ src_compile() {
myconf="--with-debug"
fi
- econf $(use_with ssl) \
+ econf --with-kernel-src=${KV_DIR} \
+ $(use_with ssl) \
${myconf} || die "econf failed"
emake || die "emake failed"
}