diff options
author | Rick Farina <zerochaos@gentoo.org> | 2014-03-22 22:51:32 +0000 |
---|---|---|
committer | Rick Farina <zerochaos@gentoo.org> | 2014-03-22 22:51:32 +0000 |
commit | fff8597d9acfd01a94f749f0dbdb67246c0fc42b (patch) | |
tree | af122cd7c8df2fa41b83214ac868af9932046de7 /net-misc/portspoof | |
parent | fix dev-libs/DirectFB dependency string wrt #501892 (diff) | |
download | gentoo-2-fff8597d9acfd01a94f749f0dbdb67246c0fc42b.tar.gz gentoo-2-fff8597d9acfd01a94f749f0dbdb67246c0fc42b.tar.bz2 gentoo-2-fff8597d9acfd01a94f749f0dbdb67246c0fc42b.zip |
initial ebuilds for portspoof
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key DD11F94A)
Diffstat (limited to 'net-misc/portspoof')
-rw-r--r-- | net-misc/portspoof/ChangeLog | 10 | ||||
-rw-r--r-- | net-misc/portspoof/metadata.xml | 10 | ||||
-rw-r--r-- | net-misc/portspoof/portspoof-1.1.ebuild | 29 | ||||
-rw-r--r-- | net-misc/portspoof/portspoof-9999.ebuild | 29 |
4 files changed, 78 insertions, 0 deletions
diff --git a/net-misc/portspoof/ChangeLog b/net-misc/portspoof/ChangeLog new file mode 100644 index 000000000000..26c2a1aa6bee --- /dev/null +++ b/net-misc/portspoof/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for net-misc/portspoof +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/portspoof/ChangeLog,v 1.1 2014/03/22 22:51:32 zerochaos Exp $ + +*portspoof-9999 (22 Mar 2014) +*portspoof-1.1 (22 Mar 2014) + + 22 Mar 2014; Rick Farina <zerochaos@gentoo.org> +metadata.xml, + +portspoof-1.1.ebuild, +portspoof-9999.ebuild: + initial ebuilds for portspoof diff --git a/net-misc/portspoof/metadata.xml b/net-misc/portspoof/metadata.xml new file mode 100644 index 000000000000..4b6b68191d89 --- /dev/null +++ b/net-misc/portspoof/metadata.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<maintainer> +<email>zerochaos@gentoo.org</email> +<name>Rick Farina</name> +</maintainer> +<longdescription lang="en"> +</longdescription> +</pkgmetadata> diff --git a/net-misc/portspoof/portspoof-1.1.ebuild b/net-misc/portspoof/portspoof-1.1.ebuild new file mode 100644 index 000000000000..daaafaedf865 --- /dev/null +++ b/net-misc/portspoof/portspoof-1.1.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/portspoof/portspoof-1.1.ebuild,v 1.1 2014/03/22 22:51:32 zerochaos Exp $ + +EAPI=5 + +DESCRIPTION="return SYN+ACK for every port connection attempt" +HOMEPAGE="http://portspoof.org/" +LICENSE="GPL-2+" +SLOT="0" +IUSE="" + +DEPEND="" +RDEPEND="${DEPEND}" + +if [[ ${PV} == "9999" ]] ; then + inherit git-r3 autotools + EGIT_REPO_URI="https://github.com/drk1wi/${PN}.git" + KEYWORDS="" +else + SRC_URI="https://github.com/drk1wi/portspoof/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64" +fi + +src_prepare() { + if [[ ${PV} == "9999" ]] ; then + eautoreconf + fi +} diff --git a/net-misc/portspoof/portspoof-9999.ebuild b/net-misc/portspoof/portspoof-9999.ebuild new file mode 100644 index 000000000000..e5e5e348ca36 --- /dev/null +++ b/net-misc/portspoof/portspoof-9999.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/portspoof/portspoof-9999.ebuild,v 1.1 2014/03/22 22:51:32 zerochaos Exp $ + +EAPI=5 + +DESCRIPTION="return SYN+ACK for every port connection attempt" +HOMEPAGE="http://portspoof.org/" +LICENSE="GPL-2+" +SLOT="0" +IUSE="" + +DEPEND="" +RDEPEND="${DEPEND}" + +if [[ ${PV} == "9999" ]] ; then + inherit git-r3 autotools + EGIT_REPO_URI="https://github.com/drk1wi/${PN}.git" + KEYWORDS="" +else + SRC_URI="https://github.com/drk1wi/portspoof/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64" +fi + +src_prepare() { + if [[ ${PV} == "9999" ]] ; then + eautoreconf + fi +} |