I have adopted and updated this package.
Search Criteria
Package Details: voiphopper 2.04-1
Package Actions
| 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: | |
| Submitter: | fnord0 |
| Maintainer: | paraxor |
| Last Packager: | None |
| Votes: | 4 |
| First Submitted: | 2010-08-23 12:41 |
| Last Updated: | 2013-05-12 15:27 |
Required by (0)
Sources
Latest Comments
Comment by paraxor
Comment by oliv
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
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...;