aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'gkbuilds')
-rw-r--r--gkbuilds/e2fsprogs.gkbuild41
1 files changed, 41 insertions, 0 deletions
diff --git a/gkbuilds/e2fsprogs.gkbuild b/gkbuilds/e2fsprogs.gkbuild
new file mode 100644
index 00000000..78c71936
--- /dev/null
+++ b/gkbuilds/e2fsprogs.gkbuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+src_configure() {
+ append-ldflags -static
+
+ export VARTEXFONTS="${T}/fonts"
+
+ local myconf=(
+ --bindir=/bin
+ --with-root-prefix=""
+ --disable-nls
+ --disable-libblkid
+ --disable-libuuid
+ --disable-fsck
+ --disable-uuidd
+ --disable-debugfs
+ --disable-imager
+ --disable-resizer
+ --disable-defrag
+ )
+
+ gkconf "${myconf[@]}"
+}
+
+src_install() {
+ mkdir "${D}"/sbin || die "Failed to create '${D}/sbin'!"
+
+ local file=
+ for file in \
+ e2fsck/e2fsck \
+ misc/mke2fs \
+ ; do
+ cp -a "${S}"/${file} "${D}"/sbin/ \
+ || die "Failed to copy '${S}/${file}' to '${D}/sbin/'!"
+
+ local filename=$(basename "${file}")
+ "${STRIP}" --strip-all "${D}"/sbin/${filename} \
+ || die "Failed to strip '${D}/sbin/${file}'!"
+ done
+}