summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2018-06-20 18:55:32 +0200
committerPacho Ramos <pacho@gentoo.org>2018-06-20 18:59:32 +0200
commitd52220571c9e2280f6eabfcb3dc6aa82c9908969 (patch)
tree439b271927ce52513c6888d8f6e6ae8c7dc0c39f /net-libs/ortp
parentnet-libs/libeXosip: Drop old/broken version (diff)
downloadgentoo-d52220571c9e2280f6eabfcb3dc6aa82c9908969.tar.gz
gentoo-d52220571c9e2280f6eabfcb3dc6aa82c9908969.tar.bz2
gentoo-d52220571c9e2280f6eabfcb3dc6aa82c9908969.zip
net-libs/ortp: Drop old
Package-Manager: Portage-2.3.40, Repoman-2.3.9
Diffstat (limited to 'net-libs/ortp')
-rw-r--r--net-libs/ortp/Manifest1
-rw-r--r--net-libs/ortp/ortp-0.20.0.ebuild76
2 files changed, 0 insertions, 77 deletions
diff --git a/net-libs/ortp/Manifest b/net-libs/ortp/Manifest
index 039f3ed17eb9..896deddf9d46 100644
--- a/net-libs/ortp/Manifest
+++ b/net-libs/ortp/Manifest
@@ -1,2 +1 @@
-DIST ortp-0.20.0.tar.gz 515505 BLAKE2B 94e0127d5e6a13e520a74f193cf8e99325b2605405aea3772ed6bf94dc1b1c4b967b6e608e3a96bda56a022d253e2623e8177c6dec4c4cfc95eb99d192a86013 SHA512 a4d666be6b6825eeb28204001d5d1263c80ef3c07931586e753d3efa8c72d76e993335c4eeaa558209b5d10d5e991ba0c88e2f5c9a35aff46b36d6e76f92b706
DIST ortp-0.23.0.tar.gz 540135 BLAKE2B 46bc411df48f7f8a2fd180ff75dc5f515c36a71bcaced0d3fcf5336ee8e142c6ae6d597ba39a92c38be78ce74d3eb79692f26596f37075829850222cdf381793 SHA512 70560168f1b138ad825e4e836e7ee218bd24b92a2d76666ba2794a4b31cadbdd8fdd40fee78d612187cde6a827005cbd836cdfc13a70947374356fb84a853ea4
diff --git a/net-libs/ortp/ortp-0.20.0.ebuild b/net-libs/ortp/ortp-0.20.0.ebuild
deleted file mode 100644
index 9b860bad5ada..000000000000
--- a/net-libs/ortp/ortp-0.20.0.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils
-
-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"
-KEYWORDS="alpha amd64 ia64 ppc ppc64 sparc x86 ~x86-fbsd ~ppc-macos ~x64-macos ~x86-macos"
-IUSE="debug doc examples ipv6 minimal srtp ssl" # zrtp"
-
-# Note:
-# This package supposedly requires libzrtpcpp-2.0.0
-# but it is incompatible with its API...
-
-RDEPEND="srtp? ( net-libs/libsrtp )
- ssl? ( dev-libs/openssl )"
-# zrtp? ( >=net-libs/libzrtpcpp-2.0.0 )"
-DEPEND="${RDEPEND}
- doc? ( app-doc/doxygen )
- virtual/pkgconfig"
-
-#REQUIRED_USE="zrtp? ( srtp )"
-
-src_prepare() {
- # ${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, don't want it
- --disable-strict
- # they seriously failed to understand AC_ARG_ENABLE...
- --disable-tests_enabled
- --enable-fast-install
- --enable-libtool-lock
-
- $(use_enable debug)
- $(use_enable ipv6)
- $(use_enable minimal perf)
- $(use_enable ssl ssl-hmac)
-# $(use_enable zrtp)
- --disable-zrtp
-
- "--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
- dodoc AUTHORS ChangeLog NEWS README TODO
-
- prune_libtool_files
-
- if use examples; then
- insinto /usr/share/doc/${PF}/examples
- doins src/tests/*.c
- fi
-}