# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 inherit flag-o-matic DESCRIPTION="GNU ccRTP - Implementation of the IETF real-time transport protocol" HOMEPAGE="https://www.gnu.org/software/ccrtp/" SRC_URI="mirror://gnu/${PN}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="debug doc static-libs" RDEPEND="dev-cpp/commoncpp2:0= dev-libs/libgcrypt:0= dev-libs/ucommon:0=" DEPEND="${RDEPEND}" BDEPEND="virtual/pkgconfig doc? ( app-text/doxygen )" src_configure() { append-cxxflags -std=c++11 econf "$(use_enable debug)" "$(use_enable static-libs static)" } src_install() { default find "${D}" -name '*.la' -delete || die "find failed" }