summaryrefslogtreecommitdiff
path: root/net-libs/ortp
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-12-31 20:20:25 +0000
committerV3n3RiX <venerix@koprulu.sector>2022-12-31 20:20:25 +0000
commitc4b414ba84991b36b62c066b701385eaf44cdd49 (patch)
tree5cbdb7a51f1abb965fdfe90b686f8130e100afaa /net-libs/ortp
parentea5bad4d0ba1eb937df22adb7f6cc57ea77f03d8 (diff)
gentoo auto-resync : 31:12:2022 - 20:20:25
Diffstat (limited to 'net-libs/ortp')
-rw-r--r--net-libs/ortp/Manifest3
-rw-r--r--net-libs/ortp/metadata.xml9
-rw-r--r--net-libs/ortp/ortp-0.23.0-r1.ebuild76
3 files changed, 0 insertions, 88 deletions
diff --git a/net-libs/ortp/Manifest b/net-libs/ortp/Manifest
deleted file mode 100644
index d5d9d7fa75c1..000000000000
--- a/net-libs/ortp/Manifest
+++ /dev/null
@@ -1,3 +0,0 @@
-DIST ortp-0.23.0.tar.gz 540135 BLAKE2B 46bc411df48f7f8a2fd180ff75dc5f515c36a71bcaced0d3fcf5336ee8e142c6ae6d597ba39a92c38be78ce74d3eb79692f26596f37075829850222cdf381793 SHA512 70560168f1b138ad825e4e836e7ee218bd24b92a2d76666ba2794a4b31cadbdd8fdd40fee78d612187cde6a827005cbd836cdfc13a70947374356fb84a853ea4
-EBUILD ortp-0.23.0-r1.ebuild 1814 BLAKE2B 1eb39eb3d5b828392848ab307f0c9a385edfc2804ee1b20be08eef604656b71ce10ea334ca7f6114e3c6de42849e76750203f0ef023f787df01d9dbf7574aa8a SHA512 9ae4479564bbc1e4bf1397209cc9c358b811f221759f14833eee4cce1d43a2bdca91f3c2f5653fb82f21036b0ec4c1e3ad49eee9bb320deded65c2ee2a571d5d
-MISC metadata.xml 316 BLAKE2B e16fed41cfbd59c6adccffb0b20facd5b784ef68c5a2b894771d5635fc26f70c3797da37f67dcc06322bb8c897490b2b86e6fa28a7795c09f5753d03fe4bb080 SHA512 1173ac9eccfce2a1b3a034d7dde64824659ab1f033a80ef03389894d67f95f82016513eac13fbd54a3c6a795389200a9072685263c83ca222fcf627539fcf19c
diff --git a/net-libs/ortp/metadata.xml b/net-libs/ortp/metadata.xml
deleted file mode 100644
index 1b5d3956df0b..000000000000
--- a/net-libs/ortp/metadata.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<!-- maintainer-needed -->
- <use>
- <flag name="ntp-timestamp">Turn on NTP timestamping on received packet</flag>
- <flag name="srtp">Add support for Secure RTP</flag>
- </use>
-</pkgmetadata>
diff --git a/net-libs/ortp/ortp-0.23.0-r1.ebuild b/net-libs/ortp/ortp-0.23.0-r1.ebuild
deleted file mode 100644
index 464e2482fe77..000000000000
--- a/net-libs/ortp/ortp-0.23.0-r1.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="Open Real-time Transport Protocol (RTP, RFC3550) stack"
-HOMEPAGE="http://www.linphone.org/"
-SRC_URI="mirror://nongnu/linphone/${PN}/sources/${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0/9"
-KEYWORDS="~alpha amd64 arm64 ~ia64 ppc ppc64 sparc x86 ~ppc-macos ~x64-macos"
-IUSE="debug doc examples ipv6 minimal ntp-timestamp ssl srtp"
-
-RDEPEND="
- ssl? ( dev-libs/openssl:0= )
- srtp? ( net-libs/libsrtp:0= )
-"
-DEPEND="${RDEPEND}
- doc? ( app-doc/doxygen )
- virtual/pkgconfig
-"
-
-src_prepare() {
- default
- # ${P} is added after ${docdir}
- if use doc; then
- sed -i -e 's/$(docdir)\/$(PACKAGE)-$(VERSION)/$(docdir)/' Makefile.in \
- || die "patching Makefile.in failed"
- fi
-}
-
-src_configure() {
- local myeconfargs=(
- # memcheck is for HP-UX only
- --disable-memcheck
- # mode64bit adds +DA2.0W +DS2.0 CFLAGS wich are needed for HP-UX
- --disable-mode64bit
- # strict adds -Werror, do not want it
- --disable-strict
- # they seriously failed to understand AC_ARG_ENABLE...
- --disable-tests_enabled
- --enable-fast-install
- --enable-libtool-lock
- # this is fine as long as we do not link to polarssl
- --enable-broken-srtp
- # zrtp removed from the tree
- --disable-zrtp
-
- $(use_enable debug)
- $(use_enable ipv6)
- $(use_enable minimal perf)
- $(use_enable ntp-timestamp)
- $(use_enable ssl ssl-hmac)
-
- --with-srtp=$(usex srtp "${EPREFIX}"/usr none)
- $(use doc || echo ac_cv_path_DOXYGEN=false)
- )
-
- econf "${myeconfargs[@]}"
-}
-
-src_install() {
- emake DESTDIR="${D}" pkgdocdir="${EPREFIX}"/usr/share/doc/${PF} \
- install
-
- einstalldocs
-
- find "${ED}" -name '*.la' -delete || die
-
- if use examples; then
- docinto examples
- dodoc src/tests/*.c
- docompress -x /usr/share/doc/${PF}/examples
- fi
-}