blob: c2862282f6bc25027abfaaafc26802d893bfacb5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-firewall/dshieldpy/dshieldpy-3.2.ebuild,v 1.5 2004/06/24 22:38:17 agriffis Exp $
DESCRIPTION="Python script to submit firewall logs to dshield.org"
HOMEPAGE="http://dshieldpy.sourceforge.net/"
SRC_URI="mirror://sourceforge/dshieldpy/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
DEPEND="virtual/python"
RDEPEND=""
S=${WORKDIR}/DShield.py
src_install() {
dodoc CHANGELOG COPYING README*
dobin dshield.py
insinto /etc
doins dshieldpy.conf
}
|