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/ettercap/ettercap-0.7.4.1.ebuild

53 lines
1.3 KiB

# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ettercap/ettercap-0.7.4.1.ebuild,v 1.2 2012/05/04 06:08:11 jdhore Exp $
EAPI=4
inherit eutils autotools
DESCRIPTION="A suite for man in the middle attacks and network mapping"
HOMEPAGE="http://ettercap.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="debug gtk ncurses pcre ssl"
# libtool is needed because it provides libltdl (needed for plugins)
RDEPEND=">=net-libs/libnet-1.1.2.1-r1
net-libs/libpcap
sys-devel/libtool
sys-libs/zlib
gtk? (
>=dev-libs/glib-2.2.2:2
>=x11-libs/gtk+-2.2.2:2
)
ncurses? ( sys-libs/ncurses )
pcre? ( dev-libs/libpcre )
ssl? ( dev-libs/openssl )"
DEPEND="${RDEPEND}
virtual/pkgconfig
sys-devel/flex
virtual/yacc"
S=${WORKDIR}/${PN}
src_prepare() {
epatch "${FILESDIR}"/${PN}-0.7.3-as-needed.patch
epatch "${FILESDIR}"/${PN}-0.7.4-autotools.patch
epatch "${FILESDIR}"/${PN}-0.7.4-flags.patch
eautoreconf
}
src_configure() {
econf \
$(use_enable debug) \
$(use_enable gtk) \
$(use_with ncurses libncurses "${EPREFIX}"/usr) \
$(use_with pcre libpcre "${EPREFIX}"/usr) \
$(use_with ssl openssl "${EPREFIX}"/usr)
}