blob: b0c142039c517d5079ce6f8e3907fda457111e33 (
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
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools
DESCRIPTION="Sayura Sinhala input method for SCIM"
HOMEPAGE="http://www.sayura.net/im/"
SRC_URI="http://www.sayura.net/im/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc"
RDEPEND=">=app-i18n/scim-0.99.8"
DEPEND="${RDEPEND}"
BDEPEND="virtual/pkgconfig"
PATCHES=(
"${FILESDIR}"/${P}-gcc45.patch
)
src_prepare() {
default
eautoreconf
}
src_configure() {
econf
}
src_install() {
local HTML_DOCS=( doc/{index.html,style.css} )
default
use doc && dodoc doc/sayura.pdf
# plugin module, no point in .la files
find "${D}" -type f -name '*.la' -delete || die
}
|