mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-04 22:18:55 +02:00
84 lines
2.3 KiB
Bash
84 lines
2.3 KiB
Bash
SUMMARY="Standard EXT2/EXT3/EXT4 filesystem utilities"
|
|
DESCRIPTION="Various tools to manage EXT2,3,4 filesystems (resize, etc)"
|
|
HOMEPAGE="http://e2fsprogs.sourceforge.net/"
|
|
SOURCE_URI="https://sourceforge.net/projects/e2fsprogs/files/e2fsprogs/v$portVersion/e2fsprogs-$portVersion.tar.gz"
|
|
CHECKSUM_SHA256="5be0ffc01b9720a3f3ccfc86396016baf1334b98751fefa09e0c63eaffdc3897"
|
|
REVISION="2"
|
|
ARCHITECTURES=""
|
|
SECONDARY_ARCHITECTURES="x86"
|
|
PATCHES="e2fsprogs-$portVersion.patchset"
|
|
|
|
PROVIDES="
|
|
e2fsprogs$secondaryArchSuffix = $portVersion
|
|
cmd:badblocks$secondaryArchSuffix
|
|
cmd:blkid$secondaryArchSuffix
|
|
cmd:chattr$secondaryArchSuffix
|
|
cmd:dumpe2fs$secondaryArchSuffix
|
|
cmd:e2freefrag$secondaryArchSuffix
|
|
cmd:e2fsck$secondaryArchSuffix
|
|
cmd:e2image$secondaryArchSuffix
|
|
cmd:e2label$secondaryArchSuffix
|
|
cmd:e2undo$secondaryArchSuffix
|
|
cmd:filefrag$secondaryArchSuffix
|
|
cmd:findfs$secondaryArchSuffix
|
|
cmd:fsck.ext2$secondaryArchSuffix
|
|
cmd:fsck.ext3$secondaryArchSuffix
|
|
cmd:fsck.ext4$secondaryArchSuffix
|
|
cmd:logsave$secondaryArchSuffix
|
|
cmd:lsattr$secondaryArchSuffix
|
|
cmd:mke2fs$secondaryArchSuffix
|
|
cmd:mkfs.ext2$secondaryArchSuffix
|
|
cmd:mkfs.ext3$secondaryArchSuffix
|
|
cmd:mkfs.ext4$secondaryArchSuffix
|
|
cmd:mklost+found$secondaryArchSuffix
|
|
cmd:resize2fs$secondaryArchSuffix
|
|
cmd:tune2fs$secondaryArchSuffix
|
|
cmd:uuidd$secondaryArchSuffix
|
|
cmd:uuidgen$secondaryArchSuffix
|
|
lib:libblkid$secondaryArchSuffix = 1.0 compat >= 1
|
|
lib:libcom_err$secondaryArchSuffix = 2.1 compat >= 2
|
|
lib:libe2p$secondaryArchSuffix = 2.3 compat >= 2
|
|
lib:libext2fs$secondaryArchSuffix = 2.4 compat >= 2
|
|
lib:libss$secondaryArchSuffix = 2.0 compat >= 2
|
|
lib:libuuid$secondaryArchSuffix = 1.2 compat >= 1
|
|
"
|
|
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
lib:libintl$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
devel:libintl$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD_PREREQUIRES="
|
|
cmd:autoconf
|
|
cmd:gcc$secondaryArchSuffix
|
|
cmd:make
|
|
"
|
|
|
|
GLOBAL_WRITABLE_FILES="
|
|
settings/mke2fs.conf keep-old
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
autoconf
|
|
libdir=`finddir B_COMMON_LIB_DIRECTORY`
|
|
runConfigure ./configure \
|
|
USE=-loop-aes --disable-tls \
|
|
--disable-fsck --disable-debugfs \
|
|
--enable-elf-shlibs --enable-symlink-build --enable-symlink-install
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install
|
|
}
|
|
|
|
LICENSE="GNU GPL v2"
|
|
COPYRIGHT="2004-2017 Theodore Ts'o"
|