mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-15 22:50:54 +00:00
* Update to Debian patchset 34 * Build w/ -std=gnu17 & filter LTO (we already have way too many patches in the heap from Debian, not adding more; dead upstream) Closes: https://bugs.gentoo.org/946622 Signed-off-by: Sam James <sam@gentoo.org>
83 lines
1.8 KiB
Bash
83 lines
1.8 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit autotools flag-o-matic toolchain-funcs
|
|
|
|
MY_PV="${PV/_beta/b}"
|
|
MY_PV="${MY_PV/_p*/}"
|
|
MY_PV="$(ver_rs 1 '.' "${MY_PV}")"
|
|
# 2.4_beta1_p30 -> 2.4beta1-30
|
|
MY_DEB_PV="$(ver_cut 1-2)$(ver_cut 3-4)-$(ver_cut 6)"
|
|
|
|
DESCRIPTION="A collection of tools for network auditing and penetration testing"
|
|
HOMEPAGE="https://monkey.org/~dugsong/dsniff/"
|
|
SRC_URI="mirror://debian/pool/main/${PN::1}/${PN}/${PN}_${MY_PV}+debian.orig.tar.gz
|
|
mirror://debian/pool/main/${PN::1}/${PN}/${PN}_${MY_PV}+debian-${PV/*_p}.debian.tar.xz"
|
|
S="${WORKDIR}/${P/_beta1*/}"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
IUSE="X"
|
|
|
|
# There's a berkdb configure option but we get a build failure if
|
|
# we try to disable it. Not clear how useful the package is
|
|
# without it anyway.
|
|
RDEPEND="
|
|
net-libs/libpcap
|
|
>=net-libs/libnet-1.1.2.1-r1
|
|
>=net-libs/libnids-1.21
|
|
net-libs/libnsl:=
|
|
net-libs/libtirpc:=
|
|
dev-libs/openssl:=
|
|
>=sys-libs/db-4:=
|
|
X? ( x11-libs/libXmu )
|
|
"
|
|
DEPEND="
|
|
${DEPEND}
|
|
net-libs/rpcsvc-proto
|
|
"
|
|
# Calls rpcgen during build
|
|
BDEPEND="net-libs/rpcsvc-proto"
|
|
|
|
PATCHES=(
|
|
"${WORKDIR}"/debian/patches/
|
|
"${FILESDIR}"/${PN}-2.4_beta1_p30-httppostfix.patch
|
|
"${FILESDIR}"/${PN}-2.4_beta1_p30-libdir-configure.patch
|
|
"${FILESDIR}"/${PN}-2.4_beta1_p30-respect-AR.patch
|
|
)
|
|
|
|
src_prepare() {
|
|
default
|
|
|
|
mv configure.{in,ac} || die
|
|
eautoreconf
|
|
}
|
|
|
|
src_configure() {
|
|
# bug #946622
|
|
append-flags -std=gnu17
|
|
# Opt_dns clash (not worth reporting/patching; we already have
|
|
# a huge heap of patches from Debian)
|
|
filter-lto
|
|
|
|
tc-export AR
|
|
|
|
econf \
|
|
$(use_with X x)
|
|
}
|
|
|
|
src_compile() {
|
|
emake CC="$(tc-getCC)"
|
|
}
|
|
|
|
src_install() {
|
|
emake install install_prefix="${D}"
|
|
|
|
dodir /etc/dsniff
|
|
cp "${ED}"/usr/share/dsniff/{dnsspoof.hosts,dsniff.{magic,services}} \
|
|
"${ED}"/etc/dsniff/ || die
|
|
dodoc CHANGES README TODO
|
|
}
|