mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-09 00:07:57 +03:00
In 279064ccf66cd76b4ef8f2fb7d03db3b41d79655, a bunch of -Wno-* were added but that isn't sufficient for the C99 porting effort. Instead, pass -std=gnu89 which handles not making these errors out of the box. Bug: https://bugs.gentoo.org/729234 Closes: https://bugs.gentoo.org/880419 Signed-off-by: Sam James <sam@gentoo.org>
66 lines
1.2 KiB
Bash
66 lines
1.2 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI="7"
|
|
|
|
inherit autotools flag-o-matic toolchain-funcs
|
|
|
|
MY_P="${P/_beta/beta}"
|
|
|
|
DESCRIPTION="Emacs like micro editor Ng -- based on mg2a"
|
|
HOMEPAGE="http://tt.sakura.ne.jp/~amura/ng/"
|
|
SRC_URI="http://tt.sakura.ne.jp/~amura/archives/${PN}/${MY_P}.tar.gz"
|
|
|
|
LICENSE="Emacs"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ppc ~riscv x86"
|
|
|
|
RDEPEND="sys-libs/ncurses:0="
|
|
DEPEND="${RDEPEND}"
|
|
S="${WORKDIR}/${MY_P}"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${MY_P}-ncurses.patch
|
|
"${FILESDIR}"/${MY_P}-configure.patch
|
|
)
|
|
|
|
src_prepare() {
|
|
default
|
|
|
|
sed -i "/NO_BACKUP/s/undef/define/" config.h
|
|
cd sys/unix || die
|
|
mv configure.{in,ac} || die
|
|
eautoconf
|
|
cd - >/dev/null || die
|
|
cp sys/unix/configure . || die
|
|
# written in K&R C
|
|
append-flags -std=gnu89
|
|
}
|
|
|
|
src_configure() {
|
|
econf --disable-canna
|
|
}
|
|
|
|
src_compile() {
|
|
emake CC="$(tc-getCC)"
|
|
}
|
|
|
|
src_install() {
|
|
dobin ${PN}
|
|
dodoc docs/* MANIFEST dot.${PN}
|
|
|
|
insinto /usr/share/${PN}
|
|
doins bin/*
|
|
|
|
insinto /etc/skel
|
|
newins {dot,}.${PN}
|
|
}
|
|
|
|
pkg_postinst() {
|
|
elog
|
|
elog "If you want to use user Config"
|
|
elog "cp /etc/skel/.${PN} ~/.${PN}"
|
|
elog "and edit your .${PN} configuration file."
|
|
elog
|
|
}
|