blob: d3470fd60eed73d925f9fa2087bc220e1543ede0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/cadaver/cadaver-0.22.2.ebuild,v 1.5 2004/09/16 03:34:42 tgall Exp $
DESCRIPTION="a command-line WebDAV client."
HOMEPAGE="http://www.webdav.org/cadaver"
SRC_URI="http://www.webdav.org/cadaver/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~ppc ~sparc ppc64"
IUSE="ssl"
DEPEND="virtual/libc"
src_compile() {
myconf=" --host=${CHOST} --prefix=/usr --infodir=/usr/share/info --mandir=/usr/share/man"
use ssl && myconf="${myconf} --with-ssl"
./configure ${myconf} || die "./configure failed"
emake || die
}
src_install () {
make \
prefix=${D}/usr \
mandir=${D}/usr/share/man \
infodir=${D}/usr/share/info \
install || die
dodoc BUGS ChangeLog COPYING FAQ INSTALL NEWS README THANKS TODO
}
|