From f23c04a72db50cb8ce679caf4a7997cde166afdf Mon Sep 17 00:00:00 2001 From: Alexey Dokuchaev Date: Fri, 9 Jul 2021 08:03:48 +0000 Subject: sysutils/linuxfdisk: use better PROC_PARTITIONS path on FreeBSD Originating from GNU/Linux, this code had naturally defined the PROC_PARTITIONS macro as "/proc/partitions", while we typically mount this file system under "/compat/linux/proc/partitions" on FreeBSD. Fix two (out of four) definitions which appear in the generated executables, so e.g. `sfdisk-linux -s' would now work correctly so long as linprocfs(5) is mounted. While at it, set the LICENSE (GPLv2+) and bump PORTREVISION so users could enjoy less buggy package. PR: 257072 --- sysutils/linuxfdisk/files/patch-FreeBSD | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'sysutils/linuxfdisk/files/patch-FreeBSD') diff --git a/sysutils/linuxfdisk/files/patch-FreeBSD b/sysutils/linuxfdisk/files/patch-FreeBSD index 2d0152aa64ee..d9aa6f9e7911 100644 --- a/sysutils/linuxfdisk/files/patch-FreeBSD +++ b/sysutils/linuxfdisk/files/patch-FreeBSD @@ -403,6 +403,15 @@ diff -rNu fdisk.c fdisk.c fatal(ioctl_error); close(fd); if (opts == 1) +diff -rNu fdisk.h fdisk.h +--- fdisk.h 2001-09-13 23:05:35 UTC ++++ fdisk.h +@@ -101,4 +101,4 @@ + /* prototypes for fdisksgilabel.c */ + extern int valid_part_table_flag(unsigned char *b); + +-#define PROC_PARTITIONS "/proc/partitions" ++#define PROC_PARTITIONS "/compat/linux/proc/partitions" diff -rNu fdiskaixlabel.c fdiskaixlabel.c --- fdiskaixlabel.c Tue Apr 18 15:21:28 2000 +++ fdiskaixlabel.c Fri Jun 20 19:25:55 2003 @@ -1104,6 +1113,15 @@ diff -rNu sfdisk.c sfdisk.c return 1; } +@@ -2353,7 +2336,7 @@ + return is_ide; + } + +-#define PROC_PARTITIONS "/proc/partitions" ++#define PROC_PARTITIONS "/compat/linux/proc/partitions" + static FILE *procf = NULL; + + static void @@ -2413,9 +2396,11 @@ char *activatearg = 0; char *unhidearg = 0; -- cgit v1.2.3