diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /net-analyzer/sbd | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'net-analyzer/sbd')
-rw-r--r-- | net-analyzer/sbd/Manifest | 1 | ||||
-rw-r--r-- | net-analyzer/sbd/metadata.xml | 11 | ||||
-rw-r--r-- | net-analyzer/sbd/sbd-1.37-r1.ebuild | 34 |
3 files changed, 46 insertions, 0 deletions
diff --git a/net-analyzer/sbd/Manifest b/net-analyzer/sbd/Manifest new file mode 100644 index 000000000000..08d92caf6692 --- /dev/null +++ b/net-analyzer/sbd/Manifest @@ -0,0 +1 @@ +DIST sbd-1.37.tar.gz 83991 SHA256 42de50dcfca757cd03017c6e56ac7a2f87532a08e7043423cd20d911fd645f5d SHA512 845f3eb20d3a6006f7afc9b60eecaa3049172b3fb2796058f18a13ddbfb7f2c9914bef45bd4f3557db814783717eae24fe13d46d22c65359ba3f816c6d52ea7c WHIRLPOOL ef27336f43e0617df2c53d3d7903be9a05702fcac5e91f6d01134b757b188c1c1b7b88ea4ef24654e8b1dbf3e4182a618035884d24872746ce241071d0add895 diff --git a/net-analyzer/sbd/metadata.xml b/net-analyzer/sbd/metadata.xml new file mode 100644 index 000000000000..6b3d934caee5 --- /dev/null +++ b/net-analyzer/sbd/metadata.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>netmon</herd> + <longdescription> +sbd is a Netcat-clone, designed to be portable and offer strong encryption. It +features AES-CBC-128 + HMAC-SHA1 encryption (by Christophe Devine), program +execution (-e option), choosing source port, continuous reconnection with delay, +and some other nice features. Only TCP/IP communication is supported. + </longdescription> +</pkgmetadata> diff --git a/net-analyzer/sbd/sbd-1.37-r1.ebuild b/net-analyzer/sbd/sbd-1.37-r1.ebuild new file mode 100644 index 000000000000..67f8adfdf35f --- /dev/null +++ b/net-analyzer/sbd/sbd-1.37-r1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +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="amd64 ~hppa ~ppc x86" + +src_prepare() { + sed -i \ + -e '/ -o /{ s| $(UNIX_LDFLAGS) $(LDFLAGS)||g;s|$(CFLAGS)|& $(LDFLAGS)|g }' \ + Makefile || die +} + +src_compile() { + emake \ + CC="$(tc-getCC)" \ + CFLAGS="${CFLAGS}" \ + LDFLAGS="${LDFLAGS}" \ + unix +} + +src_install() { + dobin sbd + dodoc CHANGES README +} |