packages: move floppy utilities into a new package

Very few people use floppy disks nowadays.  Move the fd utilities into a
new package.

Reviewed by:	imp, des
Approved by:	des (mentor)
Differential Revision:	https://reviews.freebsd.org/D50291
This commit is contained in:
Lexi Winter
2025-05-14 23:01:55 +01:00
parent 145162ff1f
commit e7bcd658eb
5 changed files with 6 additions and 0 deletions
+2
View File
@@ -67,6 +67,8 @@ elftoolchain_COMMENT= ElfToolchain programs and libraries
elftoolchain_DESC= ElfToolchain programs and libraries
examples_COMMENT= Examples in /usr/share/examples
examples_DESC= Examples in /usr/share/examples
fd_COMMENT= Floppy disk support
fd_DESC= Floppy disk support
fetch_COMMENT= Fetch Utility
fetch_DESC= Fetch Utility
firmware-iwm_DESC= iwm(4) firmwares
+1
View File
@@ -1,5 +1,6 @@
.PATH: ${.CURDIR:H}/fdread
PACKAGE= fd
PROG= fdcontrol
SRCS= fdcontrol.c fdutil.c
CFLAGS+= -I${.CURDIR:H}/fdread
+1
View File
@@ -1,5 +1,6 @@
.PATH: ${.CURDIR:H}/fdread
PACKAGE= fd
PROG= fdformat
MAN= fdformat.8
SRCS= fdformat.c fdutil.c
+1
View File
@@ -1,3 +1,4 @@
PACKAGE= fd
PROG= fdread
SRCS= fdread.c fdutil.c
+1
View File
@@ -6,6 +6,7 @@
# ----------------------------------------------------------------------------
#
PACKAGE= fd
PROG= fdwrite
.include <bsd.prog.mk>