diff options
author | 2022-07-20 08:04:29 -0700 | |
---|---|---|
committer | 2022-07-25 05:14:38 +0100 | |
commit | ae5676fcc57a48c25b474a14c9e21395e1b663d6 (patch) | |
tree | 3c662688ddf8499ad33886102ee132ca037ea65b /dev-libs/libvterm/libvterm-0.1.4-r1.ebuild | |
parent | app-crypt/tpm2-tss: Fix FEATURES=test with slibtool (diff) | |
download | gentoo-ae5676fcc57a48c25b474a14c9e21395e1b663d6.tar.gz gentoo-ae5676fcc57a48c25b474a14c9e21395e1b663d6.tar.bz2 gentoo-ae5676fcc57a48c25b474a14c9e21395e1b663d6.zip |
dev-libs/libvterm: Fix the build with rlibtool
Bug: https://bugs.gentoo.org/779034
Closes: https://github.com/gentoo/gentoo/pull/26497
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-libs/libvterm/libvterm-0.1.4-r1.ebuild')
-rw-r--r-- | dev-libs/libvterm/libvterm-0.1.4-r1.ebuild | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/dev-libs/libvterm/libvterm-0.1.4-r1.ebuild b/dev-libs/libvterm/libvterm-0.1.4-r1.ebuild new file mode 100644 index 000000000000..10402580dbb5 --- /dev/null +++ b/dev-libs/libvterm/libvterm-0.1.4-r1.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools + +DESCRIPTION="An abstract library implementation of a VT220/xterm/ECMA-48 terminal emulator" +HOMEPAGE="https://www.leonerd.org.uk/code/libvterm/" +SRC_URI="https://www.leonerd.org.uk/code/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86 ~x64-macos" + +BDEPEND=" + dev-lang/perl + virtual/pkgconfig +" + +PATCHES=( + "${FILESDIR}"/${P}-slibtool.patch # 779034 +) + +src_prepare() { + default + eautoreconf +} + +src_compile() { + emake VERBOSE=1 +} + +src_install() { + emake VERBOSE=1 DESTDIR="${D}" install + find "${ED}" -name '*.la' -delete || die "Failed to prune libtool files" +} |