diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-10-14 00:53:33 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-10-14 00:53:33 +0000 |
commit | 50f3d1f7c13e3f03ff962d0497e0288e8af73a46 (patch) | |
tree | b31943a9005155aa82fafb21a2f0213805d77c0b /net-analyzer/sbd/sbd-1.36.ebuild | |
parent | +move net-misc/sbd net-analyzer/sbd (diff) | |
download | gentoo-2-50f3d1f7c13e3f03ff962d0497e0288e8af73a46.tar.gz gentoo-2-50f3d1f7c13e3f03ff962d0497e0288e8af73a46.tar.bz2 gentoo-2-50f3d1f7c13e3f03ff962d0497e0288e8af73a46.zip |
moved from net-misc
(Portage version: 2.0.53_rc5)
Diffstat (limited to 'net-analyzer/sbd/sbd-1.36.ebuild')
-rw-r--r-- | net-analyzer/sbd/sbd-1.36.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/net-analyzer/sbd/sbd-1.36.ebuild b/net-analyzer/sbd/sbd-1.36.ebuild new file mode 100644 index 000000000000..9a35fb8478a8 --- /dev/null +++ b/net-analyzer/sbd/sbd-1.36.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/sbd/sbd-1.36.ebuild,v 1.1 2005/10/14 00:53:33 vapier Exp $ + +inherit toolchain-funcs + +DESCRIPTION="Netcat-clone, designed to be portable and offer strong encryption" +HOMEPAGE="http://tigerteam.se/dl/sbd/" +SRC_URI="http://tigerteam.se/dl/sbd/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86 ~ppc" +IUSE="" + +DEPEND="" + +src_compile() { + emake \ + CC="$(tc-getCC)" \ + CFLAGS="${CFLAGS}" \ + UNIX_CFLAGS="" \ + UNIX_LDFLAGS="" \ + unix || die "emake failed" +} + +src_install() { + dobin sbd || die "dobin failed" + dodoc CHANGES README || die "dodoc failed" +} |