diff options
author | marino <marino@FreeBSD.org> | 2014-08-21 02:27:19 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2014-08-21 02:27:19 +0800 |
commit | dc5a73619a8745122fcbc16acf39d90b0029dac1 (patch) | |
tree | 3286e5ab5ef0ee21c06f6f1953694bf5ba069109 /security | |
parent | dd1e46a18d453898a836e61126c37ba3c5fdd67a (diff) | |
download | freebsd-ports-gnome-dc5a73619a8745122fcbc16acf39d90b0029dac1.tar.gz freebsd-ports-gnome-dc5a73619a8745122fcbc16acf39d90b0029dac1.tar.zst freebsd-ports-gnome-dc5a73619a8745122fcbc16acf39d90b0029dac1.zip |
security/razorback-swfScanner: Chase json-c update (Unbreak)
Diffstat (limited to 'security')
3 files changed, 26 insertions, 2 deletions
diff --git a/security/razorback-swfScanner/Makefile b/security/razorback-swfScanner/Makefile index d6d92a4746ed..eca0b23d1f4a 100644 --- a/security/razorback-swfScanner/Makefile +++ b/security/razorback-swfScanner/Makefile @@ -3,7 +3,7 @@ PORTNAME= swfScanner PORTVERSION= 0.5.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= security MASTER_SITES= SF/razorbacktm/Nuggets PKGNAMEPREFIX= razorback- @@ -15,13 +15,15 @@ COMMENT= Framework for an intelligence driven security - SWF Detection LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/LICENSE -LIB_DEPENDS= librazorback_api.so:${PORTSDIR}/security/razorback-api +LIB_DEPENDS= librazorback_api.so:${PORTSDIR}/security/razorback-api \ + libjson-c.so:${PORTSDIR}/devel/json-c BUILD_DEPENDS= razorback-masterNugget>=0.5.0:${PORTSDIR}/security/razorback-masterNugget RUN_DEPENDS= razorback-masterNugget>=0.5.0:${PORTSDIR}/security/razorback-masterNugget RB_LIBDIR?= ${PREFIX}/lib/razorback GNU_CONFIGURE= yes USES= libtool pkgconfig +USE_AUTOTOOLS= autoconf USE_LDCONFIG= ${RB_LIBDIR} CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib diff --git a/security/razorback-swfScanner/files/patch-common__m4_api__deps.m4 b/security/razorback-swfScanner/files/patch-common__m4_api__deps.m4 new file mode 100644 index 000000000000..b424f894f261 --- /dev/null +++ b/security/razorback-swfScanner/files/patch-common__m4_api__deps.m4 @@ -0,0 +1,11 @@ +--- common_m4/api_deps.m4.orig 2012-04-16 18:59:44 UTC ++++ common_m4/api_deps.m4 +@@ -55,7 +55,7 @@ LIBS="$LIBCONFIG_LIBS $LIBS" + # [AC_MSG_ERROR("curl header file not found")] + # ) + +-PKG_CHECK_MODULES([JSON], [json >= 0.9]) ++PKG_CHECK_MODULES([JSON], [json-c >= 0.9]) + + CFLAGS="$JSON_CFLAGS $CFLAGS" + LIBS="$JSON_LIBS $LIBS" diff --git a/security/razorback-swfScanner/files/patch-common__m4_compiler__options.m4 b/security/razorback-swfScanner/files/patch-common__m4_compiler__options.m4 new file mode 100644 index 000000000000..8e2572727b90 --- /dev/null +++ b/security/razorback-swfScanner/files/patch-common__m4_compiler__options.m4 @@ -0,0 +1,11 @@ +--- common_m4/compiler_options.m4.orig 2012-01-04 18:17:09 UTC ++++ common_m4/compiler_options.m4 +@@ -28,7 +28,7 @@ if test "$GCC" = yes ; then + + CFLAGS="$CFLAGS -std=c99 -fno-strict-aliasing" + CPPFLAGS="$CPPFLAGS -fno-strict-aliasing" +- CWARNINGS="$CWARNINGS -Wall -Werror -Wwrite-strings -Wformat -fdiagnostics-show-option -Wextra -Wformat-security -Wsign-compare -Wcast-align -Wno-unused-parameter" ++ CWARNINGS="$CWARNINGS -Wall -Wwrite-strings -Wformat -fdiagnostics-show-option -Wextra -Wformat-security -Wsign-compare -Wcast-align -Wno-unused-parameter" + if test "x$NOT_PEDANTIC" = "x"; then + CWARNINGS="$CWARNINGS -pedantic" + fi |