Package Details: voiphopper 2.04-1

Package Base: voiphopper
Description: A security validation tool that tests to see if a PC can mimic the behavior of an IP Phone. It rapidly automates a VLAN Hop into the Voice VLAN.
Upstream URL: http://voiphopper.sourceforge.net/
Category: network
Licenses: GPLv3
Submitter: fnord0
Maintainer: paraxor
Last Packager: None
Votes: 4
First Submitted: 2010-08-23 12:41
Last Updated: 2013-05-12 15:27

Latest Comments

Comment by paraxor

2013-05-12 15:20

I have adopted and updated this package.

Comment by oliv

2013-03-06 14:58

Version 2.04 released.

You need to patch dhcpclient.h to build successfully the package:

sed -i "s%<linux/if_ether.h>%<netinet/if_ether.h>%" -i src/dhcpclient.h
sed -i "s%<linux/if_tr.h>%<netinet/if_tr.h>%" -i src/dhcpclient.h

Comment by oliv

2011-08-17 14:57

Version 2.00 has been released.

To build you can change the PKGBUILD:

build() {
cd ${srcdir}/${pkgname}-${pkgver}
./configure --prefix=/usr --mandir=/usr/share/man --libexecdir=/usr/lib || return 1
make || return 1
}

package() {
cd ${srcdir}/${pkgname}-${pkgver}
make DESTDIR="${pkgdir}" install || return 1

install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/voiphopper/LICENSE || return 1
}

P.S. I don't know where is the MAN page in this version. Maybe they considered voiphopper -h is sufficient...;