diff options
author | 2004-06-01 19:28:45 +0000 | |
---|---|---|
committer | 2004-06-01 19:28:45 +0000 | |
commit | f8700ce99f06b90dc88ab80bdceeb0aba4e5a69e (patch) | |
tree | b2a145cfb1925185d74aa821357ff8e7f47f10dd /net-www | |
parent | Ebuild QA fixes. (diff) | |
download | historical-f8700ce99f06b90dc88ab80bdceeb0aba4e5a69e.tar.gz historical-f8700ce99f06b90dc88ab80bdceeb0aba4e5a69e.tar.bz2 historical-f8700ce99f06b90dc88ab80bdceeb0aba4e5a69e.zip |
Version bumed. Closes 51166
Diffstat (limited to 'net-www')
-rw-r--r-- | net-www/davfs2/ChangeLog | 10 | ||||
-rw-r--r-- | net-www/davfs2/Manifest | 6 | ||||
-rw-r--r-- | net-www/davfs2/davfs2-0.2.1.ebuild | 12 | ||||
-rw-r--r-- | net-www/davfs2/davfs2-0.2.2.ebuild | 30 | ||||
-rw-r--r-- | net-www/davfs2/files/digest-davfs2-0.2.2 | 1 |
5 files changed, 46 insertions, 13 deletions
diff --git a/net-www/davfs2/ChangeLog b/net-www/davfs2/ChangeLog index 1b1d7b97b4d6..39b4d7ba1041 100644 --- a/net-www/davfs2/ChangeLog +++ b/net-www/davfs2/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-www/davfs2 -# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-www/davfs2/ChangeLog,v 1.2 2003/10/10 17:24:36 mholzer Exp $ +# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-www/davfs2/ChangeLog,v 1.3 2004/06/01 19:28:45 mholzer Exp $ + +*davfs2-0.2.2 (01 Jun 2004) + + 01 Jun 2004; Martin Holzer <mholzer@gentoo.org> davfs2-0.2.1.ebuild, + davfs2-0.2.2.ebuild: + Version bumed. Closes 51166 11 Oct 2003; Martin Holzer <mholzer@gentoo.org> davfs2-0.2.1.ebuild: Added ssl with IUSE. Closes #25165. diff --git a/net-www/davfs2/Manifest b/net-www/davfs2/Manifest index 90a08d2f0ddc..5a24b83a4fe1 100644 --- a/net-www/davfs2/Manifest +++ b/net-www/davfs2/Manifest @@ -1,3 +1,5 @@ -MD5 8f5d817913858c8288215d339d120cfa ChangeLog 469 -MD5 c234fcef4eb283de6d932fe21874a295 davfs2-0.2.1.ebuild 907 +MD5 f1e9de81fd98356daba9d47f5d6b5db2 ChangeLog 623 +MD5 06696d773bc6e16d45c1fc47e812f057 davfs2-0.2.1.ebuild 812 +MD5 cc748cb9cd8c6e163470f2629a2b74d0 davfs2-0.2.2.ebuild 811 MD5 222bb7c9a0ba144f42b188211d562cd3 files/digest-davfs2-0.2.1 64 +MD5 340445f0521e173e52743ac4f2889f56 files/digest-davfs2-0.2.2 64 diff --git a/net-www/davfs2/davfs2-0.2.1.ebuild b/net-www/davfs2/davfs2-0.2.1.ebuild index ae57485a816b..4c02e2cb1944 100644 --- a/net-www/davfs2/davfs2-0.2.1.ebuild +++ b/net-www/davfs2/davfs2-0.2.1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. +# Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-www/davfs2/davfs2-0.2.1.ebuild,v 1.4 2003/10/10 17:26:00 mholzer Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-www/davfs2/davfs2-0.2.1.ebuild,v 1.5 2004/06/01 19:28:45 mholzer Exp $ IUSE="ssl" @@ -14,13 +14,7 @@ DEPEND="ssl? ( >=dev-libs/openssl-0.9.6 )" SLOT="0" src_compile() { - local myconf - - use ssl \ - && myconf="${myconf} --with-ssl" \ - || myconf="${myconf} --without-ssl" - - econf ${myconf} || die + econf `use_enable ssl` || die emake || die } diff --git a/net-www/davfs2/davfs2-0.2.2.ebuild b/net-www/davfs2/davfs2-0.2.2.ebuild new file mode 100644 index 000000000000..e8a58da0b280 --- /dev/null +++ b/net-www/davfs2/davfs2-0.2.2.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-www/davfs2/davfs2-0.2.2.ebuild,v 1.1 2004/06/01 19:28:45 mholzer 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 "" +} diff --git a/net-www/davfs2/files/digest-davfs2-0.2.2 b/net-www/davfs2/files/digest-davfs2-0.2.2 new file mode 100644 index 000000000000..d87d8db05657 --- /dev/null +++ b/net-www/davfs2/files/digest-davfs2-0.2.2 @@ -0,0 +1 @@ +MD5 93deddc76264c80da5f1b0c1e63875ba davfs2-0.2.2.tar.gz 274337 |