gentoo-ebuilds/net-analyzer/sngrep/sngrep-1.8.2.ebuild
Michał Górny 7215a6a587
*/*: Add := to virtual/zlib deps
Done via:

```
git grep -l 'virtual/zlib ' |
  xargs sed -i -e 's@virtual/zlib @virtual/zlib:= @g'
```

with some manual reverts.

Signed-off-by: Michał Górny <mgorny@gentoo.org>
2025-11-04 10:45:41 +01:00

46 lines
879 B
Bash

# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools
DESCRIPTION="Ncurses SIP Messages flow viewer"
HOMEPAGE="https://github.com/irontec/sngrep"
SRC_URI="https://github.com/irontec/sngrep/releases/download/v${PV}/${P}.tar.gz"
LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="eep gnutls pcre ssl zlib"
DEPEND="
net-libs/libpcap
sys-libs/ncurses:=[unicode(+)]
ssl? (
!gnutls? ( dev-libs/openssl:= )
gnutls? ( net-libs/gnutls:= )
)
pcre? ( dev-libs/libpcre2 )
zlib? ( virtual/zlib:= )
"
RDEPEND="${DEPEND}"
src_prepare() {
default
eautoreconf
}
src_configure() {
local myeconfargs=(
--enable-ipv6
--enable-unicode
--without-pcre
$(use_enable eep)
$(use_with pcre pcre2)
$(use_with ssl $(usex gnutls gnutls openssl))
$(use_with zlib)
)
econf "${myeconfargs[@]}"
}