# Copyright 2020-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="7" inherit cmake if [[ "${PV}" == "99999999999999" ]]; then inherit git-r3 EGIT_REPO_URI="https://github.com/rime/librime-charcode" else LIBRIME_CHARCODE_GIT_REVISION="b569184772b12965e3ebe1dfd431026951fed81c" fi DESCRIPTION="Charcode plugin for RIME" HOMEPAGE="https://github.com/rime/librime-charcode" if [[ "${PV}" == "99999999999999" ]]; then SRC_URI="" else SRC_URI="https://github.com/rime/${PN}/archive/${LIBRIME_CHARCODE_GIT_REVISION}.tar.gz -> ${P}.tar.gz" fi LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" BDEPEND="" RDEPEND=">=app-i18n/librime-1.6:0=" DEPEND="${RDEPEND} dev-libs/boost:0" if [[ "${PV}" != "99999999999999" ]]; then S="${WORKDIR}/${PN}-${LIBRIME_CHARCODE_GIT_REVISION}" fi src_prepare() { sed \ -e "1icmake_minimum_required(VERSION 3.0)\nproject(${PN})\n" \ -e "s/ PARENT_SCOPE//" \ -e "\$a\\\n" \ -e "\$aadd_library(\${plugin_modules} MODULE \${plugin_objs})" \ -e "\$aset_target_properties(\${plugin_modules} PROPERTIES PREFIX \"\")" \ -e "\$atarget_link_libraries(\${plugin_modules} rime \${plugin_deps})" \ -e "\$ainstall(TARGETS \${plugin_modules} DESTINATION $(get_libdir)/rime-plugins)" \ -i CMakeLists.txt || die cmake_src_prepare } src_configure() { local -x CXXFLAGS="${CXXFLAGS} -I${ESYSROOT}/usr/include/utf8cpp" cmake_src_configure }