gentoo-ebuilds/app-editors/ersatz-emacs/ersatz-emacs-20060515-r1.ebuild
Ulrich Müller d70666f23d
app-editors/ersatz-emacs: Compile with gnu17 standard
Closes: https://bugs.gentoo.org/944103
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
2024-11-20 14:06:08 +01:00

42 lines
1.1 KiB
Bash

# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit toolchain-funcs
DESCRIPTION="A very minimal imitation of the famous GNU Emacs editor"
HOMEPAGE="https://web.archive.org/web/20171126221613/http://hunter.apana.org.au/~cjb/Code/"
# taken from http://hunter.apana.org.au/~cjb/Code/ersatz.tar.gz
SRC_URI="https://dev.gentoo.org/~ulm/distfiles/${P}.tar.gz"
S="${WORKDIR}"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="amd64 ~riscv x86"
DEPEND="sys-libs/ncurses:0="
RDEPEND="${DEPEND}
!app-editors/ee"
BDEPEND="virtual/pkgconfig"
src_prepare() {
eapply "${FILESDIR}"/${P}-gentoo.patch
sed -i -e "s%/usr/local/share/%/usr/share/doc/${PF}/%" ee.1 \
|| die "sed failed"
eapply_user
}
src_compile() {
emake CC="$(tc-getCC)" \
CFLAGS="${CFLAGS} -std=gnu17 -Wall" \
LFLAGS="${LDFLAGS} $("$(tc-getPKG_CONFIG)" --libs ncurses)"
}
src_install() {
# Note: /usr/bin/ee is "easy edit" on FreeBSD, so if this
# is ever keyworded *-fbsd the binary has to be renamed.
dobin ee
doman ee.1
dodoc ChangeLog ERSATZ.keys README
}