diff options
Diffstat (limited to 'net-misc/neon/neon-0.19.2.ebuild')
-rw-r--r-- | net-misc/neon/neon-0.19.2.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/net-misc/neon/neon-0.19.2.ebuild b/net-misc/neon/neon-0.19.2.ebuild new file mode 100644 index 000000000000..b19b3984c5f0 --- /dev/null +++ b/net-misc/neon/neon-0.19.2.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2001 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Karl Trygve Kalleberg <karltk@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/net-misc/neon/neon-0.19.2.ebuild,v 1.1 2002/03/03 09:26:45 gbevin Exp $ + +S=${WORKDIR}/${P} + +DESCRIPTION="HTTP and WebDAV client library" + +SRC_URI="http://www.webdav.org/${PN}/${P}.tar.gz" + +HOMEPAGE="http://www.webdav.org/neon" + +DEPEND="dev-libs/libxml2" + +src_compile() { + local myconf + + if [ "`use ssl`" ] ; then + myconf="$myconf --with-ssl" + fi + + ./configure --infodir=/usr/share/info --mandir=/usr/share/man --prefix=/usr --host=${CHOST} --enable-shared $myconf || die + + emake || die +} + +src_install () { + + make prefix=${D}/usr install || die + +} + |