blob: 6578a50ca1abc2aab63302fc6be842006b59adb4 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/cadaver/cadaver-0.22.5.ebuild,v 1.2 2008/02/03 07:48:41 opfer Exp $
DESCRIPTION="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="~amd64 ~ppc ~ppc64 ~sparc x86"
IUSE="nls"
DEPEND="virtual/libc
>=net-misc/neon-0.26.3"
pkg_setup() {
ewarn "System installed neon is now utilized -- if you require SSL support"
ewarn "make sure to turn it on in net-misc/neon"
}
src_compile() {
myconf="--with-libs=/usr $(use_enable nls)"
econf $myconf || die "econf failed"
emake || die
}
src_install () {
einstall || die
dodoc BUGS ChangeLog FAQ NEWS README THANKS TODO
}
|