blob: 9b2b7719496ff29d26c110a1748ab3f51bb6e1e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit eutils
DESCRIPTION="SIP registration hijacker from the Hacking VoIP Exposed authors"
HOMEPAGE="http://www.hackingvoip.com/sec_tools.html"
SRC_URI="http://www.hackingvoip.com/tools/hack_library.tar.gz
http://www.hackingvoip.com/tools/${PN}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="virtual/libc"
RDEPEND="${DEPEND}"
src_compile() {
# Make the library dependency
cd ${WORKDIR}/hack_library
emake || die "emake failed"
# Make the package
cd ${WORKDIR}/${PN}
emake || die "emake failed"
emake -f makemd5c
}
src_install() {
cd ${WORKDIR}/${PN}
dobin reghijacker
dobin mddriver
dodoc {LICENSE_DOCUMENTATION,LICENSE_SOFTWARE,Readme.txt}
}
|