# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

inherit cmake flag-o-matic

DESCRIPTION="Port of OpenBSD's serial terminal emulator cu(1) to Linux"
HOMEPAGE="https://github.com/tobhe/opencu/"

if [[ "${PV}" == *9999* ]] ; then
	inherit git-r3

	EGIT_REPO_URI="https://github.com/tobhe/${PN}.git"
else
	SRC_URI="https://github.com/tobhe/${PN}/archive/refs/tags/v${PV}.tar.gz
		-> ${P}.gh.tar.gz"

	KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc64 ~riscv ~x86"
fi

LICENSE="ISC"
SLOT="0"
IUSE="custom-cflags"

PATCHES=( "${FILESDIR}/opencu-3-cmake.patch" )

RDEPEND="
	dev-libs/libevent:=
"
DEPEND="
	${RDEPEND}
"

src_configure() {
	if use custom-cflags ; then
		:
	else
		strip-flags
	fi

	cmake_src_configure
}