mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-09 15:13:31 -04:00
Closes: https://bugs.gentoo.org/961055 Signed-off-by: Takuya Wakazono <pastalian46@gmail.com>
34 lines
692 B
Bash
34 lines
692 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
MY_PN=dict-gcide
|
|
MY_PV=${PV%_p*}+nmu${PV#*_p}
|
|
|
|
DESCRIPTION="Collaborative International Dictionary of English (incl. Webster 1913) for dict"
|
|
HOMEPAGE="https://tracker.debian.org/pkg/dict-gcide"
|
|
SRC_URI="mirror://debian/pool/main/d/${MY_PN}/${MY_PN}_${MY_PV}.tar.xz -> ${P}.tar.xz"
|
|
S="${WORKDIR}/${MY_PN}"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
RDEPEND="app-text/dictd"
|
|
DEPEND="dev-libs/libmaa"
|
|
BDEPEND="
|
|
${RDEPEND}
|
|
app-alternatives/lex
|
|
app-alternatives/yacc
|
|
"
|
|
|
|
src_compile() {
|
|
emake -j1 db
|
|
}
|
|
|
|
src_install() {
|
|
insinto /usr/share/dict
|
|
doins gcide.dict.dz gcide.index
|
|
}
|