You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-analyzer/sguil-client/sguil-client-0.8.0.ebuild

47 lines
1.2 KiB

# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/sguil-client/sguil-client-0.8.0.ebuild,v 1.1 2012/04/30 15:21:33 jer Exp $
EAPI=4
inherit multilib
MY_PV="${PV/_p/p}"
DESCRIPTION="GUI Console for sguil Network Security Monitoring"
HOMEPAGE="http://sguil.sf.net"
SRC_URI="mirror://sourceforge/sguil/sguil-client-${MY_PV}.tar.gz"
LICENSE="QPL"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="ssl"
RDEPEND="
>=dev-lang/tcl-8.3[-threads]
>=dev-lang/tk-8.3
>=dev-tcltk/itcl-3.2
>=dev-tcltk/tclx-8.3
dev-tcltk/itk
dev-tcltk/iwidgets
dev-tcltk/tcllib
ssl? ( >=dev-tcltk/tls-1.4.1 )
net-analyzer/wireshark"
S="${WORKDIR}/sguil-${MY_PV}"
src_prepare() {
sed -i client/sguil.conf \
-e "/^set SGUILLIB /s:./lib:/usr/$(get_libdir)/sguil:" \
-e '/^set ETHEREAL_PATH /s:/usr/sbin/ethereal:/usr/bin/wireshark:' \
-e '/^set SERVERHOST /s:demo.sguil.net:localhost:' \
-e '/^set MAILSERVER /s:mail.example.com:localhost:' \
-e '/^set GPG_PATH /s:/usr/local/bin/gpg:/usr/bin/gpg:' || die
}
src_install() {
dobin client/sguil.tk
insinto /etc/sguil
doins client/sguil.conf
insinto "/usr/$(get_libdir)/sguil"
doins -r "${S}"/client/lib/*
dodoc doc/*
}