diff options
author | antoine <antoine@FreeBSD.org> | 2014-02-23 22:29:55 +0800 |
---|---|---|
committer | antoine <antoine@FreeBSD.org> | 2014-02-23 22:29:55 +0800 |
commit | a93adff1b050f4671ff6f79a17269bcf471dfc68 (patch) | |
tree | b6166ee387bd12df29304956b540387ab9ec0e01 | |
parent | 49280d45c7c8beb17e6310f83efe000eb8eb6236 (diff) | |
download | freebsd-ports-gnome-a93adff1b050f4671ff6f79a17269bcf471dfc68.tar.gz freebsd-ports-gnome-a93adff1b050f4671ff6f79a17269bcf471dfc68.tar.zst freebsd-ports-gnome-a93adff1b050f4671ff6f79a17269bcf471dfc68.zip |
- Unbreak after last tcltls changes
- Fix a bad shebang (including STAGEDIR)
Reported by: pkg-fallout
-rw-r--r-- | security/sguil-client/Makefile | 4 | ||||
-rw-r--r-- | security/sguil-client/files/patch-sguil.conf | 2 | ||||
-rw-r--r-- | security/sguil-sensor/Makefile | 6 | ||||
-rw-r--r-- | security/sguil-server/Makefile | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/security/sguil-client/Makefile b/security/sguil-client/Makefile index 65e696703b7e..83245c7cca96 100644 --- a/security/sguil-client/Makefile +++ b/security/sguil-client/Makefile @@ -10,8 +10,8 @@ MASTER_SITES= SF/sguil/sguil/sguil-${PORTVERSION} MAINTAINER= pauls@utdallas.edu COMMENT= Sguil is a network security monitoring program -LIB_DEPENDS= tls:${PORTSDIR}/devel/tcltls -RUN_DEPENDS= dtplite:${PORTSDIR}/devel/tcllib \ +RUN_DEPENDS= tcltls>=0:${PORTSDIR}/devel/tcltls \ + dtplite:${PORTSDIR}/devel/tcllib \ ${LOCALBASE}/lib/tclx8.4/tclx.tcl:${PORTSDIR}/lang/tclX \ ${LOCALBASE}/lib/iwidgets/iwidgets.tcl:${PORTSDIR}/x11-toolkits/iwidgets \ gpg2:${PORTSDIR}/security/gnupg diff --git a/security/sguil-client/files/patch-sguil.conf b/security/sguil-client/files/patch-sguil.conf index 8671aef51efa..3190d26ee0a2 100644 --- a/security/sguil-client/files/patch-sguil.conf +++ b/security/sguil-client/files/patch-sguil.conf @@ -5,7 +5,7 @@ # PATH to tls lib if needed (tcl can usually find this by default) -#set TLS_PATH /usr/lib/tls1.4/libtls1.4.so -+#set TLS_PATH /usr/local/lib/libtls.so ++#set TLS_PATH /usr/local/lib/tls1.6/libtls1.6.so # win32 example #set TLS_PATH "c:/tcl/lib/tls1.4/tls14.dll" diff --git a/security/sguil-sensor/Makefile b/security/sguil-sensor/Makefile index c27f68b679be..7bebc3d97b96 100644 --- a/security/sguil-sensor/Makefile +++ b/security/sguil-sensor/Makefile @@ -9,8 +9,8 @@ MASTER_SITES= SF/sguil/sguil/sguil-${PORTVERSION} MAINTAINER= pauls@utdallas.edu COMMENT= Sguil is a network security monitoring program -LIB_DEPENDS= tls:${PORTSDIR}/devel/tcltls -RUN_DEPENDS= barnyard2:${PORTSDIR}/security/barnyard2-sguil \ +RUN_DEPENDS= tcltls>=0:${PORTSDIR}/devel/tcltls \ + barnyard2:${PORTSDIR}/security/barnyard2-sguil \ ${LOCALBASE}/lib/tclx8.4/tclx.tcl:${PORTSDIR}/lang/tclX OPTIONS_DEFINE= PADS SANCP @@ -65,7 +65,7 @@ PLIST_SUB+= USEPADS="@comment " post-patch: .for f in ${AGENTS} - @${REINPLACE_CMD} 's|/bin/sh|${STAGEDIR}${PREFIX}/bin/${TCLSH}|' \ + @${REINPLACE_CMD} 's|/bin/sh|${PREFIX}/bin/${TCLSH}|' \ ${WRKSRC}/sensor/${f} .endfor diff --git a/security/sguil-server/Makefile b/security/sguil-server/Makefile index 05a0db3b2bdd..e142c2148de0 100644 --- a/security/sguil-server/Makefile +++ b/security/sguil-server/Makefile @@ -9,11 +9,11 @@ MASTER_SITES= SF/sguil/sguil/sguil-${PORTVERSION} MAINTAINER= pauls@utdallas.edu COMMENT= Sguil is a network security monitoring program -RUN_DEPENDS= p0f:${PORTSDIR}/net-mgmt/p0f \ +RUN_DEPENDS= tcltls>=0:${PORTSDIR}/devel/tcltls \ + p0f:${PORTSDIR}/net-mgmt/p0f \ tcpflow:${PORTSDIR}/net/tcpflow \ dtplite:${PORTSDIR}/devel/tcllib \ ${LOCALBASE}/lib/tclx8.4/tclx.tcl:${PORTSDIR}/lang/tclX -LIB_DEPENDS= tls:${PORTSDIR}/devel/tcltls OPTIONS_DEFINE= MYSQL MYSQL_DESC= Depend on databases/mysqltcl |