diff options
author | Martin Holzer <mholzer@gentoo.org> | 2003-10-10 17:24:41 +0000 |
---|---|---|
committer | Martin Holzer <mholzer@gentoo.org> | 2003-10-10 17:24:41 +0000 |
commit | 5b4060d7f743a066eea1a7b9c3e0c2178c84011f (patch) | |
tree | 41b58f55e0c9ecfcff50c26516a04999f7fc664a /net-www | |
parent | Version bumped. Closes #30750. (diff) | |
download | gentoo-2-5b4060d7f743a066eea1a7b9c3e0c2178c84011f.tar.gz gentoo-2-5b4060d7f743a066eea1a7b9c3e0c2178c84011f.tar.bz2 gentoo-2-5b4060d7f743a066eea1a7b9c3e0c2178c84011f.zip |
Added ssl with IUSE. Closes #25165.
Diffstat (limited to 'net-www')
-rw-r--r-- | net-www/davfs2/Manifest | 4 | ||||
-rw-r--r-- | net-www/davfs2/davfs2-0.2.1.ebuild | 18 |
2 files changed, 15 insertions, 7 deletions
diff --git a/net-www/davfs2/Manifest b/net-www/davfs2/Manifest index 3620d64c005e..43c4f0aabd21 100644 --- a/net-www/davfs2/Manifest +++ b/net-www/davfs2/Manifest @@ -1,3 +1,3 @@ -MD5 094e9529916e7bf4eb9f984fc08fe4d3 ChangeLog 358 -MD5 96265c675f3bbd4c84e2bedc158bffcf davfs2-0.2.1.ebuild 729 +MD5 8f5d817913858c8288215d339d120cfa ChangeLog 469 +MD5 74892e038c88b96795f2d692a078c7f0 davfs2-0.2.1.ebuild 887 MD5 222bb7c9a0ba144f42b188211d562cd3 files/digest-davfs2-0.2.1 64 diff --git a/net-www/davfs2/davfs2-0.2.1.ebuild b/net-www/davfs2/davfs2-0.2.1.ebuild index d026a72419d1..9a3f7b2d85ed 100644 --- a/net-www/davfs2/davfs2-0.2.1.ebuild +++ b/net-www/davfs2/davfs2-0.2.1.ebuild @@ -1,19 +1,27 @@ # Copyright 1999-2003 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.2 2003/09/06 02:05:10 msterret Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-www/davfs2/davfs2-0.2.1.ebuild,v 1.3 2003/10/10 17:24:36 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/sourceforge/dav/${P}.tar.gz" +SRC_URI="mirror://sourceforge/dav/${P}.tar.gz" HOMEPAGE="http://dav.sourceforge.net" KEYWORDS="x86" LICENSE="GPL-2" -DEPEND="" +DEPEND="ssl? ( >=dev-libs/openssl-0.9.6 )" SLOT="0" src_compile() { - econf - emake + local myconf + + use ssl \ + && myconf="${myconf} --with-ssl" \ + || myconf="${myconf} --without-ssl" + + econf ${myconf} || die + emake || die } src_install() { |