Commit 3060456b authored by Rene Ladan's avatar Rene Ladan
Browse files

cleanup: Remove expired ports:

2021-10-30 databases/mysqlsniffer: Development discontinued upstream, doesn't build on recent FreeBSD
parent e9eb4687
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -16586,3 +16586,4 @@ net/irrd-legacy|net/irrd|2021-10-27|Has expired: Use net/irrd
mail/postfix-ldap-sasl|mail/postfix@ldap|2021-10-28|Converted to flavor
mail/postfix-sasl|mail/postfix@sasl|2021-10-28|Converted to flavor
mail/postfix-current-sasl|mail/postfix-current@sasl|2021-10-28|Converted to flavor
databases/mysqlsniffer||2021-10-30|Has expired: Development discontinued upstream, doesn't build on recent FreeBSD
+0 −1
Original line number Diff line number Diff line
@@ -228,7 +228,6 @@
    SUBDIR += mysqldump-secure
    SUBDIR += mysqlreport
    SUBDIR += mysqlsla
    SUBDIR += mysqlsniffer
    SUBDIR += mysqltcl
    SUBDIR += mysqltuner
    SUBDIR += mysqlwsrep56-server

databases/mysqlsniffer/Makefile

deleted100644 → 0
+0 −32
Original line number Diff line number Diff line
# Created by: Frederic Hardy <frederic.hardy@mageekbox.net>

PORTNAME=	mysqlsniffer
PORTVERSION=	1.2
CATEGORIES=	databases

MAINTAINER=	frederic.hardy@mageekbox.net
COMMENT=	Tcpdump clone specifically for MySQL

DEPRECATED=	Development discontinued upstream, doesn't build on recent FreeBSD
EXPIRATION_DATE=2021-10-30
BROKEN_FreeBSD_13=	ld: error: duplicate symbol: decoded_len
BROKEN_FreeBSD_14=	ld: error: duplicate symbol: decoded_len

WRKSRC_SUBDIR=	${PORTNAME}

PLIST_FILES=	bin/mysqlsniffer

USE_GITHUB=	yes
GH_ACCOUNT=	daniel-nichter
GH_PROJECT=	hackmysql.com
GH_TAGNAME=	ddb6f92

do-build:
	${CC} ${CFLAGS} -lpcap -o ${WRKSRC}/${PORTNAME} \
		${WRKSRC}/mysqlsniffer.c ${WRKSRC}/packet_handlers.c \
			${WRKSRC}/misc.c

do-install:
	${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin

.include <bsd.port.mk>

databases/mysqlsniffer/distinfo

deleted100644 → 0
+0 −2
Original line number Diff line number Diff line
SHA256 (daniel-nichter-hackmysql.com-1.2-ddb6f92_GH0.tar.gz) = ef8ce294e52a795388d96fb7fc8a3b1f7b90ac480b6c14683bcb8d3ce67571fb
SIZE (daniel-nichter-hackmysql.com-1.2-ddb6f92_GH0.tar.gz) = 1954606
+0 −10
Original line number Diff line number Diff line
--- misc.c.orig	2006-08-18 14:37:02 UTC
+++ misc.c
@@ -4,6 +4,7 @@
 #include <stdlib.h>
 #include <string.h>
 #include <ctype.h>
+#include <sys/types.h>
 #include "user_defines.h"
 #include "mysql_defines.h"
 #include "misc.h"
Loading