summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlain Penders <alain@gentoo.org>2003-03-15 23:47:30 +0000
committerAlain Penders <alain@gentoo.org>2003-03-15 23:47:30 +0000
commit3c8356e3461fa39afa86f27408622caba0fe0dc5 (patch)
tree811352da79f915f36c7470a497791bb3f57a4c3a /net-misc/neon
parentbump (diff)
downloadgentoo-2-3c8356e3461fa39afa86f27408622caba0fe0dc5.tar.gz
gentoo-2-3c8356e3461fa39afa86f27408622caba0fe0dc5.tar.bz2
gentoo-2-3c8356e3461fa39afa86f27408622caba0fe0dc5.zip
Neon 0.23.8
Diffstat (limited to 'net-misc/neon')
-rw-r--r--net-misc/neon/ChangeLog6
-rw-r--r--net-misc/neon/files/digest-neon-0.23.81
-rw-r--r--net-misc/neon/neon-0.23.8.ebuild30
3 files changed, 36 insertions, 1 deletions
diff --git a/net-misc/neon/ChangeLog b/net-misc/neon/ChangeLog
index 5b9fe5e52284..fa3dd41c0208 100644
--- a/net-misc/neon/ChangeLog
+++ b/net-misc/neon/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-misc/neon
# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/neon/ChangeLog,v 1.14 2003/02/12 08:28:12 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/neon/ChangeLog,v 1.15 2003/03/15 23:47:30 alain Exp $
+
+*neon-0.23.8 (15 Mar 2003)
+
+ 15 Mar 2003; Alain Penders <alain@gentoo.org> neon-0.23.8.ebuild: Version bump, needed for subversion.
06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords
diff --git a/net-misc/neon/files/digest-neon-0.23.8 b/net-misc/neon/files/digest-neon-0.23.8
new file mode 100644
index 000000000000..fc01d397cfba
--- /dev/null
+++ b/net-misc/neon/files/digest-neon-0.23.8
@@ -0,0 +1 @@
+MD5 9edfde913b799474c1accae5aaca04f0 neon-0.23.8.tar.gz 516470
diff --git a/net-misc/neon/neon-0.23.8.ebuild b/net-misc/neon/neon-0.23.8.ebuild
new file mode 100644
index 000000000000..ae2d71b37f3d
--- /dev/null
+++ b/net-misc/neon/neon-0.23.8.ebuild
@@ -0,0 +1,30 @@
+# 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.23.8.ebuild,v 1.1 2003/03/15 23:47:30 alain 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 ~sparc "
+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/*
+}
+