x11-terms/rxvt-unicode: Revbump

Package-Manager: Portage-3.0.18, Repoman-3.0.2
Signed-off-by: Alarig Le Lay <alarig@swordarmor.fr>
This commit is contained in:
Alarig Le Lay 2021-05-02 18:28:16 +02:00
parent 80c4e99106
commit 261ae1e626
Signed by: alarig
GPG Key ID: 7AFE62C6DF8BCDEC
2 changed files with 42 additions and 42 deletions

View File

@ -1,39 +1,35 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE catmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<catmetadata> <pkgmetadata>
<longdescription lang="en"> <maintainer type="person">
The x11-terms category contains terminal emulators for X11 environments. <email>marecki@gentoo.org</email>
</longdescription> <name>Marek Szuba</name>
<longdescription lang="de"> </maintainer>
Die Kategorie x11-terms enthält Terminalemulatoren für verschiedene <!-- co-maintainers welcome! -->
Desktopumgebungen und Window Manager. <use>
</longdescription> <flag name="24-bit-color">Enable 24-bit color support. Note that this feature
<longdescription lang="es"> is unofficial, may cause visual glitches due to the fact there is no
La categoría x11-terms contiene emuladores de terminal para varios termcap/terminfo definition for rxvt-unicode-24bit yet so it is necessary
ambientes X11. to use the one for 256 colours, visibly increases memory usage, and might
</longdescription> slow urxvt down dramatically when more than six fonts are in use in a terminal
<longdescription lang="ja"> instance.</flag>
x11-termsカテゴリーにはX11環境で使うターミナル・エミュレーターが含まれています。 <flag name="256-color">Enable 256 color support</flag>
</longdescription> <flag name="blink">Enable blinking text</flag>
<longdescription lang="nl"> <flag name="fading-colors">Enable colors fading when off focus</flag>
De x11-terms categorie bevat terminalemulators voor verschillende <flag name="font-styles">Enable support for bold and italic fonts</flag>
desktopomgevingen en window managers. <flag name="gdk-pixbuf">Enable transparency support using <pkg>x11-libs/gdk-pixbuf</pkg></flag>
</longdescription> <flag name="iso14755">Enable ISO-14755 support</flag>
<longdescription lang="vi"> <flag name="mouse">Enable mouse support</flag>
Nhóm x11-term chứa các terminal emulator cho X11. <flag name="mousewheel">Enable scrolling via mouse wheel or buttons 4 and 5</flag>
</longdescription> <flag name="perl">Enable perl script support. You can still disable this at runtime with -pe ""</flag>
<longdescription lang="sk"> <flag name="sgrmouse">Enable unofficial support for the xterm SGR 1006 mouse-tracking extension.
Kategória x11-term obsahuje emulátory terminálu pre prostredia X11. Needed to properly support mouse events for terminals with more than 223
</longdescription> rows or columns, in applications not supporting the urxvt 1015 extension.</flag>
<longdescription lang="it"> <flag name="unicode3">Use 21 instead of 16 bits to represent unicode characters</flag>
La categoria x11-terms contiene emulatori di terminale per gli ambienti X11. <flag name="utmp">Enable utmp support</flag>
</longdescription> <flag name="wtmp">Enable wtmp support</flag>
<longdescription lang="pt"> </use>
A categoria x11-terms contém emuladores de terminal para <upstream>
ambientes X11. <remote-id type="cpe">cpe:/a:rxvt-unicode:rxvt-unicode</remote-id>
</longdescription> </upstream>
<longdescription lang="pl"> </pkgmetadata>
Kategoria x11-terms zawiera emulatory terminala dla środowisk X11.
</longdescription>
</catmetadata>

View File

@ -3,7 +3,7 @@
EAPI=7 EAPI=7
inherit autotools desktop systemd inherit autotools desktop systemd prefix
COLOUR_PATCH_NAME="${PN}-9.22_24-bit-color_cpixl-20201108.patch" COLOUR_PATCH_NAME="${PN}-9.22_24-bit-color_cpixl-20201108.patch"
@ -14,10 +14,10 @@ SRC_URI="http://dist.schmorp.de/rxvt-unicode/Attic/${P}.tar.bz2
LICENSE="GPL-3" LICENSE="GPL-3"
SLOT="0" SLOT="0"
KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris" KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris"
IUSE="-24-bit-color 256-color blink fading-colors +font-styles gdk-pixbuf IUSE="-24-bit-color 256-color blink fading-colors +font-styles gdk-pixbuf
iso14755 +mousewheel mouse +perl -sgrmouse startup-notification unicode3 +utmp iso14755 +mousewheel mouse +perl -sgrmouse startup-notification unicode3 +utmp +wtmp
+wtmp xft" xft"
RESTRICT="test" RESTRICT="test"
@ -37,6 +37,7 @@ BDEPEND="virtual/pkgconfig"
PATCHES=( PATCHES=(
"${FILESDIR}"/${PN}-9.06-case-insensitive-fs.patch "${FILESDIR}"/${PN}-9.06-case-insensitive-fs.patch
"${FILESDIR}"/${PN}-9.21-xsubpp.patch "${FILESDIR}"/${PN}-9.21-xsubpp.patch
"${FILESDIR}"/${PN}-9.22-perl-segfault-on-exit.patch
"${FILESDIR}"/${PN}-9.22-sgr-mouse-mode-flag.patch "${FILESDIR}"/${PN}-9.22-sgr-mouse-mode-flag.patch
"${WORKDIR}"/${COLOUR_PATCH_NAME} "${WORKDIR}"/${COLOUR_PATCH_NAME}
) )
@ -57,6 +58,9 @@ src_prepare() {
use mouse || eapply -p1 "${FILESDIR}"/${P}-disable-mouse.patch use mouse || eapply -p1 "${FILESDIR}"/${P}-disable-mouse.patch
# use xsubpp from Prefix - #506500
hprefixify -q '"' -w "/xsubpp/" src/Makefile.in
eautoreconf eautoreconf
} }