mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-11 02:50:24 +00:00
c2d1a14c7c
- Bump PORTREVISION for ftp/curl shlib change - Add TEST_DEPENDS - Convert to new options framework - Adjust options: - Add COOKIES - Add CYASSL, NSS, POLARSSL, THREADED_RESOLVER, TLS_SRP [1] - Add GSSAPI and SPNEGO [2] - Remove KERBEROS4 - Rename LIBIDN to IDN - Remove TRACKMEMORY [1] - Sort option handler - Add SLAVEDIRS: ftp/curl-hiphop - Cosmetic change - Cleanup Makefile header - While I'm here, fix typo (PORTREVSION) in x11-wm/ede/Makefile Changes: http://curl.haxx.se/changes.html PR: ports/172325 (-exp run), ports/177369 (based on) [1] Submitted by: Hirohisa Yamaguchi <umq@ueo.co.jp> [1], hrs (via email) [2] Exp run by: miwi
46 lines
1.2 KiB
Makefile
46 lines
1.2 KiB
Makefile
# Created by: ryo
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= nepenthes
|
|
PORTVERSION= 0.2.2
|
|
PORTREVISION= 7
|
|
CATEGORIES= net
|
|
MASTER_SITES= SF/${PORTNAME}/Nepenthes%20development/${PORTVERSION}
|
|
|
|
MAINTAINER= systemoperator@gmail.com
|
|
COMMENT= Determine the malware activity on a network
|
|
|
|
LIB_DEPENDS= curl:${PORTSDIR}/ftp/curl \
|
|
magic.1:${PORTSDIR}/sysutils/file \
|
|
pcre.3:${PORTSDIR}/devel/pcre \
|
|
adns.1:${PORTSDIR}/dns/adns
|
|
|
|
.if defined(WITH_PRELUDE)
|
|
LIB_DEPENDS+= prelude:${PORTSDIR}/security/libprelude
|
|
CONFIGURE_ARGS+= --enable-prelude
|
|
.endif
|
|
|
|
.if defined(WITH_DEBUG_LOGGING)
|
|
CONFIGURE_ARGS+= --enable-debug-logging
|
|
.endif
|
|
|
|
USE_PERL5= yes
|
|
GNU_CONFIGURE= yes
|
|
|
|
DOCS= README README.VFS logo-shaded.svg
|
|
MAN8= nepenthes.8
|
|
|
|
post-patch:
|
|
@${FIND} ${WRKSRC} -name Makefile.in -print0 | ${XARGS} -0 \
|
|
${REINPLACE_CMD} -e 's,-Werror,,'
|
|
@${REINPLACE_CMD} -e '/<curl\/types.h>/d' \
|
|
${WRKSRC}/modules/download-curl/download-curl.hpp \
|
|
${WRKSRC}/modules/submit-http/HTTPSession.hpp \
|
|
${WRKSRC}/modules/submit-http/HTTPSession.cpp \
|
|
${WRKSRC}/modules/submit-http/submit-http.hpp \
|
|
${WRKSRC}/modules/submit-mwserv/TransferSession.hpp \
|
|
${WRKSRC}/modules/submit-mwserv/submit-mwserv.hpp \
|
|
${WRKSRC}/modules/submit-norman/submit-norman.hpp
|
|
|
|
.include <bsd.port.mk>
|