04d6f52202
lang/gcc which have moved from GCC 4.9.4 to GCC 5.4 (at least under some circumstances such as versions of FreeBSD or platforms). This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using using Mk/bsd.octave.mk which in turn has USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c++11-lib, c++14-lang, c++11-lang, c++0x, c11, or gcc-c++11-lib. PR: 216707
55 lines
1.4 KiB
Makefile
55 lines
1.4 KiB
Makefile
# Created by: ryo
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= nepenthes
|
|
PORTVERSION= 0.2.2
|
|
PORTREVISION= 11
|
|
CATEGORIES= net
|
|
MASTER_SITES= SF/${PORTNAME}/Nepenthes%20development/${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Determine the malware activity on a network
|
|
|
|
LIB_DEPENDS= libpcre.so:devel/pcre \
|
|
libadns.so:dns/adns \
|
|
libcurl.so:ftp/curl \
|
|
libmagic.so.1:sysutils/file
|
|
|
|
USES= dos2unix libtool perl5
|
|
DOS2UNIX_FILE= modules/shellcode-generic/sch_generic_connect_trans.cpp
|
|
USE_CXXSTD= gnu++98
|
|
USE_GCC= any
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --localstatedir=/var
|
|
INSTALL_TARGET= install-strip
|
|
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
OPTIONS_DEFINE= DEBUG_LOGGING PRELUDE
|
|
|
|
DEBUG_LOGGING_CONFIGURE_ENABLE= debug-logging
|
|
PRELUDE_LIB_DEPENDS= libprelude.so:security/libprelude
|
|
PRELUDE_CONFIGURE_ENABLE= prelude
|
|
|
|
post-patch:
|
|
@${FIND} ${WRKSRC} -name Makefile.in -print0 | ${XARGS} -0 \
|
|
${REINPLACE_CMD} -e \
|
|
's|-Werror|| ; \
|
|
s|-D.*_GNU_SOURCE||'
|
|
@${FIND} ${WRKSRC}/modules -name "*.[ch]pp" -print0 | ${XARGS} -0 \
|
|
${REINPLACE_CMD} -e \
|
|
'/<curl\/types.h>/d'
|
|
@${REINPLACE_CMD} -e \
|
|
's|-I/usr/local/include|| ; \
|
|
s|-I/usr/src/contrib/file/|| ; \
|
|
s|-L/usr/local/lib|| ; \
|
|
s|-R/usr/local/lib||' ${WRKSRC}/configure
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DATADIR}/signatures
|
|
(cd ${WRKSRC}/modules/shellcode-signatures && ${INSTALL_DATA} \
|
|
shellcode-signatures.sc ${STAGEDIR}${DATADIR}/signatures)
|
|
|
|
.include <bsd.port.mk>
|