diff options
author | Jon Hood <squinky86@gentoo.org> | 2004-08-30 22:19:44 +0000 |
---|---|---|
committer | Jon Hood <squinky86@gentoo.org> | 2004-08-30 22:19:44 +0000 |
commit | cd259ab70f66ef5e28f7033b9d8cf4c706b3e218 (patch) | |
tree | c41a375c936ca30cdbc6ae7195c67564867bb984 /net-analyzer/httping | |
parent | Using latest q-s code of 20040819. (Manifest recommit) (diff) | |
download | gentoo-2-cd259ab70f66ef5e28f7033b9d8cf4c706b3e218.tar.gz gentoo-2-cd259ab70f66ef5e28f7033b9d8cf4c706b3e218.tar.bz2 gentoo-2-cd259ab70f66ef5e28f7033b9d8cf4c706b3e218.zip |
can now build without ssl support
Diffstat (limited to 'net-analyzer/httping')
-rw-r--r-- | net-analyzer/httping/ChangeLog | 7 | ||||
-rw-r--r-- | net-analyzer/httping/Manifest | 10 | ||||
-rw-r--r-- | net-analyzer/httping/files/digest-httping-0.0.94-r1 | 1 | ||||
-rw-r--r-- | net-analyzer/httping/httping-0.0.94-r1.ebuild | 30 |
4 files changed, 43 insertions, 5 deletions
diff --git a/net-analyzer/httping/ChangeLog b/net-analyzer/httping/ChangeLog index c032f735aace..80f82affd261 100644 --- a/net-analyzer/httping/ChangeLog +++ b/net-analyzer/httping/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-analyzer/httping # Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/httping/ChangeLog,v 1.6 2004/08/28 16:03:01 tgall Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/httping/ChangeLog,v 1.7 2004/08/30 22:19:44 squinky86 Exp $ + +*httping-0.0.94-r1 (30 Aug 2004) + + 30 Aug 2004; Jon Hood <squinky86@gentoo.org> +httping-0.0.94-r1.ebuild: + Now testing ability to build without ssl support. 28 Aug 2004; Tom Gall <tgall@gentoo.org> httping-0.0.94.ebuild: stable on ppc64, bug #59647 diff --git a/net-analyzer/httping/Manifest b/net-analyzer/httping/Manifest index 8c3bdd1eff96..5f9ae8644faa 100644 --- a/net-analyzer/httping/Manifest +++ b/net-analyzer/httping/Manifest @@ -1,8 +1,10 @@ -MD5 374cd086197cad01165761c988d6b972 ChangeLog 862 -MD5 844f3a7f3510af24fbeb25cd0410c03d httping-0.0.8.ebuild 657 MD5 d75edc399c4011cbc88411edf0485733 httping-0.0.93.ebuild 659 -MD5 d373eeb570f76f3f75bd124c4614ebdc httping-0.0.94.ebuild 662 +MD5 bb4a6a4d852ba61772543a2430471eb1 httping-0.0.94-r1.ebuild 738 +MD5 844f3a7f3510af24fbeb25cd0410c03d httping-0.0.8.ebuild 657 +MD5 374cd086197cad01165761c988d6b972 ChangeLog 862 MD5 61da3c68a3ae57136cdc2a17fbaedfaf metadata.xml 223 -MD5 42c1e01e84428ea94fdf2c8842a68d2a files/digest-httping-0.0.8 60 +MD5 d373eeb570f76f3f75bd124c4614ebdc httping-0.0.94.ebuild 662 MD5 0a9debbe13087f9b72f65e76615d5986 files/digest-httping-0.0.93 61 MD5 e09a4c048a540ff768f9be969e7fa62c files/digest-httping-0.0.94 61 +MD5 42c1e01e84428ea94fdf2c8842a68d2a files/digest-httping-0.0.8 60 +MD5 e09a4c048a540ff768f9be969e7fa62c files/digest-httping-0.0.94-r1 61 diff --git a/net-analyzer/httping/files/digest-httping-0.0.94-r1 b/net-analyzer/httping/files/digest-httping-0.0.94-r1 new file mode 100644 index 000000000000..8032b4f9ff21 --- /dev/null +++ b/net-analyzer/httping/files/digest-httping-0.0.94-r1 @@ -0,0 +1 @@ +MD5 0e9f0da9c58d999be2afef1759e505e5 httping-0.0.94.tgz 6465 diff --git a/net-analyzer/httping/httping-0.0.94-r1.ebuild b/net-analyzer/httping/httping-0.0.94-r1.ebuild new file mode 100644 index 000000000000..019137925e15 --- /dev/null +++ b/net-analyzer/httping/httping-0.0.94-r1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/httping/httping-0.0.94-r1.ebuild,v 1.1 2004/08/30 22:19:44 squinky86 Exp $ + +DESCRIPTION="http protocol ping-like program" +HOMEPAGE="http://www.vanheusden.com/httping/" +SRC_URI="http://www.vanheusden.com/${PN}/${P}.tgz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~ppc ppc64" +IUSE="ssl" + +DEPEND=">=sys-libs/ncurses-5" + +src_unpack() { + unpack ${A} + cd ${S} + sed -i -e "s:CFLAGS=:CFLAGS=${CFLAGS} :g" Makefile* +} + +src_compile() { + use ssl && emake || die "make failed" + use ssl || emake -f Makefile.nossl || die "make failed" +} + +src_install() { + dobin httping + dodoc readme.txt license.txt +} |