* [gentoo-commits] repo/gentoo:master commit in: app-i18n/xvnkb/
@ 2025-02-10 9:43 Sam James
0 siblings, 0 replies; 9+ messages in thread
From: Sam James @ 2025-02-10 9:43 UTC (permalink / raw
To: gentoo-commits
commit: c31b770a49a568be3221be52d1172afb23fbce88
Author: NHOrus <jy6x2b32pie9 <AT> yahoo <DOT> com>
AuthorDate: Sat Feb 1 07:30:52 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Feb 10 09:41:10 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c31b770a
app-i18n/xvnkb: update SRC_URI
Signed-off-by: NHOrus <jy6x2b32pie9 <AT> yahoo.com>
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-i18n/xvnkb/xvnkb-0.2.11.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/app-i18n/xvnkb/xvnkb-0.2.11.ebuild b/app-i18n/xvnkb/xvnkb-0.2.11.ebuild
index a03d2ecadfdf..15cbc7258fcf 100644
--- a/app-i18n/xvnkb/xvnkb-0.2.11.ebuild
+++ b/app-i18n/xvnkb/xvnkb-0.2.11.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2024 Gentoo Authors
+# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="8"
@@ -7,7 +7,7 @@ inherit toolchain-funcs
DESCRIPTION="Vietnamese input keyboard for X"
HOMEPAGE="https://xvnkb.sourceforge.net/"
-SRC_URI="https://${PN}.sourceforge.net/${P}.tar.bz2"
+SRC_URI="https://downloads.sourceforge.net/${PN}/${P}.tar.bz2"
LICENSE="GPL-2+"
SLOT="0"
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-i18n/xvnkb/
@ 2024-03-03 5:52 Sam James
0 siblings, 0 replies; 9+ messages in thread
From: Sam James @ 2024-03-03 5:52 UTC (permalink / raw
To: gentoo-commits
commit: bf8021b7878ce7a4dbd92639ca20ef93084514dc
Author: Eli Schwartz <eschwartz93 <AT> gmail <DOT> com>
AuthorDate: Sun Mar 3 05:32:08 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Mar 3 05:51:12 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf8021b7
app-i18n/xvnkb: error out immediately if no Makefile exists
This package is absolutely horrible. It has the world's worst homebrew
"configure" script, which fails but doesn't *error out* with
-Wimplicit-int as a compiler default error, and also has:
config.h:1:1: error: expected identifier or ‘(’ before ‘-’ token
1 | -e #ifndef __VK_CONFIG_H
which is just... dandy... I too love unix command flags echo'ed into my
headers...
It's a wreck but we can at least detect when it cannot compile anything
and abort with a clearer message.
Bug: https://bugs.gentoo.org/900398
Signed-off-by: Eli Schwartz <eschwartz93 <AT> gmail.com>
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-i18n/xvnkb/xvnkb-0.2.11.ebuild | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/app-i18n/xvnkb/xvnkb-0.2.11.ebuild b/app-i18n/xvnkb/xvnkb-0.2.11.ebuild
index 98e4e14b988b..876fa3426ab7 100644
--- a/app-i18n/xvnkb/xvnkb-0.2.11.ebuild
+++ b/app-i18n/xvnkb/xvnkb-0.2.11.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="8"
@@ -37,6 +37,7 @@ src_configure() {
$(usex xft '' '--no-xft') \
--use-extstroke \
|| die "./configure failed"
+ [[ -f Makefile ]] || die "./configure failed to set an error code, but didn't create a Makefile either"
}
src_install() {
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-i18n/xvnkb/
@ 2024-03-03 5:52 Sam James
0 siblings, 0 replies; 9+ messages in thread
From: Sam James @ 2024-03-03 5:52 UTC (permalink / raw
To: gentoo-commits
commit: 2cc6964f97c84b02944bf72ce1b53de8e5743e54
Author: Eli Schwartz <eschwartz93 <AT> gmail <DOT> com>
AuthorDate: Sun Mar 3 05:39:22 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Mar 3 05:51:12 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2cc6964f
app-i18n/xvnkb: run configure with bash
config.h:1:1: error: expected identifier or ‘(’ before ‘-’ token
1 | -e #ifndef __VK_CONFIG_H
This is just... dandy... I too love unix command flags echo'ed into my
headers...
It uses echo -e to a header, which breaks on non-bash shells and is
generally a problem.
Closes: https://bugs.gentoo.org/886069
Signed-off-by: Eli Schwartz <eschwartz93 <AT> gmail.com>
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-i18n/xvnkb/xvnkb-0.2.11.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/app-i18n/xvnkb/xvnkb-0.2.11.ebuild b/app-i18n/xvnkb/xvnkb-0.2.11.ebuild
index 876fa3426ab7..a03d2ecadfdf 100644
--- a/app-i18n/xvnkb/xvnkb-0.2.11.ebuild
+++ b/app-i18n/xvnkb/xvnkb-0.2.11.ebuild
@@ -31,8 +31,8 @@ src_prepare() {
}
src_configure() {
- # *not* autotools
- ./configure \
+ # *not* autotools. Uses broken logic that assumes all the world is a bash
+ bash ./configure \
$(usex spell '' '--no-spellcheck') \
$(usex xft '' '--no-xft') \
--use-extstroke \
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-i18n/xvnkb/
@ 2022-11-16 23:00 Sam James
0 siblings, 0 replies; 9+ messages in thread
From: Sam James @ 2022-11-16 23:00 UTC (permalink / raw
To: gentoo-commits
commit: d9ce7c754080c1187a222ec3939014c0c316423a
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 16 19:51:06 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Nov 16 22:59:50 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9ce7c75
app-i18n/xvnkb: use HTTPS
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-i18n/xvnkb/xvnkb-0.2.11.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/app-i18n/xvnkb/xvnkb-0.2.11.ebuild b/app-i18n/xvnkb/xvnkb-0.2.11.ebuild
index 5493f9d719bf..98e4e14b988b 100644
--- a/app-i18n/xvnkb/xvnkb-0.2.11.ebuild
+++ b/app-i18n/xvnkb/xvnkb-0.2.11.ebuild
@@ -6,8 +6,8 @@ EAPI="8"
inherit toolchain-funcs
DESCRIPTION="Vietnamese input keyboard for X"
-HOMEPAGE="http://xvnkb.sourceforge.net/"
-SRC_URI="http://${PN}.sourceforge.net/${P}.tar.bz2"
+HOMEPAGE="https://xvnkb.sourceforge.net/"
+SRC_URI="https://${PN}.sourceforge.net/${P}.tar.bz2"
LICENSE="GPL-2+"
SLOT="0"
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-i18n/xvnkb/
@ 2022-08-02 7:48 Joonas Niilola
0 siblings, 0 replies; 9+ messages in thread
From: Joonas Niilola @ 2022-08-02 7:48 UTC (permalink / raw
To: gentoo-commits
commit: ecb332ad02940b0d1dcf857142d36ae4f07db32a
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 2 07:46:52 2022 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Tue Aug 2 07:46:52 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ecb332ad
app-i18n/xvnkb: Stabilize 0.2.11 x86, #861788
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
app-i18n/xvnkb/xvnkb-0.2.11.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-i18n/xvnkb/xvnkb-0.2.11.ebuild b/app-i18n/xvnkb/xvnkb-0.2.11.ebuild
index 55a48c914847..6442bca8677d 100644
--- a/app-i18n/xvnkb/xvnkb-0.2.11.ebuild
+++ b/app-i18n/xvnkb/xvnkb-0.2.11.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://${PN}.sourceforge.net/${P}.tar.bz2"
LICENSE="GPL-2+"
SLOT="0"
-KEYWORDS="amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc x86"
IUSE="spell xft"
RDEPEND="x11-libs/libX11:=
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-i18n/xvnkb/
@ 2021-10-19 14:42 Akinori Hattori
0 siblings, 0 replies; 9+ messages in thread
From: Akinori Hattori @ 2021-10-19 14:42 UTC (permalink / raw
To: gentoo-commits
commit: 4430c2b57d8dc80185f79188d9186531f0d0f0ec
Author: Akinori Hattori <hattya <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 19 14:35:01 2021 +0000
Commit: Akinori Hattori <hattya <AT> gentoo <DOT> org>
CommitDate: Tue Oct 19 14:42:00 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4430c2b5
app-i18n/xvnkb: update LICENSE
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Akinori Hattori <hattya <AT> gentoo.org>
app-i18n/xvnkb/xvnkb-0.2.9a-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-i18n/xvnkb/xvnkb-0.2.9a-r1.ebuild b/app-i18n/xvnkb/xvnkb-0.2.9a-r1.ebuild
index 90dd4d5e6e3..837f22f8d6f 100644
--- a/app-i18n/xvnkb/xvnkb-0.2.9a-r1.ebuild
+++ b/app-i18n/xvnkb/xvnkb-0.2.9a-r1.ebuild
@@ -9,7 +9,7 @@ DESCRIPTION="Vietnamese input keyboard for X"
HOMEPAGE="http://xvnkb.sourceforge.net/"
SRC_URI="http://${PN}.sourceforge.net/${P}.tar.bz2"
-LICENSE="GPL-2"
+LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE="spell xft"
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-i18n/xvnkb/
@ 2021-10-19 14:42 Akinori Hattori
0 siblings, 0 replies; 9+ messages in thread
From: Akinori Hattori @ 2021-10-19 14:42 UTC (permalink / raw
To: gentoo-commits
commit: 966eed05a6bb4f9f01d341709428656e1bcb0a16
Author: Akinori Hattori <hattya <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 19 14:33:28 2021 +0000
Commit: Akinori Hattori <hattya <AT> gentoo <DOT> org>
CommitDate: Tue Oct 19 14:41:59 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=966eed05
app-i18n/xvnkb: tidy
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Akinori Hattori <hattya <AT> gentoo.org>
app-i18n/xvnkb/metadata.xml | 14 ++++++-------
app-i18n/xvnkb/xvnkb-0.2.9a-r1.ebuild | 38 +++++++++++++++++------------------
2 files changed, 26 insertions(+), 26 deletions(-)
diff --git a/app-i18n/xvnkb/metadata.xml b/app-i18n/xvnkb/metadata.xml
index 5a3a0aa5676..0df6a83c250 100644
--- a/app-i18n/xvnkb/metadata.xml
+++ b/app-i18n/xvnkb/metadata.xml
@@ -1,11 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <maintainer type="project">
- <email>cjk@gentoo.org</email>
- <name>Cjk</name>
- </maintainer>
- <upstream>
- <remote-id type="sourceforge">xvnkb</remote-id>
- </upstream>
+ <maintainer type="project">
+ <email>cjk@gentoo.org</email>
+ <name>Cjk</name>
+ </maintainer>
+ <upstream>
+ <remote-id type="sourceforge">xvnkb</remote-id>
+ </upstream>
</pkgmetadata>
diff --git a/app-i18n/xvnkb/xvnkb-0.2.9a-r1.ebuild b/app-i18n/xvnkb/xvnkb-0.2.9a-r1.ebuild
index 3f52d6d81c3..90dd4d5e6e3 100644
--- a/app-i18n/xvnkb/xvnkb-0.2.9a-r1.ebuild
+++ b/app-i18n/xvnkb/xvnkb-0.2.9a-r1.ebuild
@@ -1,47 +1,47 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI="7"
inherit toolchain-funcs
DESCRIPTION="Vietnamese input keyboard for X"
-SRC_URI="http://xvnkb.sourceforge.net/${P}.tar.bz2"
HOMEPAGE="http://xvnkb.sourceforge.net/"
+SRC_URI="http://${PN}.sourceforge.net/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE="spell xft"
-RDEPEND="
- x11-libs/libX11:=
+RDEPEND="x11-libs/libX11:=
xft? ( x11-libs/libXft:= )"
-DEPEND="
- ${RDEPEND}
+DEPEND="${RDEPEND}
x11-base/xorg-proto"
+BDEPEND="xft? ( virtual/pkgconfig )"
PATCHES=( "${FILESDIR}"/${P}-ldflags.patch )
-src_configure() {
+src_prepare() {
+ default
tc-export CC
+}
- local myconf=()
- ! use spell && myconf+=( --no-spellcheck )
- ! use xft && myconf+=( --no-xft )
-
+src_configure() {
# *not* autotools
./configure \
- --use-extstroke "${myconf[@]}" \
+ $(usex spell '' '--no-spellcheck') \
+ $(usex xft '' '--no-xft') \
+ --use-extstroke \
|| die "./configure failed"
}
src_install() {
- dobin xvnkb
- dobin tools/xvnkb_ctrl
+ dobin ${PN}
+ dobin tools/${PN}_ctrl
- dolib.so xvnkb.so.${PV}
- dosym xvnkb.so.${PV} /usr/$(get_libdir)/xvnkb.so
+ dolib.so ${PN}.so.${PV}
+ dosym ${PN}.so.${PV} /usr/$(get_libdir)/${PN}.so
einstalldocs
dodoc -r doc/. scripts contrib
@@ -51,10 +51,10 @@ pkg_postinst() {
elog "Remember to"
elog "$ export LANG=en_US.UTF-8"
elog "(or any other UTF-8 locale) and"
- elog "$ export LD_PRELOAD=/usr/$(get_libdir)/xvnkb.so"
+ elog "$ export LD_PRELOAD=/usr/$(get_libdir)/${PN}.so"
elog "before starting X Window"
elog "More documents are in ${EROOT}/usr/share/doc/${PF}"
ewarn "Programs with suid/sgid will have LD_PRELOAD cleared"
- ewarn "You have to unset suid/sgid to use with xvnkb"
+ ewarn "You have to unset suid/sgid to use with ${PN}"
}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-i18n/xvnkb/
@ 2019-10-19 10:48 David Seifert
0 siblings, 0 replies; 9+ messages in thread
From: David Seifert @ 2019-10-19 10:48 UTC (permalink / raw
To: gentoo-commits
commit: 955a0c1c306ca8c85a411e2df28e78f1e767ae0c
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 19 10:48:04 2019 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sat Oct 19 10:48:04 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=955a0c1c
app-i18n/xvnkb: Port to EAPI 7
Bug: https://bugs.gentoo.org/697382
Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: David Seifert <soap <AT> gentoo.org>
app-i18n/xvnkb/xvnkb-0.2.9a-r1.ebuild | 50 +++++++++++++++--------------------
1 file changed, 22 insertions(+), 28 deletions(-)
diff --git a/app-i18n/xvnkb/xvnkb-0.2.9a-r1.ebuild b/app-i18n/xvnkb/xvnkb-0.2.9a-r1.ebuild
index 3011a713004..3f52d6d81c3 100644
--- a/app-i18n/xvnkb/xvnkb-0.2.9a-r1.ebuild
+++ b/app-i18n/xvnkb/xvnkb-0.2.9a-r1.ebuild
@@ -1,57 +1,50 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=0
+EAPI=7
-inherit eutils multilib toolchain-funcs
-
-IUSE="spell xft"
+inherit toolchain-funcs
DESCRIPTION="Vietnamese input keyboard for X"
SRC_URI="http://xvnkb.sourceforge.net/${P}.tar.bz2"
HOMEPAGE="http://xvnkb.sourceforge.net/"
LICENSE="GPL-2"
-
SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
-RDEPEND="x11-libs/libX11
- xft? ( x11-libs/libXft )"
-DEPEND="${RDEPEND}
- x11-base/xorg-proto"
+KEYWORDS="amd64 ppc x86"
+IUSE="spell xft"
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}"/${P}-ldflags.patch
-}
+RDEPEND="
+ x11-libs/libX11:=
+ xft? ( x11-libs/libXft:= )"
+DEPEND="
+ ${RDEPEND}
+ x11-base/xorg-proto"
-src_compile() {
- local myconf
+PATCHES=( "${FILESDIR}"/${P}-ldflags.patch )
+src_configure() {
tc-export CC
- use spell || myconf="${myconf} --no-spellcheck"
- use xft || myconf="${myconf} --no-xft"
+ local myconf=()
+ ! use spell && myconf+=( --no-spellcheck )
+ ! use xft && myconf+=( --no-xft )
# *not* autotools
./configure \
- --use-extstroke ${myconf} \
+ --use-extstroke "${myconf[@]}" \
|| die "./configure failed"
-
- emake || die "emake failed"
}
src_install() {
dobin xvnkb
dobin tools/xvnkb_ctrl
- dolib xvnkb.so.${PV}
+ dolib.so xvnkb.so.${PV}
dosym xvnkb.so.${PV} /usr/$(get_libdir)/xvnkb.so
- dodoc ChangeLog AUTHORS THANKS TODO README* doc/*
- docinto scripts; dodoc scripts/*
- docinto contrib; dodoc contrib/*
+ einstalldocs
+ dodoc -r doc/. scripts contrib
}
pkg_postinst() {
@@ -60,7 +53,8 @@ pkg_postinst() {
elog "(or any other UTF-8 locale) and"
elog "$ export LD_PRELOAD=/usr/$(get_libdir)/xvnkb.so"
elog "before starting X Window"
- elog "More documents are in /usr/share/doc/${PF}"
+ elog "More documents are in ${EROOT}/usr/share/doc/${PF}"
+
ewarn "Programs with suid/sgid will have LD_PRELOAD cleared"
ewarn "You have to unset suid/sgid to use with xvnkb"
}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-i18n/xvnkb/
@ 2016-05-14 8:49 Michał Górny
0 siblings, 0 replies; 9+ messages in thread
From: Michał Górny @ 2016-05-14 8:49 UTC (permalink / raw
To: gentoo-commits
commit: 7201dbb844c32f53b18ca786e899078c67a48730
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat May 14 08:12:29 2016 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat May 14 08:49:25 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7201dbb8
app-i18n/xvnkb: DESTTREE -> /usr, #582972
app-i18n/xvnkb/xvnkb-0.2.8a-r1.ebuild | 4 ++--
app-i18n/xvnkb/xvnkb-0.2.9a-r1.ebuild | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/app-i18n/xvnkb/xvnkb-0.2.8a-r1.ebuild b/app-i18n/xvnkb/xvnkb-0.2.8a-r1.ebuild
index a2224e5..a55599b 100644
--- a/app-i18n/xvnkb/xvnkb-0.2.8a-r1.ebuild
+++ b/app-i18n/xvnkb/xvnkb-0.2.8a-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
@@ -61,7 +61,7 @@ pkg_postinst() {
elog "Remember to"
elog "$ export LANG=en_US.UTF-8"
elog "(or any other UTF-8 locale) and"
- elog "$ export LD_PRELOAD=${DESTTREE}/lib/xvnkb.so"
+ elog "$ export LD_PRELOAD=/usr/lib/xvnkb.so"
elog "before starting X Window"
elog "More documents are in /usr/share/doc/${PF}"
ewarn "Programs with suid/sgid will have LD_PRELOAD cleared"
diff --git a/app-i18n/xvnkb/xvnkb-0.2.9a-r1.ebuild b/app-i18n/xvnkb/xvnkb-0.2.9a-r1.ebuild
index e7489af..2f70865 100644
--- a/app-i18n/xvnkb/xvnkb-0.2.9a-r1.ebuild
+++ b/app-i18n/xvnkb/xvnkb-0.2.9a-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
@@ -57,7 +57,7 @@ pkg_postinst() {
elog "Remember to"
elog "$ export LANG=en_US.UTF-8"
elog "(or any other UTF-8 locale) and"
- elog "$ export LD_PRELOAD=${DESTTREE}/lib/xvnkb.so"
+ elog "$ export LD_PRELOAD=/usr/$(get_libdir)/xvnkb.so"
elog "before starting X Window"
elog "More documents are in /usr/share/doc/${PF}"
ewarn "Programs with suid/sgid will have LD_PRELOAD cleared"
^ permalink raw reply related [flat|nested] 9+ messages in thread
end of thread, other threads:[~2025-02-10 9:43 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-02-10 9:43 [gentoo-commits] repo/gentoo:master commit in: app-i18n/xvnkb/ Sam James
-- strict thread matches above, loose matches on Subject: below --
2024-03-03 5:52 Sam James
2024-03-03 5:52 Sam James
2022-11-16 23:00 Sam James
2022-08-02 7:48 Joonas Niilola
2021-10-19 14:42 Akinori Hattori
2021-10-19 14:42 Akinori Hattori
2019-10-19 10:48 David Seifert
2016-05-14 8:49 Michał Górny
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox