Added sofia-sip
This commit is contained in:
parent
9733ffbacd
commit
b0088ec370
1
net-libs/sofia-sip/Manifest
Normal file
1
net-libs/sofia-sip/Manifest
Normal file
@ -0,0 +1 @@
|
|||||||
|
DIST v1.13.4.tar.gz 2546133 BLAKE2B f9837af3dc0cafe80195d93f7c30b8b74ad82ea4f3bf5f14ab96b748497cf2e15ca8a98b0941f90927015a3b03abd08d7c5d8bba65ce4cc22790a3f42155db60 SHA512 bec89cedcb0c259b9a938f35cbf1bd4192f64805df7eef864b2efce63f07ba40b26fbaa74ff8028ebb11c500630913888f67e0123082974edbf1af17d4d78a72
|
11
net-libs/sofia-sip/metadata.xml
Normal file
11
net-libs/sofia-sip/metadata.xml
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||||
|
<pkgmetadata>
|
||||||
|
<maintainer type="project">
|
||||||
|
<email>gnome@gentoo.org</email>
|
||||||
|
<name>Gentoo GNOME Desktop</name>
|
||||||
|
</maintainer>
|
||||||
|
<upstream>
|
||||||
|
<remote-id type="sourceforge">sofia-sip</remote-id>
|
||||||
|
</upstream>
|
||||||
|
</pkgmetadata>
|
37
net-libs/sofia-sip/sofia-sip-1.13.4.ebuild
Normal file
37
net-libs/sofia-sip/sofia-sip-1.13.4.ebuild
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
# Copyright 1999-2021 Gentoo Authors
|
||||||
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
|
||||||
|
EAPI=7
|
||||||
|
|
||||||
|
DESCRIPTION="RFC3261 compliant SIP User-Agent library"
|
||||||
|
HOMEPAGE="http://sofia-sip.sourceforge.net/"
|
||||||
|
SRC_URI="https://github.com/freeswitch/sofia-sip/archive/refs/tags/v${PV}.tar.gz"
|
||||||
|
|
||||||
|
LICENSE="LGPL-2.1+ BSD public-domain" # See COPYRIGHT
|
||||||
|
SLOT="0"
|
||||||
|
KEYWORDS="~alpha amd64 ~arm arm64 ~ia64 ppc ~ppc64 sparc x86 ~x86-linux"
|
||||||
|
IUSE="ssl"
|
||||||
|
# tests are broken, see bugs 304607 and 330261
|
||||||
|
RESTRICT="test"
|
||||||
|
|
||||||
|
RDEPEND="
|
||||||
|
dev-libs/glib:2
|
||||||
|
ssl? (
|
||||||
|
dev-libs/openssl:0=
|
||||||
|
)"
|
||||||
|
DEPEND="${RDEPEND}"
|
||||||
|
BDEPEND="virtual/pkgconfig"
|
||||||
|
|
||||||
|
src_configure() {
|
||||||
|
econf \
|
||||||
|
--disable-static \
|
||||||
|
$(use_with ssl openssl)
|
||||||
|
}
|
||||||
|
|
||||||
|
src_install() {
|
||||||
|
default
|
||||||
|
dodoc RELEASE
|
||||||
|
|
||||||
|
# no static archives
|
||||||
|
find "${D}" -name '*.la' -delete || die
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user