diff options
author | Krzesimir Nowak <knowak@microsoft.com> | 2023-01-16 10:36:29 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-01-19 20:51:59 +0000 |
commit | e5e8fc552b29179767cc030ca687ff684ac9a715 (patch) | |
tree | b887e4cbafc9d363c1f8e318425576c06a0a3c75 /app-arch/ncompress | |
parent | dev-ml/camlidl: fix parallelMake (diff) | |
download | gentoo-e5e8fc552b29179767cc030ca687ff684ac9a715.tar.gz gentoo-e5e8fc552b29179767cc030ca687ff684ac9a715.tar.bz2 gentoo-e5e8fc552b29179767cc030ca687ff684ac9a715.zip |
app-arch/ncompress: Fix installation of the uncompress symlink
We were patching Makefile.def to create symbolic links instead of
hardlinks and this resulted in symlinks pointing to
`$(DESTDIR)$(BINDIR)/compress`. This meant that the symlink was broken
in the merged filesystem. Add some more sed hacking to achieve `ln -s
compress $(DESTDIR)$(BINDIR)/uncompress` instead.
Signed-off-by: Krzesimir Nowak <knowak@microsoft.com>
Closes: https://github.com/gentoo/gentoo/pull/29131
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-arch/ncompress')
-rw-r--r-- | app-arch/ncompress/ncompress-5.0-r1.ebuild | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/app-arch/ncompress/ncompress-5.0-r1.ebuild b/app-arch/ncompress/ncompress-5.0-r1.ebuild new file mode 100644 index 000000000000..2b3cfe61914e --- /dev/null +++ b/app-arch/ncompress/ncompress-5.0-r1.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +inherit toolchain-funcs + +DESCRIPTION="Classic compress & uncompress programs for .Z (LZW) files" +HOMEPAGE="https://vapier.github.io/ncompress/" +SRC_URI="https://github.com/vapier/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="public-domain" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris" +IUSE="" + +src_prepare() { + default + # First sed expression replaces hardlinking with + # symlinking. Second sed expression fixes the symlink target + # to use relative path to a file in the same directory as the + # symlink (so point to compress instead of + # $(DESTDIR)$(BINDIR)/compress). + sed -i \ + -e 's:\bln :ln -s :' \ + -e 's:\(\bln [^$]*\)\$(DESTDIR)\$(BINDIR)/:\1:' \ + Makefile.def || die +} + +src_configure() { + tc-export CC +} + +src_install() { + emake install_core DESTDIR="${ED}" PREFIX="/usr" + dodoc Acknowleds Changes LZW.INFO README.md +} |