sysutils/e2tools: Utilities to manipulate files in an ext2/ext3 filesystem
PR: 257561
This commit is contained in:
parent
89d4a86d37
commit
73dcbdb9f0
5 changed files with 57 additions and 0 deletions
|
@ -313,6 +313,7 @@
|
|||
SUBDIR += dwatch-json
|
||||
SUBDIR += dwatch-pwsnoop
|
||||
SUBDIR += e2fsprogs
|
||||
SUBDIR += e2tools
|
||||
SUBDIR += ebsnvme-id
|
||||
SUBDIR += ec2-scripts
|
||||
SUBDIR += eclat
|
||||
|
|
18
sysutils/e2tools/Makefile
Normal file
18
sysutils/e2tools/Makefile
Normal file
|
@ -0,0 +1,18 @@
|
|||
PORTNAME= e2tools
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 0.1.0
|
||||
CATEGORIES= sysutils
|
||||
|
||||
MAINTAINER= fuz@fuz.su
|
||||
COMMENT= Utilities to manipulate files in an ext2/ext3 filesystem
|
||||
|
||||
LICENSE= GPLv2
|
||||
LICENSE_FILE= ${WRKSRC}/COPYING
|
||||
|
||||
LIB_DEPENDS= libext2fs.so:sysutils/e2fsprogs
|
||||
|
||||
USES= autoreconf pkgconfig
|
||||
USE_GITHUB= yes
|
||||
GNU_CONFIGURE= yes
|
||||
|
||||
.include <bsd.port.mk>
|
3
sysutils/e2tools/distinfo
Normal file
3
sysutils/e2tools/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
TIMESTAMP = 1627906885
|
||||
SHA256 (e2tools-e2tools-v0.1.0_GH0.tar.gz) = 5988f0f1f68ed69e0e89aa192dda650cf685cdb767b95fa4764be8c44127d97f
|
||||
SIZE (e2tools-e2tools-v0.1.0_GH0.tar.gz) = 94553
|
19
sysutils/e2tools/pkg-descr
Normal file
19
sysutils/e2tools/pkg-descr
Normal file
|
@ -0,0 +1,19 @@
|
|||
e2tools is a simple set of GPL'ed utilities to read, write, and
|
||||
manipulate files in an ext2/ext3 filesystem. These utilities access a
|
||||
filesystem directly using the ext2fs library. I wrote these tools in
|
||||
order to copy files into a linux filesystem on a machine that does not
|
||||
have ext2 support. Of course, they can also be used on a Linux machine
|
||||
to read/write to disk images or floppies without having to mount them
|
||||
or have root access.
|
||||
|
||||
Supported functionality:
|
||||
|
||||
- copy files: e2cp
|
||||
- move files: e2mv
|
||||
- remove files: e2rm
|
||||
- create directory: e2mkdir
|
||||
- create hard links: e2ln
|
||||
- list files/directories: e2ls
|
||||
- output the last part of a file: e2tail
|
||||
|
||||
WWW: https://e2tools.github.io/
|
16
sysutils/e2tools/pkg-plist
Normal file
16
sysutils/e2tools/pkg-plist
Normal file
|
@ -0,0 +1,16 @@
|
|||
bin/e2cp
|
||||
bin/e2ln
|
||||
bin/e2ls
|
||||
bin/e2mkdir
|
||||
bin/e2mv
|
||||
bin/e2rm
|
||||
bin/e2tail
|
||||
bin/e2tools
|
||||
man/man1/e2cp.1.gz
|
||||
man/man1/e2ln.1.gz
|
||||
man/man1/e2ls.1.gz
|
||||
man/man1/e2mkdir.1.gz
|
||||
man/man1/e2mv.1.gz
|
||||
man/man1/e2rm.1.gz
|
||||
man/man1/e2tail.1.gz
|
||||
man/man7/e2tools.7.gz
|
Loading…
Reference in a new issue