blob: 365ca772b9c77a189096a9469e0239cf6f88ee48 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# $NetBSD: Makefile,v 1.11 2012/10/23 18:16:26 asau Exp $
.include "../../security/dsniff/Makefile.common"
PKGNAME= dsniff-nox11-${VERS}
PKGREVISION= 6
COMMENT= Password sniffer
CONFIGURE_ARGS+= --without-x
INSTALLATION_DIRS+= ${PKGMANDIR}/man8
INSTALL_MAKE_FLAGS+= install_prefix=${DESTDIR}
post-configure:
( cd ${WRKSRC} \
&& grep '#define.*HAVE_SYS_QUEUE_H' config.h >/dev/null \
&& mv missing/sys/queue.h missing/sys/queue.h.fake )
post-install:
${RM} ${DESTDIR}${PREFIX}/${PKGMANDIR}/man8/webspy.8
.include "../../mk/bsd.pkg.mk"
|