include $(TOPDIR)/rules.mk

PKG_NAME:=netifd
PKG_RELEASE:=6

PKG_SOURCE_DATE:=2023-02-25
PKG_MAINTAINER:=Felix Fietkau <nbd@nbd.name>
PKG_RELEASE:=3

PKG_SOURCE_PROTO:=git
PKG_SOURCE_URL=$(PROJECT_GIT)/project/netifd.git
PKG_SOURCE_VERSION:=463a1207f0766417866e2c28316e58a96f84370b

PKG_LICENSE:=GPL-2.0
PKG_LICENSE_FILES:=

PKG_BUILD_FLAGS:=lto

include $(INCLUDE_DIR)/package.mk
include $(INCLUDE_DIR)/cmake.mk

define Package/netifd
  SECTION:=base
  CATEGORY:=Base system
  DEPENDS:=+libuci +libnl +libubus +ubus +ubusd +jshn +libubox +liblog +libnl-route
  TITLE:=OpenWrt Network Interface Configuration Daemon
endef

define Package/netifd/conffiles
/etc/udhcpc.user
/etc/udhcpc.user.d/
endef

TARGET_CFLAGS += \
	-I$(STAGING_DIR)/usr/include/libnl3 \
	-I$(STAGING_DIR)/usr/include

TARGET_LDFLAGS += -llog

CMAKE_OPTIONS += \
	-DLIBNL_LIBS=-lnl-3 \
	-DDEBUG=1

define Package/netifd/install
	$(INSTALL_DIR) $(1)/sbin
	$(INSTALL_BIN) $(PKG_BUILD_DIR)/netifd $(1)/sbin/
	$(CP) ./files/* $(1)/
	$(INSTALL_DIR) $(1)/etc/udhcpc.user.d/
	$(CP) $(PKG_BUILD_DIR)/scripts/* $(1)/lib/netifd/

	$(if $(CONFIG_SMP_SUPPORT),, \
		rm $(1)/etc/hotplug.d/net/20-smp-packet-steering)

endef

$(eval $(call BuildPackage,netifd))
