diff options
-rw-r--r-- | net-misc/neon/Manifest | 5 | ||||
-rw-r--r-- | net-misc/neon/files/digest-neon-0.24.2 | 1 | ||||
-rw-r--r-- | net-misc/neon/metadata.xml | 14 | ||||
-rw-r--r-- | net-misc/neon/neon-0.24.2.ebuild | 29 |
4 files changed, 47 insertions, 2 deletions
diff --git a/net-misc/neon/Manifest b/net-misc/neon/Manifest index d7774e1a169e..16a8d8ed9ec7 100644 --- a/net-misc/neon/Manifest +++ b/net-misc/neon/Manifest @@ -1,7 +1,8 @@ -MD5 8300d2545923334e37c89e3a096bf204 ChangeLog 3267 -MD5 c45e42e42aae35cc4085a109de63cf13 neon-0.24.2.ebuild 760 +MD5 424ab0e5595f0ab37cfc136f6e16ef8b neon-0.24.2.ebuild 747 MD5 67a98d9baabff319fa704391b5c7ac9c neon-0.21.3.ebuild 760 MD5 c45e42e42aae35cc4085a109de63cf13 neon-0.24.0.ebuild 760 +MD5 2ae7200538068877dd6268e6a69a3c67 metadata.xml 635 +MD5 733c16584597f66c751dbbbff711ff65 ChangeLog 3423 MD5 43e30188962ff8624f617b55ff05324b neon-0.23.8.ebuild 762 MD5 956830e708f93ce570551560df22192b neon-0.23.9.ebuild 763 MD5 7ee2f46f386d816ceda871cbadc9d7af files/digest-neon-0.24.0 63 diff --git a/net-misc/neon/files/digest-neon-0.24.2 b/net-misc/neon/files/digest-neon-0.24.2 new file mode 100644 index 000000000000..425335a7eaba --- /dev/null +++ b/net-misc/neon/files/digest-neon-0.24.2 @@ -0,0 +1 @@ +MD5 170ee966d3217031347d878f614033cd neon-0.24.2.tar.gz 573449 diff --git a/net-misc/neon/metadata.xml b/net-misc/neon/metadata.xml new file mode 100644 index 000000000000..c734c7757b9a --- /dev/null +++ b/net-misc/neon/metadata.xml @@ -0,0 +1,14 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>no-herd</herd> +<maintainer> + <email>pauldv@gentoo.org</email> +<description>It is needed for subversion so I'll update it once in a while. You're welcome to take it over</description> +</maintainer> +<longdescription>neon is an HTTP and WebDAV client library for Unix +systems, with a C language API. It provides high-level interfaces to +HTTP/1.1 and WebDAV methods, and a low-level interface to HTTP +request/response handling, allowing new methods to be easily +implemented.</longdescription> +</pkgmetadata> diff --git a/net-misc/neon/neon-0.24.2.ebuild b/net-misc/neon/neon-0.24.2.ebuild new file mode 100644 index 000000000000..64d7aed3a59b --- /dev/null +++ b/net-misc/neon/neon-0.24.2.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/neon/neon-0.24.2.ebuild,v 1.1 2003/09/27 20:54:52 pauldv 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 + ssl? ( >=dev-libs/openssl-0.9.6f )" +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86" +IUSE="ssl" + +src_compile() { + local myc='--enable-shared' + + use ssl && myc="$myc --with-ssl" + use zlib && myc="$myc --with-zlib" || myc="$myc --without-zlib" + + econf $myc + emake +} + +src_install () { + einstall + dodoc AUTHORS BUGS ChangeLog NEWS README THANKS TODO doc/* +} |