ortp: moved to telephony feed
authorNicolas Thill <nico@openwrt.org>
Sat, 21 Feb 2015 04:09:33 +0000 (05:09 +0100)
committerNicolas Thill <nico@openwrt.org>
Sat, 21 Feb 2015 04:09:33 +0000 (05:09 +0100)
Signed-off-by: Nicolas Thill <nico@openwrt.org>
libs/ortp/Makefile [deleted file]

diff --git a/libs/ortp/Makefile b/libs/ortp/Makefile
deleted file mode 100644 (file)
index 21c79b9..0000000
+++ /dev/null
@@ -1,79 +0,0 @@
-#
-# Copyright (C) 2010-2015 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:=ortp
-PKG_VERSION:=0.23.0
-PKG_RELEASE:=1
-
-PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
-PKG_SOURCE_URL:=@SAVANNAH/linphone/ortp/sources
-PKG_MD5SUM:=fb833cc7a66ec1a0c1b75016130e7e6d
-
-PKG_LICENSE:=LGPL-2.1
-PKG_LICENSE_FILES:=COPYING
-PKG_MAINTAINER:=Nicolas Thill <nico@openwrt.org>
-
-PKG_INSTALL:=1
-
-include $(INCLUDE_DIR)/package.mk
-
-define Package/libortp
-  SECTION:=libs
-  CATEGORY:=Libraries
-  TITLE:=Real-time Transport Protocol (RTP) library
-  URL:=http://www.linphone.org/technical-corner/ortp/overview
-  DEPENDS:= +libpthread +librt
-endef
-
-ifneq ($(CONFIG_avr32),)
-  TARGET_CFLAGS += -fsigned-char
-endif
-
-CONFIGURE_ARGS += \
-       --enable-shared \
-       --enable-static \
-       --disable-debug \
-       --enable-ipv6 \
-       --enable-perf \
-       --disable-ssl-hmac \
-       --disable-tests \
-       --without-srtp \
-
-CONFIGURE_VARS += \
-       ac_cv_header_srtp_srtp_h=no \
-       ac_cv_lib_srtp_srtp_init=no \
-       ac_cv_path_DOXYGEN= \
-
-define Build/InstallDev
-       $(INSTALL_DIR) $(1)/usr/include
-       ( cd $(PKG_INSTALL_DIR); $(CP) \
-               ./usr/include/ortp \
-               $(1)/usr/include/ \
-       )
-       $(INSTALL_DIR) $(1)/usr/lib
-       ( cd $(PKG_INSTALL_DIR); $(CP) \
-               ./usr/lib/libortp.{a,so*} \
-               $(1)/usr/lib/ \
-       )
-       $(INSTALL_DIR) $(1)/usr/lib/pkgconfig
-       ( cd $(PKG_INSTALL_DIR); $(CP) \
-               ./usr/lib/pkgconfig/ortp.pc \
-               $(1)/usr/lib/pkgconfig/ \
-       )
-endef
-
-define Package/libortp/install
-       $(INSTALL_DIR) $(1)/usr/lib
-       ( cd $(PKG_INSTALL_DIR); $(CP) \
-               ./usr/lib/libortp.so.* \
-               $(1)/usr/lib/ \
-       )
-endef
-
-$(eval $(call BuildPackage,libortp))