diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-06-02 22:36:02 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-06-02 22:36:02 +0000 |
commit | 568b05bdfc375eb149d4d37c61a780b3b8622f7a (patch) | |
tree | 39db2a6fb412183ec53f54fedae9b0293b22d05a /net-misc | |
parent | arm KEYWORDS (diff) | |
download | historical-568b05bdfc375eb149d4d37c61a780b3b8622f7a.tar.gz historical-568b05bdfc375eb149d4d37c61a780b3b8622f7a.tar.bz2 historical-568b05bdfc375eb149d4d37c61a780b3b8622f7a.zip |
hppa KEYWORDS
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/neon/neon-0.24.6.ebuild | 34 |
1 files changed, 18 insertions, 16 deletions
diff --git a/net-misc/neon/neon-0.24.6.ebuild b/net-misc/neon/neon-0.24.6.ebuild index 9b2607ea86f2..47e08a23e35b 100644 --- a/net-misc/neon/neon-0.24.6.ebuild +++ b/net-misc/neon/neon-0.24.6.ebuild @@ -1,32 +1,34 @@ # Copyright 1999-2004 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.6.ebuild,v 1.7 2004/06/02 21:06:22 ciaranm Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/neon/neon-0.24.6.ebuild,v 1.8 2004/06/02 22:36:02 vapier 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" +HOMEPAGE="http://www.webdav.org/neon/" +SRC_URI="http://www.webdav.org/neon/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86 ppc sparc alpha hppa amd64 s390" +IUSE="ssl zlib expat" + DEPEND="expat? ( dev-libs/expat ) !expat? ( dev-libs/libxml2 ) ssl? ( >=dev-libs/openssl-0.9.6f ) zlib? ( sys-libs/zlib )" -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="x86 ppc sparc amd64 s390 alpha" -IUSE="ssl zlib expat" src_compile() { - local myc='--enable-shared' - - use ssl && myc="$myc --with-ssl" || myc="$myc --without-ssl" + local myc="" use expat && myc="$myc --with-expat" || myc="$myc --with-xml2" - use zlib && myc="$myc --with-zlib" || myc="$myc --without-zlib" - - econf $myc || die "econf failed" + econf \ + --enable-shared \ + `use_with ssl` \ + `use_with zlib` \ + ${myc} \ + || die "econf failed" emake } -src_install () { - einstall +src_install() { + einstall || die dodoc AUTHORS BUGS ChangeLog NEWS README THANKS TODO doc/* } |