mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-25 01:36:08 +01:00
36 lines
687 B
Bash
36 lines
687 B
Bash
# Copyright 1999-2023 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit toolchain-funcs
|
|
|
|
DESCRIPTION="SIPcrack is a SIP protocol login cracker"
|
|
HOMEPAGE="http://www.remote-exploit.org/?page_id=418"
|
|
SRC_URI="http://dev.pentoo.ch/~zero/distfiles/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~arm ~ppc ~x86"
|
|
|
|
DEPEND="dev-libs/openssl:=
|
|
net-libs/libpcap"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_prepare() {
|
|
sed -i \
|
|
-e 's|${FLAGS}|${CFLAGS} ${LDFLAGS}|g' \
|
|
-e 's|strip sipcrack sipdump||' \
|
|
Makefile || die
|
|
|
|
default
|
|
}
|
|
|
|
src_compile() {
|
|
emake -e CC="$(tc-getCC)"
|
|
}
|
|
|
|
src_install() {
|
|
dobin sipcrack sipdump
|
|
dodoc README USAGE_EXAMPLES
|
|
}
|