gentoo/eclass/stardict.eclass
Eli Schwartz 46c037e3f7
stardict.eclass: stop optionally depending on stardict
Since commit cb140e2e6bf42b5ca7f88f53afd2806c252a6ac4 it hasn't been
available and was in fact removed for being completely dead. There's no
real point in asking for it in the eclass.

Signed-off-by: Eli Schwartz <eschwartz93@gmail.com>
Signed-off-by: Sam James <sam@gentoo.org>
2024-05-06 05:39:26 +01:00

87 lines
1.9 KiB
Bash

# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
# @ECLASS: stardict.eclass
# @MAINTAINER:
# No maintainer <maintainer-needed@gentoo.org>
# @AUTHOR:
# Alastair Tse <liquidx@gentoo.org>
# @SUPPORTED_EAPIS: 8
# @BLURB: Convenience class to do stardict dictionary installations.
# @DESCRIPTION:
# Usage:
# - Variables to set :
# * FROM_LANG - From this language
# * TO_LANG - To this language
# * DICT_PREFIX - SRC_URI prefix, like "dictd_www.mova.org_"
# * DICT_SUFFIX - SRC_URI after the prefix.
case ${EAPI} in
8) ;;
*) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;;
esac
if [[ -z ${_STARDICT_ECLASS} ]] ; then
_STARDICT_ECLASS=1
inherit edo
RESTRICT="strip"
# @ECLASS_VARIABLE: DICT_SUFFIX
# @PRE_INHERIT
# @DEFAULT_UNSET
# @DESCRIPTION:
# Suffix used for dictionaries.
: "${DICT_SUFFIX:=${PN#stardict-[[:lower:]]*-}}"
# @ECLASS_VARIABLE: DICT_P
# @PRE_INHERIT
# @DEFAULT_UNSET
# @DESCRIPTION:
# The filestem used for downloading dictionaries from SourceForge.
: "${DICT_P:=stardict-${DICT_PREFIX}${DICT_SUFFIX}-${PV}}"
: "${DESCRIPTION:="Another Stardict Dictionary"}"
if [[ -n ${FROM_LANG} && -n ${TO_LANG} ]]; then
DESCRIPTION="Stardict Dictionary ${FROM_LANG} to ${TO_LANG}"
fi
HOMEPAGE="http://stardict.sourceforge.net/"
SRC_URI="https://downloads.sourceforge.net/stardict/${DICT_P}.tar.bz2"
S="${WORKDIR}/${DICT_P}"
LICENSE="GPL-2"
SLOT="0"
IUSE="+zlib"
BDEPEND="
app-text/sdcv
zlib? (
app-arch/gzip
app-text/dictd
)"
stardict_src_compile() {
local file
if use zlib; then
for file in *.idx; do
[[ -f ${file} ]] && edo gzip "${file}"
done
for file in *.dict; do
[[ -f ${file} ]] && edo dictzip "${file}"
done
fi
}
stardict_src_install() {
insinto /usr/share/stardict/dic
doins *.dict.dz*
doins *.idx*
doins *.ifo
}
fi
EXPORT_FUNCTIONS src_compile src_install