2010-11-22 11:26:45 +00:00
|
|
|
#
|
2015-11-08 20:40:03 +00:00
|
|
|
# Copyright (C) 2010-2015 OpenWrt.org
|
2010-11-22 11:26:45 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=e2fsprogs
|
2017-09-28 02:55:46 +00:00
|
|
|
PKG_CPE_ID:=cpe:/a:e2fsprogs_project:e2fsprogs
|
2023-02-11 14:22:41 +00:00
|
|
|
PKG_VERSION:=1.47.0
|
2024-04-03 17:12:57 +00:00
|
|
|
PKG_HASH:=0b4fe723d779b0927fb83c9ae709bc7b40f66d7df36433bef143e41c54257084
|
2010-11-22 11:26:45 +00:00
|
|
|
|
2024-04-03 17:12:57 +00:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
2017-02-06 19:05:36 +00:00
|
|
|
PKG_SOURCE_URL:=@KERNEL/linux/kernel/people/tytso/e2fsprogs/v$(PKG_VERSION)/
|
2010-11-22 11:26:45 +00:00
|
|
|
|
2012-09-15 14:18:07 +00:00
|
|
|
HOST_BUILD_PARALLEL:=1
|
|
|
|
|
2010-11-22 11:26:45 +00:00
|
|
|
include $(INCLUDE_DIR)/host-build.mk
|
|
|
|
|
2018-09-15 13:49:31 +00:00
|
|
|
ifneq ($(shell $(HOSTCC) --version | grep clang),)
|
2020-04-10 10:37:26 +00:00
|
|
|
HOST_CFLAGS += -D__GNUC_PREREQ\(...\)=0 -Dloff_t=off_t
|
2018-09-15 13:49:31 +00:00
|
|
|
endif
|
2021-06-19 22:11:23 +00:00
|
|
|
HOST_CFLAGS += $(HOST_FPIC)
|
2010-11-22 11:26:45 +00:00
|
|
|
|
2012-06-10 09:22:07 +00:00
|
|
|
HOST_CONFIGURE_ARGS += \
|
2012-06-10 12:24:59 +00:00
|
|
|
--disable-elf-shlibs \
|
2024-06-25 17:43:30 +00:00
|
|
|
--disable-libuuid \
|
2012-06-10 07:43:43 +00:00
|
|
|
--disable-tls \
|
2020-02-03 13:21:56 +00:00
|
|
|
--disable-nls \
|
2024-03-24 09:40:31 +00:00
|
|
|
--enable-threads=pth \
|
2024-09-25 11:31:29 +00:00
|
|
|
--disable-fuse2fs \
|
|
|
|
--with-crond-dir=no
|
2010-11-22 11:26:45 +00:00
|
|
|
|
2024-09-25 17:42:15 +00:00
|
|
|
# The following uses pkg-config the wrong way around. Just override it.
|
|
|
|
HOST_CONFIGURE_VARS += \
|
|
|
|
ac_cv_lib_uuid_uuid_generate=yes
|
|
|
|
|
2012-12-02 18:35:39 +00:00
|
|
|
define Host/Prepare
|
|
|
|
$(call Host/Prepare/Default)
|
|
|
|
rm -rf $(HOST_BUILD_DIR)/doc
|
|
|
|
endef
|
|
|
|
|
2024-06-30 16:08:40 +00:00
|
|
|
define Host/Install
|
|
|
|
$(call Host/Install/Default)
|
2024-07-02 09:14:17 +00:00
|
|
|
$(SED) 's|^DIR=.*|DIR=$$$${STAGING_DIR_HOST}/share/et|' $(STAGING_DIR_HOST)/bin/compile_et
|
|
|
|
$(SED) 's|^DIR=.*|DIR=$$$${STAGING_DIR_HOST}/share/ss|' $(STAGING_DIR_HOST)/bin/mk_cmds
|
2024-06-30 16:08:40 +00:00
|
|
|
endef
|
|
|
|
|
2024-06-25 17:45:12 +00:00
|
|
|
define Host/Uninstall
|
|
|
|
-$(call Host/Compile/Default,uninstall)
|
2010-11-22 11:26:45 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call HostBuild))
|