You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
redhub-common/net-voip/twinkle/twinkle-1.10.3-r2.ebuild

44 lines
961 B

# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="Softphone for VoIP communcations using SIP protocol"
HOMEPAGE="http://twinkle.dolezel.info/"
SRC_URI="https://github.com/LubosD/twinkle/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="alsa diamondcard g729 ilbc speex +qt5 +zrtp"
DEPEND="dev-libs/boost
dev-libs/ucommon
dev-libs/libxml2
media-libs/fontconfig
media-libs/libsndfile
net-libs/ccrtp
alsa? ( media-libs/alsa-lib )
g729? ( media-libs/bcg729 )
ilbc? ( media-libs/libilbc )
speex? ( media-libs/speex )
zrtp? ( net-libs/zrtpcpp )"
RDEPEND="${DEPEND}"
BDEPEND=""
src_configure() {
local mycmakeargs=(
-DWITH_ALSA=$(usex alsa)
-DWITH_DIAMONDCARD=$(usex diamondcard)
-DWITH_G729=$(usex g729)
-DWITH_ILBC=$(usex ilbc)
-DWITH_QT5=$(usex qt5)
-DWITH_SPEEX=$(usex speex)
)
cmake_src_configure
}