gentoo-zh/dev-cpp/tgbot-cpp/tgbot-cpp-1.9.ebuild
jinqiang zhang 4792360bf6 dev-cpp/tgbot-cpp: add 1.9, drop 1.8
Signed-off-by: jinqiang zhang <jinqiang@zhang.my>
2025-02-25 19:21:25 +08:00

34 lines
758 B
Bash

# Copyright 2021-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="C++ library for Telegram bot API"
HOMEPAGE="https://github.com/reo7sp/tgbot-cpp"
SRC_URI="https://github.com/reo7sp/tgbot-cpp/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE="+shared-libs doc test"
RESTRICT="!test? ( test )"
DEPEND="
sys-libs/zlib
dev-libs/openssl:=
>=net-misc/curl-7.56.0
>=dev-libs/boost-1.59.0"
RDEPEND="${DEPEND}"
BDEPEND="doc? ( app-text/doxygen[dot] )"
src_configure() {
mycmakeargs=(
-DENABLE_TESTS=$(usex test ON OFF)
-DBUILD_SHARED_LIBS=$(usex shared-libs ON OFF)
-DBUILD_DOCUMENTATION=$(usex doc ON OFF)
)
cmake_src_configure
}