diff options
author | Jakov Smolić <jsmolic@gentoo.org> | 2022-12-31 19:06:39 +0100 |
---|---|---|
committer | Jakov Smolić <jsmolic@gentoo.org> | 2022-12-31 19:06:39 +0100 |
commit | 4f81fc2a9ee32830dec2d16a48fdd34aea7d7a71 (patch) | |
tree | 91001c9a8146d02ff28731601247dd94568df6c4 /net-libs | |
parent | net-nntp/brag: treeclean (diff) | |
download | gentoo-4f81fc2a9ee32830dec2d16a48fdd34aea7d7a71.tar.gz gentoo-4f81fc2a9ee32830dec2d16a48fdd34aea7d7a71.tar.bz2 gentoo-4f81fc2a9ee32830dec2d16a48fdd34aea7d7a71.zip |
net-libs/ortp: treeclean
Closes: https://bugs.gentoo.org/672362
Closes: https://bugs.gentoo.org/874003
Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
Diffstat (limited to 'net-libs')
-rw-r--r-- | net-libs/ortp/Manifest | 1 | ||||
-rw-r--r-- | net-libs/ortp/metadata.xml | 9 | ||||
-rw-r--r-- | net-libs/ortp/ortp-0.23.0-r1.ebuild | 76 |
3 files changed, 0 insertions, 86 deletions
diff --git a/net-libs/ortp/Manifest b/net-libs/ortp/Manifest deleted file mode 100644 index 896deddf9d46..000000000000 --- a/net-libs/ortp/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST ortp-0.23.0.tar.gz 540135 BLAKE2B 46bc411df48f7f8a2fd180ff75dc5f515c36a71bcaced0d3fcf5336ee8e142c6ae6d597ba39a92c38be78ce74d3eb79692f26596f37075829850222cdf381793 SHA512 70560168f1b138ad825e4e836e7ee218bd24b92a2d76666ba2794a4b31cadbdd8fdd40fee78d612187cde6a827005cbd836cdfc13a70947374356fb84a853ea4 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 -} |