net-firewall/bango - 9999 (ubuilds)

Search

Install

Install this version:

emerge -a =net-firewall/bango-9999

If this version is masked, you can unmask it using the autounmask tool or standard emerge options:

autounmask =net-firewall/bango-9999

Or alternatively:

emerge --autounmask-write -a =net-firewall/bango-9999

Package Information

Description:
Distributed banning system for fail2ban
Homepage:
https://github.com/uu/bango
License:
WTFPL-2

Ebuild Details

Version EAPI Keywords Slot
9999 7 -* 0
View Raw Ebuild
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI=7
inherit git-r3
DESCRIPTION="Distributed banning system for fail2ban"
HOMEPAGE="https://github.com/uu/bango"
SRC_URI=""
EGIT_REPO_URI="https://github.com/uu/bango.git"

LICENSE="WTFPL-2"
SLOT="0"
KEYWORDS="-*"
IUSE=""

DEPEND="net-analyzer/fail2ban
		dev-lang/go"
RDEPEND="${DEPEND}"

src_compile(){
	export GOPATH=${WORKDIR}

	ebegin "getting code"
	go get -d || die 'could not get'
	eend $?
	ebegin "building code"
	go build -o ${PN} || die 'could not build'
	eend $?
}

src_install() {
	insinto /usr/bin
	dobin ${PN}
	insinto /etc
	doins ${PN}.ini
	newinitd ${FILESDIR}/init ${PN}
	insinto /etc/fail2ban/action.d/
	doins actions/${PN}.conf
}

Inherited Eclasses

Dependencies

DEPEND

net-analyzer/fail2ban
		dev-lang/go

RDEPEND

net-analyzer/fail2ban
		dev-lang/go