# # Copyright (C) 2014 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. # include $(TOPDIR)/rules.mk PKG_NAME:=dahdi-tools PKG_VERSION:=2.10.0.1 PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=http://downloads.asterisk.org/pub/telephony/dahdi-tools/releases/ PKG_MD5SUM:=224c5b86195249d5ce462ca316332087 PKG_LICENSE:=GPL-2.0 PKG_LICENSE_FILES:=LICENSE PKG_MAINTAINER:=Vittorio Gambaletta include $(INCLUDE_DIR)/package.mk define Package/dahdi-cfg/Default SECTION:=utils CATEGORY:=Utilities SUBMENU:=Telephony DEPENDS=+kmod-dahdi endef define Package/dahdi-cfg $(call Package/dahdi-cfg/Default) DEPENDS+=+libpthread TITLE:=DAHDI tools dahdi_cfg and dahdi_scan endef define Package/dahdi-monitor $(call Package/dahdi-cfg/Default) TITLE:=DAHDI tools dahdi_monitor, dahdi_speed and dahdi_test endef define Package/dahdi-tool $(call Package/dahdi-cfg/Default) TITLE:=DAHDI tools dahdi_tool endef define Package/dahdi-tools-libtonezone $(call Package/dahdi-cfg/Default) SECTION:=libs CATEGORY:=Libraries TITLE:=DAHDI tonezone library endef TARGET_CFLAGS += $(FPIC) EXTRA_CFLAGS:= $(TARGET_CPPFLAGS) CONFIGURE_ARGS+= \ --with-dahdi="$(STAGING_DIR)/usr" \ --without-newt \ --without-usb \ --without-selinux \ --without-ppp define Build/Compile $(MAKE) -C $(PKG_BUILD_DIR) \ $(TARGET_CONFIGURE_OPTS) \ HOSTCC="$(HOSTCC)" \ CROSS_COMPILE="$(TARGET_CROSS)" \ CFLAGS="$(TARGET_CFLAGS) -I. -DBUILDING_TONEZONE -I$(STAGING_DIR)/usr/include" \ KSRC="$(LINUX_DIR)" \ DESTDIR="$(PKG_INSTALL_DIR)" \ INSTALL_PREFIX="$(PKG_INSTALL_DIR)" \ DAHDI_INCLUDE="$(STAGING_DIR)/usr/include" \ CONFIGURE_SILENT="--silent" \ dahdi_cfg dahdi_monitor dahdi_tool dahdi_scan dahdi_speed dahdi_test fxotune libs endef define Build/InstallDev $(INSTALL_DIR) $(1)/usr/lib $(CP) $(PKG_BUILD_DIR)/libtonezone.so $(1)/usr/lib/ $(CP) $(PKG_BUILD_DIR)/libtonezone.a $(1)/usr/lib/ $(INSTALL_DIR) $(1)/usr/include/dahdi $(CP) $(PKG_BUILD_DIR)/tonezone.h $(1)/usr/include/dahdi/ endef define Package/dahdi-cfg/install $(INSTALL_DIR) $(1)/usr/sbin $(CP) $(PKG_BUILD_DIR)/dahdi_cfg $(1)/usr/sbin/ $(CP) $(PKG_BUILD_DIR)/dahdi_scan $(1)/usr/sbin/ endef define Package/dahdi-monitor/install $(INSTALL_DIR) $(1)/usr/sbin $(CP) $(PKG_BUILD_DIR)/dahdi_monitor $(1)/usr/sbin/ $(CP) $(PKG_BUILD_DIR)/dahdi_speed $(1)/usr/sbin/ $(CP) $(PKG_BUILD_DIR)/dahdi_test $(1)/usr/sbin/ endef define Package/dahdi-tool/install $(INSTALL_DIR) $(1)/usr/sbin $(CP) $(PKG_BUILD_DIR)/dahdi_tool $(1)/usr/sbin/ endef define Package/dahdi-tools-libtonezone/install $(INSTALL_DIR) $(1)/usr/lib $(CP) $(PKG_BUILD_DIR)/libtonezone.so $(1)/usr/lib/ cd $(1)/usr/lib/; ln -s libtonezone.so libtonezone.so.2.0 endef $(eval $(call BuildPackage,dahdi-cfg)) $(eval $(call BuildPackage,dahdi-monitor)) $(eval $(call BuildPackage,dahdi-tool)) $(eval $(call BuildPackage,dahdi-tools-libtonezone))