diff options
author | Matthias Andree <mandree@FreeBSD.org> | 2022-10-01 14:36:47 +0000 |
---|---|---|
committer | Matthias Andree <mandree@FreeBSD.org> | 2022-10-01 14:54:55 +0000 |
commit | 7545575ac130685bb989260e03d2288a2c46c7f5 (patch) | |
tree | 829444acf602d290d6a3eb82b5ccd2c5229d2449 /sysutils/e2fsprogs/Makefile | |
parent | 14e733a6bb4b99ae6fbbab6cb9d6b133583daabb (diff) |
Diffstat (limited to 'sysutils/e2fsprogs/Makefile')
-rw-r--r-- | sysutils/e2fsprogs/Makefile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/sysutils/e2fsprogs/Makefile b/sysutils/e2fsprogs/Makefile new file mode 100644 index 000000000000..a59f478893cd --- /dev/null +++ b/sysutils/e2fsprogs/Makefile @@ -0,0 +1,21 @@ +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> |