treewide: refresh hashes after move to use ZSTD as default
[feed/telephony.git] / net / asterisk-chan-lantiq / Makefile
index 0f2dbdbd1b15680556a4d7a7ad8e02cba87feaf1..b58ada2257b66142418c5b5784578c3b0912b4b9 100644 (file)
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2017 OpenWrt.org
+# Copyright (C) 2018 OpenWrt.org
 #
 # This is free software, licensed under the GNU General Public License v2.
 # See /LICENSE for more information.
@@ -7,73 +7,46 @@
 
 include $(TOPDIR)/rules.mk
 
-PKG_NAME:=chan-lantiq
-PKG_VERSION:=20170304
+PKG_NAME:=asterisk-chan-lantiq
 PKG_RELEASE:=1
 
+PKG_SOURCE_URL:=https://github.com/kochstefan/asterisk_channel_lantiq.git
+PKG_SOURCE_VERSION:=2f029ec8778420538c8151c6aceba0f7b44b07c9
+PKG_SOURCE_DATE:=2021-09-11
+PKG_MIRROR_HASH:=9691624fb3465fb6af4f5d391dc4c0fc99dbb095e29cbef0574cf5838fb27053
+PKG_SOURCE_PROTO:=git
+
 PKG_LICENSE:=GPL-2.0
+
 PKG_MAINTAINER:=Jiri Slachta <jiri@slachta.eu>
 
-PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT)/$(PKG_NAME)-$(PKG_VERSION)
+PKG_FLAGS:=nonshared
 
 include $(INCLUDE_DIR)/package.mk
 
-define Package/$(PKG_NAME)/Default
-  SUBMENU:=Telephony
+define Package/$(PKG_NAME)
+  SUBMENU:=Telephony Lantiq
   SECTION:=net
   CATEGORY:=Network
   TITLE:=Lantiq channel driver
   URL:=https://github.com/kochstefan/asterisk_channel_lantiq
-  DEPENDS:=+kmod-ltq-vmmc
-endef
-
-define Package/asterisk13-$(PKG_NAME)
-$(call Package/$(PKG_NAME)/Default)
-  DEPENDS+=asterisk13
-  VARIANT:=asterisk13
+  DEPENDS:=+asterisk +kmod-ltq-vmmc
+  USERID:=asterisk=385::vmmc=386
 endef
 
-define Package/description/Default
+define Package/$(PKG_NAME)/description
 An implementation of a Lantiq TAPI channel driver for Asterisk.
 endef
 
-Package/asterisk13-$(PKG_NAME)/description = $(Package/description/Default)
-
-define Package/conffiles/Default
+define Package/$(PKG_NAME)/conffiles
 /etc/asterisk/lantiq.conf
 endef
 
-Package/asterisk13-$(PKG_NAME)/conffiles = $(Package/conffiles/Default)
-
-define Package/Install/Default
-       $(INSTALL_DIR) $(1)/etc/asterisk
-       $(INSTALL_CONF) ./files/lantiq-$(BUILD_VARIANT).conf.sample \
-               $(1)/etc/asterisk/lantiq.conf
-       $(INSTALL_DIR) $(1)/usr/lib/asterisk/modules
-       $(INSTALL_BIN) $(PKG_BUILD_DIR)/chan_lantiq.so \
-               $(1)/usr/lib/asterisk/modules
-endef
-
-Package/asterisk13-$(PKG_NAME)/install = $(Package/Install/Default)
-
-ifeq ($(BUILD_VARIANT),asterisk13)
-CHAN_LANTIQ_AST_INCLUDES:=-I$(STAGING_DIR)/usr/include/asterisk-13/include
-endif
-
-define Build/Prepare
-       $(CP) ./files/chan_lantiq-$(BUILD_VARIANT).c $(PKG_BUILD_DIR)/chan_lantiq.c
-       $(CP) ./files/default.exports $(PKG_BUILD_DIR)/chan_lantiq.exports
-endef
-
-define Build/Configure
-endef
-
 define Build/Compile
-       cd $(PKG_BUILD_DIR) && \
+       cd $(PKG_BUILD_DIR)/src/channels && \
        $(TARGET_CC) -o chan_lantiq.o -c chan_lantiq.c -MD -MT chan_lantiq.o \
                -MF .chan_lantiq.o.d -MP -pthread \
-               $(TARGET_CFLAGS) \
-               $(CHAN_LANTIQ_AST_INCLUDES) \
+               $(TARGET_CFLAGS) -DAST_MODULE_SELF_SYM=__internal_chan_lantiq_self \
                $(TARGET_CPPFLAGS) \
                -Wall -Wstrict-prototypes -Wmissing-prototypes \
                -Wmissing-declarations $(FPIC) -DAST_MODULE=\"chan_lantiq\" && \
@@ -82,4 +55,15 @@ define Build/Compile
                chan_lantiq.o
 endef
 
-$(eval $(call BuildPackage,asterisk13-$(PKG_NAME)))
+define Package/$(PKG_NAME)/install
+       $(INSTALL_DIR) $(1)/etc/asterisk
+       $(INSTALL_DATA) \
+               $(PKG_BUILD_DIR)/src/configs/samples/lantiq.conf.sample \
+               $(1)/etc/asterisk/lantiq.conf
+       $(INSTALL_DIR) $(1)/usr/lib/asterisk/modules
+       $(INSTALL_BIN) \
+               $(PKG_BUILD_DIR)/src/channels/chan_lantiq.so \
+               $(1)/usr/lib/asterisk/modules
+endef
+
+$(eval $(call BuildPackage,$(PKG_NAME)))