diff options
author | Sam James <sam@gentoo.org> | 2021-04-21 20:49:26 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-04-21 20:55:29 +0100 |
commit | 21f73902ec913586b2cdf580499b175cc01a23c0 (patch) | |
tree | 567178fc4783efd8a66bfe6f1243509a4758eb4c /app-shells | |
parent | app-shells/bashish: update EAPI 5 -> 7 (diff) | |
download | gentoo-21f73902ec913586b2cdf580499b175cc01a23c0.tar.gz gentoo-21f73902ec913586b2cdf580499b175cc01a23c0.tar.bz2 gentoo-21f73902ec913586b2cdf580499b175cc01a23c0.zip |
app-shells/esh: port to EAPI 7, fix Prefix
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-shells')
-rw-r--r-- | app-shells/esh/esh-0.8.5-r2.ebuild | 33 | ||||
-rw-r--r-- | app-shells/esh/metadata.xml | 2 |
2 files changed, 23 insertions, 12 deletions
diff --git a/app-shells/esh/esh-0.8.5-r2.ebuild b/app-shells/esh/esh-0.8.5-r2.ebuild index 052258caf92d..5208355cf0e7 100644 --- a/app-shells/esh/esh-0.8.5-r2.ebuild +++ b/app-shells/esh/esh-0.8.5-r2.ebuild @@ -1,43 +1,51 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 -inherit flag-o-matic toolchain-funcs +EAPI=7 + +inherit flag-o-matic toolchain-funcs prefix DESCRIPTION="A UNIX Shell with a simplified Scheme syntax" HOMEPAGE="http://slon.ttk.ru/esh/" SRC_URI="http://slon.ttk.ru/esh/${P}.tar.gz" +S="${WORKDIR}"/${PN} LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 ppc x86" IUSE="debug" -DEPEND=">=sys-libs/readline-4.1" +DEPEND=">=sys-libs/readline-4.1:=" RDEPEND="${DEPEND}" - -S="${WORKDIR}/${PN}" +BDEPEND="virtual/pkgconfig" src_prepare() { + default + + # For some reason, this tarball has binary files in it for x86. + # Make clean so we can rebuild for our arch and optimization. emake clean sed -i \ -e 's|-g ||' \ -e 's|-DMEM_DEBUG ||' \ -e 's|^CFLAGS|&+|g' \ - -e 's|$(CC) |&$(CFLAGS) $(LDFLAGS) |g' \ + -e 's|$(CC) |&$(CFLAGS) $(CPPFLAGS) $(INC) $(LDFLAGS) $(LIB) $(LIBS)|g' \ -e 's:-ltermcap::' \ + -e "s:/usr/include/readline:${ESYSROOT}/usr/include/readline:" \ + -e "s:LIB=-readline:$($(tc-getPKG_CONFIG) --libs readline):" \ Makefile || die } src_compile() { - # For some reason, this tarball has binary files in it for x86. - # Make clean so we can rebuild for our arch and optimization. - use debug && append-flags -DMEM_DEBUG + append-cppflags "$($(tc-getPKG_CONFIG) --cflags readline)" + emake \ CC="$(tc-getCC)" \ + CFLAGS="${CFLAGS} \$(INC)" \ + CPPFLAGS="${CPPFLAGS}" \ LDFLAGS="${LDFLAGS}" } @@ -45,7 +53,10 @@ src_install() { dobin esh doinfo doc/esh.info dodoc CHANGELOG CREDITS GC_README HEADER READLINE-HACKS TODO - dohtml doc/*.html + + docinto html + dodoc doc/*.html + docinto examples dodoc examples/* } diff --git a/app-shells/esh/metadata.xml b/app-shells/esh/metadata.xml index 6f49eba8f496..7a38bb900964 100644 --- a/app-shells/esh/metadata.xml +++ b/app-shells/esh/metadata.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> <pkgmetadata> -<!-- maintainer-needed --> + <!-- maintainer-needed --> </pkgmetadata> |