diff options
author | Geert Bevin <gbevin@gentoo.org> | 2002-03-03 09:26:45 +0000 |
---|---|---|
committer | Geert Bevin <gbevin@gentoo.org> | 2002-03-03 09:26:45 +0000 |
commit | b87597d452ffddb0a5b71b4285e38d10b93c6ffe (patch) | |
tree | 489c4ceb5cda1c2f7e302e341e8604b77487e899 /net-misc/neon | |
parent | new pam (diff) | |
download | gentoo-2-b87597d452ffddb0a5b71b4285e38d10b93c6ffe.tar.gz gentoo-2-b87597d452ffddb0a5b71b4285e38d10b93c6ffe.tar.bz2 gentoo-2-b87597d452ffddb0a5b71b4285e38d10b93c6ffe.zip |
version upgrade
Diffstat (limited to 'net-misc/neon')
-rw-r--r-- | net-misc/neon/ChangeLog | 9 | ||||
-rw-r--r-- | net-misc/neon/files/digest-neon-0.19.2 | 1 | ||||
-rw-r--r-- | net-misc/neon/neon-0.19.2.ebuild | 33 |
3 files changed, 42 insertions, 1 deletions
diff --git a/net-misc/neon/ChangeLog b/net-misc/neon/ChangeLog index afc5afca7bc7..9264d81576ec 100644 --- a/net-misc/neon/ChangeLog +++ b/net-misc/neon/ChangeLog @@ -1,7 +1,14 @@ # ChangeLog for net-misc/neon # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/net-misc/neon/ChangeLog,v 1.2 2002/02/08 01:32:20 gbevin Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/neon/ChangeLog,v 1.3 2002/03/03 09:26:45 gbevin Exp $ +*neon-0.19.2 (26 Feb 2002) + + 26 Feb 2002; G.Bevin <gbevin@gentoo.org> neon-0.19.2.ebuild, + files/digest-neon-0.19.2 : + + upgraded version to latest release + *neon-0.18.5 (8 Feb 2002) 8 Feb 2002; G.Bevin <gbevin@gentoo.org> neon-0.18.5.ebuild, diff --git a/net-misc/neon/files/digest-neon-0.19.2 b/net-misc/neon/files/digest-neon-0.19.2 new file mode 100644 index 000000000000..79dfbffa2e56 --- /dev/null +++ b/net-misc/neon/files/digest-neon-0.19.2 @@ -0,0 +1 @@ +MD5 d2164f46a88fe9b77427b6de547f53a1 neon-0.19.2.tar.gz 497946 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 + +} + |