mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-13 03:03:15 +00:00
f935a609c5
supports them. This is determined by running ``configure --help'' in do-configure target and set the shell variable _LATE_CONFIGURE_ARGS which is then passed to CONFIGURE_ARGS. - Remove --mandir and --infodir in ports' Makefile where applicable Few ports use REINPLACE_CMD to achieve the same effect, remove them too. - Correct some manual pages location from PREFIX/man to MANPREFIX/man - Define INFO_PATH where necessary - Document that .info files are installed in a subdirectory relative to PREFIX/INFO_PATH and slightly change add-plist-info to use INFO_PATH and subdirectory detection. PR: ports/111470 Approved by: portmgr Discussed with: stas (Mk/*), gerald (info related stuffs) Tested by: pointyhat exp run
68 lines
1.7 KiB
Makefile
68 lines
1.7 KiB
Makefile
# New ports collection makefile for: honeyd
|
|
# Date created: 16/04/2002
|
|
# Whom: Dominic Marks <dominic.marks@btinternet.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= honeyd
|
|
PORTVERSION= 1.5c
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://www.citi.umich.edu/u/provos/honeyd/ \
|
|
http://niels.xtdnet.nl/honeyd/
|
|
|
|
MAINTAINER= wxs@atarininja.org
|
|
COMMENT= Simulate virtual network hosts (honeypots)
|
|
|
|
LIB_DEPENDS= event-1.3b:${PORTSDIR}/devel/libevent \
|
|
dnet.1:${PORTSDIR}/net/libdnet
|
|
BUILD_DEPENDS= ${LOCALBASE}/lib/libpcre.a:${PORTSDIR}/devel/pcre
|
|
|
|
USE_LDCONFIG= yes
|
|
USE_AUTOTOOLS= libtool:15
|
|
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
|
CONFIGURE_ARGS= --with-libdnet=${LOCALBASE} \
|
|
--with-libevent=${LOCALBASE}
|
|
|
|
.if defined(WITH_PYTHON)
|
|
USE_PYTHON= 2.4
|
|
CONFIGURE_ARGS+= --with-python
|
|
.else
|
|
CONFIGURE_ARGS+= --without-python
|
|
.endif
|
|
|
|
MAN1= honeydctl.1
|
|
MAN8= honeyd.8
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if !defined(WITH_PYTHON)
|
|
pre-everything::
|
|
@${ECHO_MSG} "===>"
|
|
@${ECHO_MSG} "===> You can enable Python support by defining the following variable:"
|
|
@${ECHO_MSG} "===> WITH_PYTHON=yes Enable Python support"
|
|
@${ECHO_MSG} "===>"
|
|
.endif
|
|
|
|
post-configure:
|
|
@${REINPLACE_CMD} -e 's|LIBS = |LIBS = ${PTHREAD_LIBS}|' \
|
|
${WRKSRC}/Makefile
|
|
|
|
# Have to make this directory, the Makefile is stupid and tries to
|
|
# install stuff here without making it.
|
|
pre-install:
|
|
@${MKDIR} ${DATADIR}/webserver
|
|
|
|
post-install:
|
|
@${MKDIR} ${DATADIR}/scripts/snmp
|
|
@cd ${WRKSRC}/scripts && \
|
|
${INSTALL_DATA} README* INSTALL* kuang2.conf \
|
|
${DATADIR}/scripts && \
|
|
${INSTALL_SCRIPT} *.pl *.sh ${DATADIR}/scripts
|
|
@cd ${WRKSRC}/scripts/snmp && \
|
|
${INSTALL_DATA} README default.snmp *.tpl \
|
|
${DATADIR}/scripts/snmp && \
|
|
${INSTALL_SCRIPT} *.pl ${DATADIR}/scripts/snmp
|
|
|
|
.include <bsd.port.post.mk>
|