diff options
author | Martin Holzer <mholzer@gentoo.org> | 2004-06-01 19:28:45 +0000 |
---|---|---|
committer | Martin Holzer <mholzer@gentoo.org> | 2004-06-01 19:28:45 +0000 |
commit | 9934c4dc78d2f11e41996f2276bcac22e494f267 (patch) | |
tree | d87b0825e082024852652603a35a8204e3711f87 | |
parent | Ebuild QA fixes. (Manifest recommit) (diff) | |
download | gentoo-2-9934c4dc78d2f11e41996f2276bcac22e494f267.tar.gz gentoo-2-9934c4dc78d2f11e41996f2276bcac22e494f267.tar.bz2 gentoo-2-9934c4dc78d2f11e41996f2276bcac22e494f267.zip |
Version bumed. Closes 51166
-rw-r--r-- | net-www/davfs2/ChangeLog | 10 | ||||
-rw-r--r-- | net-www/davfs2/Manifest | 4 | ||||
-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, 45 insertions, 12 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..7a483e939d78 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 89f60919cbd057fea58c2a471bdb894b davfs2-0.2.1.ebuild 812 +MD5 89f60919cbd057fea58c2a471bdb894b davfs2-0.2.2.ebuild 812 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 |