mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
Bug: https://bugs.gentoo.org/473598 Bug: https://bugs.gentoo.org/720224 Signed-off-by: Fabian Groffen <grobian@gentoo.org>
34 lines
798 B
Bash
34 lines
798 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
MY_P="fortune-mod-at.linux-${PV}"
|
|
DESCRIPTION="Quotes from at.linux"
|
|
HOMEPAGE="https://fortune-mod-fvl.sourceforge.net/"
|
|
SRC_URI="https://downloads.sourceforge.net/fortune-mod-fvl/${MY_P}.tar.gz"
|
|
S="${WORKDIR}"/${MY_P}
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~m68k ~mips ~ppc64 ~riscv ~x86"
|
|
IUSE="unicode"
|
|
|
|
RDEPEND="games-misc/fortune-mod"
|
|
DEPEND="${RDEPEND}"
|
|
BDEPEND=" unicode? ( virtual/libiconv )"
|
|
|
|
src_compile() {
|
|
# bug #322111
|
|
if use unicode ; then
|
|
iconv -f iso-8859-1 -t utf8 at.linux > at.linux-utf8 || die
|
|
mv at.linux-utf8 at.linux || die
|
|
strfile -s at.linux || die
|
|
fi
|
|
}
|
|
|
|
src_install() {
|
|
insinto /usr/share/fortune
|
|
doins at.linux at.linux.dat
|
|
}
|