diff options
Diffstat (limited to 'net-analyzer/httping/httping-0.0.94-r1.ebuild')
-rw-r--r-- | net-analyzer/httping/httping-0.0.94-r1.ebuild | 30 |
1 files changed, 30 insertions, 0 deletions
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 +} |