Commit bda9651a authored by Muhammad Moinur Rahman's avatar Muhammad Moinur Rahman
Browse files

sysutils/ffs2recov: Remove expired port

2023-12-31 sysutils/ffs2recov: BROKEN on supported versions after EOL of 12
parent 2d9e79b0
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -8254,3 +8254,4 @@ devel/fuel||2023-12-31|Has expired: Depends on deprecated www/qt5-webkit
devel/rubygem-aws-sdk-macie||2023-12-31|Has expired: Deprecated by upstream
sysutils/devcpu-data|sysutils/cpu-microcode|2023-12-31|Has expired: Use sysutils/cpu-microcode
math/wfmath||2023-12-31|Has expired: There has been no release for most of the Worldforge libraries in the past 10 years.
sysutils/ffs2recov||2023-12-31|Has expired: BROKEN on supported versions after EOL of 12
+0 −1
Original line number Diff line number Diff line
@@ -396,7 +396,6 @@
    SUBDIR += fd
    SUBDIR += fdupes
    SUBDIR += fetchlog
    SUBDIR += ffs2recov
    SUBDIR += file
    SUBDIR += filedupe
    SUBDIR += filelight

sysutils/ffs2recov/Makefile

deleted100644 → 0
+0 −27
Original line number Diff line number Diff line
PORTNAME=	ffs2recov
PORTVERSION=	1.0
PORTREVISION=	1
CATEGORIES=	sysutils
MASTER_SITES=	https://BSDforge.com/projects/source/sysutils/ffs2recov/

MAINTAINER=	portmaster@bsdforge.com
COMMENT=	Utility to recover UFS2 filesystems
WWW=		https://BSDforge.com/projects/sysutils/ffs2recov/

LICENSE=	BSD2CLAUSE

DEPRECATED=	BROKEN on supported versions after EOL of 12
EXPIRATION_DATE=	2023-12-31
BROKEN_FreeBSD_13=	Changes made to the ffs2 filesystem in FreeBSD 13 are no longer compatible with ffs2recov
BROKEN_FreeBSD_14=	Changes made to the ffs2 filesystem in FreeBSD 13 are no longer compatible with ffs2recov

USES=		compiler:c11 tar:bzip2 uidfix
WRKSRC=		${WRKDIR}/${PORTNAME}

PLIST_FILES=	sbin/ffs2recov \
		man/man8/ffs2recov.8.gz

MAKE_ENV=	BINDIR=${PREFIX}/sbin MANDIR=${MANPREFIX}/man/man \
		WARNS=0

.include <bsd.port.mk>

sysutils/ffs2recov/distinfo

deleted100644 → 0
+0 −2
Original line number Diff line number Diff line
SHA256 (ffs2recov-1.0.tar.bz2) = 92b442008085d5141ccf536bdfc09e3fc877a9fd90fa42c5460e2559f4cbd614
SIZE (ffs2recov-1.0.tar.bz2) = 15022
+0 −13
Original line number Diff line number Diff line
--- inode.c.orig	2017-04-05 19:51:41 UTC
+++ inode.c
@@ -52,6 +52,10 @@
 #define NO_IN_EXTERNS
 #include "ffs2recov.h"
 
+#ifdef UFS_NDADDR
+#define NDADDR UFS_NDADDR
+#endif
+
 static uint64_t direct_maxblk;		/* Max block # for a direct block.    */
 static uint64_t single_maxblk;		/* Max block # for a single indirect. */
 static uint64_t double_maxblk;		/* Max block # for a double indirect. */
Loading