diff options
author | Fabian Groffen <grobian@gentoo.org> | 2021-03-10 08:24:01 +0100 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2021-03-10 08:24:14 +0100 |
commit | 2bfec260e57586d91de7da25029f893eef1094ea (patch) | |
tree | cd6a5b87f1b1ff5d094ff6917deeb3c3af997afc /x11-terms | |
parent | gui-apps/swappy: Remove obsolete sed (diff) | |
download | gentoo-2bfec260e57586d91de7da25029f893eef1094ea.tar.gz gentoo-2bfec260e57586d91de7da25029f893eef1094ea.tar.bz2 gentoo-2bfec260e57586d91de7da25029f893eef1094ea.zip |
x11-terms/rxvt-unicode: fix build on Prefix
Closes: https://bugs.gentoo.org/506500
Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Fabian Groffen <grobian@gentoo.org>
Diffstat (limited to 'x11-terms')
-rw-r--r-- | x11-terms/rxvt-unicode/rxvt-unicode-9.22-r7.ebuild | 5 | ||||
-rw-r--r-- | x11-terms/rxvt-unicode/rxvt-unicode-9999.ebuild | 7 |
2 files changed, 9 insertions, 3 deletions
diff --git a/x11-terms/rxvt-unicode/rxvt-unicode-9.22-r7.ebuild b/x11-terms/rxvt-unicode/rxvt-unicode-9.22-r7.ebuild index 4f49bd381262..d72cdf336d7b 100644 --- a/x11-terms/rxvt-unicode/rxvt-unicode-9.22-r7.ebuild +++ b/x11-terms/rxvt-unicode/rxvt-unicode-9.22-r7.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit autotools desktop systemd +inherit autotools desktop systemd prefix COLOUR_PATCH_NAME="${PN}-9.22_24-bit-color_cpixl-20201108.patch" @@ -54,6 +54,9 @@ src_prepare() { # kill the rxvt-unicode terminfo file - #192083 sed -i -e "/rxvt-unicode.terminfo/d" doc/Makefile.in || die "sed failed" + # use xsubpp from Prefix - #506500 + hprefixify -q '"' -w "/xsubpp/" src/Makefile.in + eautoreconf } diff --git a/x11-terms/rxvt-unicode/rxvt-unicode-9999.ebuild b/x11-terms/rxvt-unicode/rxvt-unicode-9999.ebuild index f58563238431..71119ddbc14a 100644 --- a/x11-terms/rxvt-unicode/rxvt-unicode-9999.ebuild +++ b/x11-terms/rxvt-unicode/rxvt-unicode-9999.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -inherit autotools cvs desktop vcs-clean +inherit autotools cvs desktop vcs-clean prefix DESCRIPTION="rxvt clone with xft and unicode support" HOMEPAGE="http://software.schmorp.de/pkg/rxvt-unicode.html" @@ -56,6 +56,9 @@ src_prepare() { # kill the rxvt-unicode terminfo file - #192083 sed -i -e "/rxvt-unicode.terminfo/d" doc/Makefile.in || die "sed failed" + # use xsubpp from Prefix - #506500 + hprefixify -q '"' -w "/xsubpp/" src/Makefile.in + eautoreconf } |