blob: 996b1508ab82309ec8488ba712e6bbb0adc29401 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
# Copyright 2020-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
LUA_COMPAT=(lua{5-1,5-2,5-3,5-4})
inherit cmake lua-single
if [[ "${PV}" == "99999999999999" ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/hchunhui/librime-lua"
else
LIBRIME_LUA_GIT_REVISION="d45a41af2f9d731e3c1516a191cc3160e3cb8377"
fi
DESCRIPTION="Lua support for RIME"
HOMEPAGE="https://github.com/hchunhui/librime-lua"
if [[ "${PV}" == "99999999999999" ]]; then
SRC_URI=""
else
SRC_URI="https://github.com/hchunhui/${PN}/archive/${LIBRIME_LUA_GIT_REVISION}.tar.gz -> ${P}.tar.gz"
fi
LICENSE="BSD MIT"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
IUSE=""
REQUIRED_USE="${LUA_REQUIRED_USE}"
BDEPEND=""
RDEPEND=">=app-i18n/librime-1.6:0=
${LUA_DEPS}"
DEPEND="${RDEPEND}
dev-libs/boost:0"
if [[ "${PV}" != "99999999999999" ]]; then
S="${WORKDIR}/${PN}-${LIBRIME_LUA_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
}
|