gentoo/games-misc/cowsay/cowsay-3.8.4.ebuild
Cristian Othón Martínez Vera 2b40948c38
games-misc/cowsay: add 3.8.4
Closes: https://bugs.gentoo.org/932275
Signed-off-by: Cristian Othón Martínez Vera <cfuga@cfuga.mx>
Part-of: https://github.com/gentoo/gentoo/pull/43322
Closes: https://github.com/gentoo/gentoo/pull/43322
Signed-off-by: Sam James <sam@gentoo.org>
2025-10-03 05:56:34 +01:00

32 lines
793 B
Bash

# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="Configurable talking ASCII cow (and other characters)"
HOMEPAGE="https://cowsay.diamonds https://github.com/cowsay-org/cowsay"
SRC_URI="https://github.com/cowsay-org/cowsay/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~hppa ~mips ~ppc64 ~riscv ~x86 ~x64-macos ~x64-solaris"
RDEPEND="dev-lang/perl"
BDEPEND="${RDEPEND}"
PATCHES=(
"${FILESDIR}/${P}-makefile.patch"
"${FILESDIR}/${P}-head-in.patch"
)
src_prepare() {
default
sed -i "s|fB%PREFIX%|fB${EPREFIX}/usr|g" man/man1/cowsay.1 || die
}
src_install() {
emake DESTDIR="${D}" prefix="${EPREFIX}/usr" install
keepdir /etc/${PN}/cowpath.d
einstalldocs
}