mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-24 18:58:08 -07:00
Bug: https://bugs.gentoo.org/473598 Bug: https://bugs.gentoo.org/720224 Signed-off-by: Fabian Groffen <grobian@gentoo.org>
65 lines
1.2 KiB
Bash
65 lines
1.2 KiB
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit autotools toolchain-funcs
|
|
|
|
DESCRIPTION="C language utilities"
|
|
HOMEPAGE="http://www.sigala.it/sandro/software.php#cutils"
|
|
SRC_URI="http://www.sigala.it/sandro/files/${P}.tar.gz"
|
|
|
|
LICENSE="BSD-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ppc x86"
|
|
|
|
BDEPEND="
|
|
app-alternatives/lex
|
|
app-alternatives/yacc"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${PN}-infopage.patch
|
|
"${FILESDIR}"/${P}-case-insensitive.patch
|
|
"${FILESDIR}"/${P}-ar.patch
|
|
"${FILESDIR}"/${P}-clang16.patch
|
|
)
|
|
|
|
src_prepare() {
|
|
default
|
|
|
|
mv src/cdecl/{,cutils-}cdecl.1 || die
|
|
|
|
# delete pointless README
|
|
rm README.compile || die
|
|
|
|
# Force rebuild of cutils.info
|
|
rm doc/cutils.info || die
|
|
|
|
sed -e "s/cdecl/cutils-cdecl/g" \
|
|
-i doc/cutils.texi || die
|
|
sed -e "/PROG/s/cdecl/cutils-cdecl/" \
|
|
-i src/cdecl/Makefile.in || die
|
|
sed -e "/Xr/s/cdecl/cutils-cdecl/" \
|
|
-i src/cundecl/cundecl.1 || die
|
|
sed -e "/Nm/s/cdecl/cutils-cdecl/" \
|
|
-i src/cdecl/cutils-cdecl.1 || die
|
|
|
|
eautoreconf #871402
|
|
}
|
|
|
|
src_compile() {
|
|
tc-export AR #724270
|
|
|
|
emake -j1
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
dodoc HISTORY
|
|
}
|
|
|
|
pkg_postinst() {
|
|
elog "cdecl was installed as cutils-cdecl because of a naming conflict"
|
|
elog "with dev-util/cdecl."
|
|
}
|