freebsd-ports/sysutils/e2fsprogs/Makefile
Matthias Andree 7545575ac1 sysutils/e2fsprogs: 2/2 add a port for /sbin fsck'ing ext2/ext3/ext4
This is the second half of the e2fsprogs commit to permit having
a big hier(7)-clean e2fsprogs port that does not ever reach into /sbin,
now called e2fsprogs-core, and this new port that will copy from
${LOCALBASE} to /sbin so that /usr can reside on an ext2/ext3/ext4
file system and still be fsck'd at boot time.
2022-10-01 16:54:55 +02:00

21 lines
529 B
Makefile

PORTNAME= e2fsprogs
CATEGORIES= sysutils
PORTVERSION= 1.46.5
PORTREVISION= 5
BUILD_DEPENDS= e2fsprogs-core>=${PORTVERSION}:sysutils/e2fsprogs-core
RUN_DEPENDS= ${BUILD_DEPENDS}
DISTFILES= # empty
NO_BUILD= yes
LICENSE= GPLv2+
USES= cpe
CPE_VENDOR= e2fsprogs_project
MAINTAINER= mandree@FreeBSD.org
COMMENT= Wrapper to install e2fsprogs into /sbin
do-install:
${MKDIR} ${STAGEDIR}/sbin
${CP} -p ${LOCALBASE}/sbin/fsck_ext2fs ${STAGEDIR}/sbin
${CP} -p ${LOCALBASE}/sbin/e2fsck ${STAGEDIR}/sbin
.include <bsd.port.mk>