141 lines
3.8 KiB
Bash
141 lines
3.8 KiB
Bash
# Copyright 1999-2017 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
# @ECLASS: cannadic.eclass
|
|
# @MAINTAINER:
|
|
# cjk@gentoo.org
|
|
# @AUTHOR:
|
|
# Mamoru KOMACHI <usata@gentoo.org>
|
|
# @BLURB: Function for Canna compatible dictionaries
|
|
# @DESCRIPTION:
|
|
# The cannadic eclass is used for installation and setup of Canna
|
|
# compatible dictionaries within the Portage system.
|
|
|
|
inherit eutils
|
|
|
|
EXPORT_FUNCTIONS pkg_setup pkg_postinst pkg_postrm src_install
|
|
|
|
HOMEPAGE="http://canna.osdn.jp/" # you need to change this!
|
|
SRC_URI="mirror://gentoo/${P}.tar.gz"
|
|
|
|
DICSDIRFILE="${FILESDIR}/*.dics.dir"
|
|
CANNADICS="${CANNADICS}" # (optional)
|
|
|
|
# You don't need to modify these
|
|
CANNADIC_CANNA_DIR="${EROOT:-${ROOT}}"var/lib/canna/dic/canna
|
|
CANNADIC_DICS_DIR="${EROOT:-${ROOT}}"var/lib/canna/dic/dics.d
|
|
readonly CANNADIC_CANNA_DIR CANNADIC_DICS_DIR
|
|
|
|
# @FUNCTION: cannadic_pkg_setup
|
|
# @DESCRIPTION:
|
|
# Sets up ${CANNADIC_CANNA_DIR}
|
|
cannadic_pkg_setup() {
|
|
keepdir "${CANNADIC_CANNA_DIR}"
|
|
fowners bin:bin "${CANNADIC_CANNA_DIR}"
|
|
fperms 0775 "${CANNADIC_CANNA_DIR}"
|
|
}
|
|
|
|
# @FUNCTION: cannadic-install
|
|
# @DESCRIPTION:
|
|
# Installs dictionaries to ${CANNADIC_CANNA_DIR}
|
|
cannadic-install() {
|
|
insinto "${CANNADIC_CANNA_DIR}"
|
|
insopts -m 0664 -o bin -g bin
|
|
doins "${@}"
|
|
}
|
|
|
|
# @FUNCTION: dicsdir-install
|
|
# @DESCRIPTION:
|
|
# Installs dics.dir from ${DICSDIRFILE}
|
|
dicsdir-install() {
|
|
insinto "${CANNADIC_DICS_DIR}"
|
|
doins "${DICSDIRFILE}"
|
|
}
|
|
|
|
# @FUNCTION: cannadic_src_install
|
|
# @DESCRIPTION:
|
|
# Installs all dictionaries under ${WORKDIR}
|
|
# plus dics.dir and docs
|
|
cannadic_src_install() {
|
|
local f
|
|
for f in *.c[btl]d *.t; do
|
|
if [[ -s "${f}" ]]; then
|
|
cannadic-install "${f}"
|
|
fi
|
|
done 2> /dev/null
|
|
|
|
dicsdir-install || die
|
|
|
|
einstalldocs
|
|
}
|
|
|
|
# @FUNCTION: update-cannadic-dir
|
|
# @DESCRIPTION:
|
|
# Updates dics.dir for Canna Server, script for this part taken from Debian GNU/Linux
|
|
#
|
|
# compiles dics.dir files for Canna Server
|
|
# Copyright 2001 ISHIKAWA Mutsumi
|
|
# Licensed under the GNU General Public License, version 2. See the file
|
|
# /usr/portage/license/GPL-2 or <http://www.gnu.org/copyleft/gpl.txt>.
|
|
update-cannadic-dir() {
|
|
einfo
|
|
einfo "Updating dics.dir for Canna ..."
|
|
einfo
|
|
|
|
# write new dics.dir file in case we are interrupted
|
|
cat <<-EOF > "${CANNADIC_CANNA_DIR}"/dics.dir.update-new
|
|
# dics.dir -- automatically generated file by Portage.
|
|
# DO NOT EDIT BY HAND.
|
|
EOF
|
|
|
|
local f
|
|
for f in "${CANNADIC_DICS_DIR}"/*.dics.dir; do
|
|
echo "# ${f}" >> "${CANNADIC_CANNA_DIR}"/dics.dir.update-new
|
|
cat "${f}" >> "${CANNADIC_CANNA_DIR}"/dics.dir.update-new
|
|
einfo "Added ${f}."
|
|
done
|
|
|
|
mv "${CANNADIC_CANNA_DIR}"/dics.dir.update-new "${CANNADIC_CANNA_DIR}"/dics.dir
|
|
|
|
einfo
|
|
einfo "Done."
|
|
einfo
|
|
}
|
|
|
|
# @FUNCTION: cannadic_pkg_postinst
|
|
# @DESCRIPTION:
|
|
# Updates dics.dir and print out notice after install
|
|
cannadic_pkg_postinst() {
|
|
update-cannadic-dir
|
|
|
|
einfo
|
|
einfo "Please restart cannaserver to fit the changes."
|
|
einfo "You need to modify your config file (~/.canna) to enable dictionaries."
|
|
|
|
if [[ -n "${CANNADICS}" ]]; then
|
|
einfo "e.g) add $(for d in ${CANNADICS}; do echo -n "\"${d}\" "; done)to section use-dictionary()."
|
|
einfo "For details, see documents under /usr/share/doc/${PF}."
|
|
fi
|
|
|
|
einfo "If you do not have ~/.canna, you can find sample files in /usr/share/canna."
|
|
ewarn "If you are upgrading from existing dictionary, you may need to recreate"
|
|
ewarn "user dictionary if you have one."
|
|
einfo
|
|
}
|
|
|
|
# @FUNCTION: cannadic_pkg_postrm
|
|
# @DESCRIPTION:
|
|
# Updates dics.dir and print out notice after uninstall
|
|
cannadic_pkg_postrm() {
|
|
update-cannadic-dir
|
|
|
|
einfo
|
|
einfo "Please restart cannaserver to fit changes."
|
|
einfo "and modify your config file (~/.canna) to disable dictionary."
|
|
|
|
if [[ -n "${CANNADICS}" ]]; then
|
|
einfo "e.g) delete $(for d in ${CANNADICS}; do echo -n "\"${d}\" "; done)from section use-dictionary()."
|
|
fi
|
|
|
|
einfo
|
|
}
|