gentoo-ebuilds/app-i18n/mecab-skkserv/mecab-skkserv-0.03-r1.ebuild
Brahmajit Das 369833578f
app-i18n/mecab-skkserv: Fix call to undeclared library function strcmp
and update EAPI 6 -> 8

Closes: https://bugs.gentoo.org/894518
Signed-off-by: Brahmajit Das <brahmajit.xyz@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/32145
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
2023-08-19 15:51:08 +03:00

42 lines
870 B
Bash

# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="8"
inherit autotools
DESCRIPTION="mecab-skkserv is a Kana-Kanji conversion server using MeCab"
HOMEPAGE="http://chasen.org/~taku/software/mecab-skkserv/"
SRC_URI="http://chasen.org/~taku/software/${PN}/${P}.tar.gz"
LICENSE="GPL-2 ipadic"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="app-text/mecab"
RDEPEND="${DEPEND}
sys-apps/xinetd"
PATCHES=(
"${FILESDIR}"/${PN}-cflags.patch
"${FILESDIR}"/${PN}-dicrc.patch
"${FILESDIR}"/${PN}-getopt.patch
"${FILESDIR}"/${PN}-missing-strcmp-clang16.patch
)
HTML_DOCS=( index.html ${PN}.css )
src_prepare() {
sed -i "/^dictdir/s:lib:$(get_libdir):" Makefile.am
default
mv configure.{in,ac} || die
eautoreconf
}
src_install() {
default
insinto /etc/xinetd.d
newins "${FILESDIR}"/${PN}.xinetd ${PN}
}