diff options
author | Simon Stelling <blubb@gentoo.org> | 2005-07-12 15:32:57 +0000 |
---|---|---|
committer | Simon Stelling <blubb@gentoo.org> | 2005-07-12 15:32:57 +0000 |
commit | 51cfed92798ef3dce21f168e1292ee1b5bdfd888 (patch) | |
tree | 87e0b747561f8d3ab3c6314cfcc9e8ce297fb4d8 /net-fs/davfs2 | |
parent | Version bumped to fix building on ia64. (diff) | |
download | historical-51cfed92798ef3dce21f168e1292ee1b5bdfd888.tar.gz historical-51cfed92798ef3dce21f168e1292ee1b5bdfd888.tar.bz2 historical-51cfed92798ef3dce21f168e1292ee1b5bdfd888.zip |
fix bug 81507 and keyword ~amd64
Package-Manager: portage-2.0.51.22-r1
Diffstat (limited to 'net-fs/davfs2')
-rw-r--r-- | net-fs/davfs2/ChangeLog | 6 | ||||
-rw-r--r-- | net-fs/davfs2/Manifest | 7 | ||||
-rw-r--r-- | net-fs/davfs2/davfs2-0.2.3-r1.ebuild | 6 | ||||
-rw-r--r-- | net-fs/davfs2/files/include_compiler.patch | 20 |
4 files changed, 33 insertions, 6 deletions
diff --git a/net-fs/davfs2/ChangeLog b/net-fs/davfs2/ChangeLog index 411474ede04e..441afc84a769 100644 --- a/net-fs/davfs2/ChangeLog +++ b/net-fs/davfs2/ChangeLog @@ -1,6 +1,10 @@ # 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.11 2005/07/11 15:44:31 genstef Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-fs/davfs2/ChangeLog,v 1.12 2005/07/12 15:32:57 blubb Exp $ + + 12 Jul 2005; Simon Stelling <blubb@gentoo.org> + +files/include_compiler.patch, davfs2-0.2.3-r1.ebuild: + fix bug 81507 and keyword ~amd64 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 diff --git a/net-fs/davfs2/Manifest b/net-fs/davfs2/Manifest index de278843073b..279ec3747efc 100644 --- a/net-fs/davfs2/Manifest +++ b/net-fs/davfs2/Manifest @@ -1,5 +1,6 @@ -MD5 a2292dd3ead6fe460e3827297ee5ae7a davfs2-0.2.3-r1.ebuild 1324 -MD5 d408986b6b79fe574a3f2f191216a608 ChangeLog 2708 +MD5 fa767ab362b2a3a10470a5e9af1497a9 ChangeLog 2848 +MD5 ba90c82e723ac462f84b9164db109c13 davfs2-0.2.3-r1.ebuild 1380 MD5 90d54af17451a3725b7244f94d7ac81a metadata.xml 264 -MD5 f0156f27602800056efdeb249b7ae579 files/digest-davfs2-0.2.3-r1 64 MD5 834f6651a067dc38dfc2093d0bf641a3 files/davfs2.nokernelsrc.patch 3911 +MD5 f0156f27602800056efdeb249b7ae579 files/digest-davfs2-0.2.3-r1 64 +MD5 a92df0afe8f5e52b12541bb87e0ac8f6 files/include_compiler.patch 655 diff --git a/net-fs/davfs2/davfs2-0.2.3-r1.ebuild b/net-fs/davfs2/davfs2-0.2.3-r1.ebuild index 4d81e2338e4f..67cbe7439db7 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.4 2005/07/11 15:44:31 genstef Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-fs/davfs2/davfs2-0.2.3-r1.ebuild,v 1.5 2005/07/12 15:32:57 blubb Exp $ inherit linux-info eutils @@ -9,7 +9,7 @@ IUSE="ssl debug" 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 ~ppc" +KEYWORDS="~amd64 ~ppc x86" LICENSE="GPL-2" DEPEND="ssl? ( >=dev-libs/openssl-0.9.6 ) @@ -24,6 +24,8 @@ src_unpack() { unpack ${A} cd ${S} kernel_is 2 4 && epatch ${FILESDIR}/${PN}.nokernelsrc.patch + + epatch ${FILESDIR}/include_compiler.patch #81507 } src_compile() { diff --git a/net-fs/davfs2/files/include_compiler.patch b/net-fs/davfs2/files/include_compiler.patch new file mode 100644 index 000000000000..177da3b88931 --- /dev/null +++ b/net-fs/davfs2/files/include_compiler.patch @@ -0,0 +1,20 @@ +--- src/davfsd.c.orig 2004-11-02 06:45:26.000000000 +0100 ++++ src/davfsd.c 2005-02-10 16:57:36.895959566 +0100 +@@ -38,6 +38,7 @@ + /* Linux Kernel Source */ + /* avoid inclusion of kernel time.h, since it conflicts with userland time.h */ + #define _LINUX_TIME_H ++#include <linux/compiler.h> + #include <linux/coda.h> + + /* Neon */ +--- src/mount.c.orig 2004-11-02 06:45:26.000000000 +0100 ++++ src/mount.c 2005-02-10 16:58:22.818690708 +0100 +@@ -35,6 +35,7 @@ + /* Linux coda head file */ + /* avoid inclusion of kernel time.h, since it conflicts with userland time.h */ + #define _LINUX_TIME_H ++#include <linux/compiler.h> + #include <linux/coda.h> + + /* Neon */ |