34 lines
587 B
Bash
34 lines
587 B
Bash
|
# Copyright 1999-2019 Gentoo Foundation
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
|
||
|
EAPI="6"
|
||
|
|
||
|
DESCRIPTION="Thai language support routines"
|
||
|
HOMEPAGE="https://linux.thai.net/projects/libthai/"
|
||
|
SRC_URI="https://linux.thai.net/pub/thailinux/software/libthai/libthai-${PV}.tar.xz"
|
||
|
|
||
|
|
||
|
LICENSE="LGPL-2.1"
|
||
|
SLOT="0"
|
||
|
KEYWORDS="~amd64 ~x86"
|
||
|
|
||
|
RDEPEND="dev-libs/libdatrie"
|
||
|
DEPEND="${RDEPEND}"
|
||
|
|
||
|
#src_prepare() {
|
||
|
# default
|
||
|
#
|
||
|
# ./autogen.sh || die
|
||
|
#}
|
||
|
|
||
|
src_configure() {
|
||
|
local myeconfargs=(
|
||
|
--disable-dict
|
||
|
)
|
||
|
econf "${myeconfargs[@]}"
|
||
|
}
|
||
|
|
||
|
src_test() {
|
||
|
emake check test
|
||
|
}
|