add Emby Theater

This commit is contained in:
Mario Fetka
2021-08-20 15:58:48 +02:00
parent e265aa7331
commit 123ebbf1df
69 changed files with 2066 additions and 75 deletions

View File

@@ -0,0 +1,3 @@
DIST libthai-0.1.28.tar.xz 413592 BLAKE2B a6bcf62d7fbdbd130daeaeb673b688afd840d0130ebcda3019de9dea74b6e863729c5558e77acfb87a20f51dda3c1aa5915e0b12c9353f9d1bc4fe0ac9eea4c5 SHA512 925be8367ae0cba026e602f1f60c813306e9051e22fe722afba496b6e493f8c1f3eb56abb77ca663f53678b14ad793daf3269b32d32720c0d869b906cdf15f4e
EBUILD libthai-0.1.28.ebuild 587 BLAKE2B 7ecd2fef12546317295cbfd574c7b90132f5820c89595399d6eb982fe4d8b04990f2bc82a209f4511e6c853b11ca5736b0af8841b0f07dbc694f02614852a61f SHA512 9358590b1e2cc6457eeabad16ad9640755d480a0bf720a448473eac5b01fb320cd8dc56aa376d994fc305fbc49fabacbaab8a900127a8fba8f79250813086a0c
EBUILD libthai-9999.ebuild 554 BLAKE2B 65c1b5175695cffc9c5a2ee0746189861e4db71a3c5f3ee47e8a78ea2c70a54cd0aba6492c09d531493982fa881c7e381ae3ac613f4824053e57dd8cb594e124 SHA512 aed0aa6aba1c26b46b4e66c3b66a437093d14a95951babbc491c6bae38cd100d72def9a72ef251d8b543cf76f462e0a9bfbfadbc559e3863490dbbb45ba3888f

View File

@@ -0,0 +1,33 @@
# 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
}

View File

@@ -0,0 +1,35 @@
# Copyright 1999-2019 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="6"
inherit git-r3
DESCRIPTION="Thai language support routines"
HOMEPAGE="https://linux.thai.net/projects/libthai/"
EGIT_REPO_URI="https://github.com/tlwg/libthai.git"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS=""
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
}