a5c465b3d3
help from naddy@
38 lines
956 B
Makefile
38 lines
956 B
Makefile
# $OpenBSD: Makefile,v 1.4 2010/10/26 10:44:53 steven Exp $
|
|
|
|
COMMENT = framework for analysis of layer 2 network protocols
|
|
|
|
DISTNAME = yersinia-0.7.1
|
|
CATEGORIES = net security
|
|
REVISION = 1
|
|
|
|
HOMEPAGE = http://www.yersinia.net/
|
|
|
|
MAINTAINER = Steven Mestdagh <steven@openbsd.org>
|
|
|
|
# GPL v2
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM = Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
MASTER_SITES = http://www.yersinia.net/download/
|
|
|
|
WANTLIB = c ncurses panel pcap pthread net
|
|
|
|
LIB_DEPENDS = :libnet->=1.1:net/libnet/1.1
|
|
|
|
CONFIGURE_STYLE = gnu
|
|
CONFIGURE_ARGS = --disable-gtk \
|
|
--with-libnet-includes=${LOCALBASE}/include/libnet-1.1
|
|
CONFIGURE_ENV = LDFLAGS="-L${LOCALBASE}/lib" \
|
|
LIBNET_CONFIG=${LOCALBASE}/bin/libnet-config-1.1 \
|
|
CPPFLAGS="${CPPFLAGS} -DLBL_ALIGN"
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/yersinia
|
|
cd ${WRKSRC} && ${INSTALL_DATA} FAQ README \
|
|
${PREFIX}/share/doc/yersinia
|
|
|
|
.include <bsd.port.mk>
|