diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-10-17 02:23:13 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-10-17 02:23:13 +0000 |
commit | 5121c8db3638472a6ba082acdf3a3641a4000e69 (patch) | |
tree | be1ce55d4769581e3cb97c7db9778b6351eeff67 /net-fs/davfs2 | |
parent | Clean up installation of html docs; drop old revision (diff) | |
download | gentoo-2-5121c8db3638472a6ba082acdf3a3641a4000e69.tar.gz gentoo-2-5121c8db3638472a6ba082acdf3a3641a4000e69.tar.bz2 gentoo-2-5121c8db3638472a6ba082acdf3a3641a4000e69.zip |
Fix building with >=net-misc/neon-0.29.0 (bug #285243). Delete unused USE flags.
(Portage version: 14615-svn/cvs/Linux x86_64)
Diffstat (limited to 'net-fs/davfs2')
-rw-r--r-- | net-fs/davfs2/ChangeLog | 9 | ||||
-rw-r--r-- | net-fs/davfs2/davfs2-1.3.3.ebuild | 35 |
2 files changed, 27 insertions, 17 deletions
diff --git a/net-fs/davfs2/ChangeLog b/net-fs/davfs2/ChangeLog index ab2e9090fb91..5b057b62eeaf 100644 --- a/net-fs/davfs2/ChangeLog +++ b/net-fs/davfs2/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-fs/davfs2 -# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-fs/davfs2/ChangeLog,v 1.41 2009/03/01 19:51:36 patrick Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-fs/davfs2/ChangeLog,v 1.42 2009/10/17 02:23:13 arfrever Exp $ + + 17 Oct 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> + davfs2-1.3.3.ebuild: + Fix building with >=net-misc/neon-0.29.0 (bug #285243). Delete unused + USE flags. 01 Mar 2009; Patrick Lauer <patrick@gentoo.org> +files/fortify_sources_fix.patch, davfs2-1.3.3.ebuild: diff --git a/net-fs/davfs2/davfs2-1.3.3.ebuild b/net-fs/davfs2/davfs2-1.3.3.ebuild index f2cb3ebb3673..37809dee9d20 100644 --- a/net-fs/davfs2/davfs2-1.3.3.ebuild +++ b/net-fs/davfs2/davfs2-1.3.3.ebuild @@ -1,30 +1,34 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-fs/davfs2/davfs2-1.3.3.ebuild,v 1.3 2009/03/05 16:05:33 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-fs/davfs2/davfs2-1.3.3.ebuild,v 1.4 2009/10/17 02:23:13 arfrever Exp $ -inherit linux-mod eutils +EAPI="2" + +inherit autotools eutils linux-mod DESCRIPTION="a Linux file system driver that allows you to mount a WebDAV server as a local disk drive. Davfs2 uses fuse (or coda) for kernel driver and neon for WebDAV interface" -SRC_URI="mirror://sourceforge/dav/${P}.tar.gz" HOMEPAGE="http://dav.sourceforge.net" +SRC_URI="mirror://sourceforge/dav/${P}.tar.gz" + LICENSE="GPL-2" +SLOT="0" KEYWORDS="~amd64 ~ppc ~x86" -IUSE="ssl debug socks5" +IUSE="debug" RESTRICT="test" -DEPEND="ssl? ( >=dev-libs/openssl-0.9.6 ) - socks5? ( >=net-proxy/dante-1.1.13 ) - dev-libs/libxml2 +DEPEND="dev-libs/libxml2 net-misc/neon sys-libs/zlib" -SLOT="0" -src_unpack() { - unpack ${A} - cd "${S}" +RDEPEND="${DEPEND}" + +src_prepare() { epatch "${FILESDIR}/fortify_sources_fix.patch" + + sed -e "s/^NE_REQUIRE_VERSIONS.*28/& 29 30/" -i configure.ac + eautoreconf } -src_compile() { +src_configure() { local myconf if use debug; then @@ -32,10 +36,11 @@ src_compile() { fi econf \ - $(use_with ssl) \ - $(use_with socks5 socks) \ --enable-largefile \ - ${myconf} || die "econf failed" + ${myconf} +} + +src_compile() { emake || die "emake failed" } |