* [gentoo-commits] repo/gentoo:master commit in: app-accessibility/yasr/
@ 2018-05-31 13:23 Aaron Bauman
0 siblings, 0 replies; 4+ messages in thread
From: Aaron Bauman @ 2018-05-31 13:23 UTC (permalink / raw
To: gentoo-commits
commit: a2c39442796e404a5408eb2348a784c0db3f5f69
Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Thu May 31 13:22:31 2018 +0000
Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Thu May 31 13:22:57 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2c39442
app-accessibility/yasr: cleanup src_configure
Drop dependency-tracking as it is default now. Add EPREFIX as well.
Package-Manager: Portage-2.3.40, Repoman-2.3.9
app-accessibility/yasr/yasr-0.6.9-r1.ebuild | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/app-accessibility/yasr/yasr-0.6.9-r1.ebuild b/app-accessibility/yasr/yasr-0.6.9-r1.ebuild
index 9c0ccb97b09..b9e8c1573d6 100644
--- a/app-accessibility/yasr/yasr-0.6.9-r1.ebuild
+++ b/app-accessibility/yasr/yasr-0.6.9-r1.ebuild
@@ -43,8 +43,7 @@ src_prepare() {
src_configure() {
econf \
- --datadir=/etc \
- --disable-dependency-tracking \
+ --datadir="${EPREFIX}"/etc \
$(use_enable nls)
}
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-accessibility/yasr/
@ 2021-04-01 21:17 Sam James
0 siblings, 0 replies; 4+ messages in thread
From: Sam James @ 2021-04-01 21:17 UTC (permalink / raw
To: gentoo-commits
commit: 10c2f5e418230f74c29ee7338a7369fb1b27d351
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 31 23:19:57 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Apr 1 21:17:07 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10c2f5e4
app-accessibility/yasr: port to EAPI 7, fix Prefix install
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-accessibility/yasr/yasr-0.6.9-r1.ebuild | 15 ++++++++-------
1 file changed, 8 insertions(+), 7 deletions(-)
diff --git a/app-accessibility/yasr/yasr-0.6.9-r1.ebuild b/app-accessibility/yasr/yasr-0.6.9-r1.ebuild
index b9e8c1573d6..1c7e089be17 100644
--- a/app-accessibility/yasr/yasr-0.6.9-r1.ebuild
+++ b/app-accessibility/yasr/yasr-0.6.9-r1.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=6
+EAPI=7
inherit autotools
@@ -14,8 +14,7 @@ SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE="nls"
-RDEPEND=""
-DEPEND="nls? ( sys-devel/gettext )"
+BDEPEND="nls? ( sys-devel/gettext )"
PATCHES=(
"${FILESDIR}"/${PN}-0.6.9-automake113.patch
@@ -26,8 +25,10 @@ PATCHES=(
src_prepare() {
default
- local x=/usr/share/gettext/po/Makefile.in.in
- [[ -e $x ]] && cp -f $x po/ || die #330879
+
+ local x="${BROOT}"/usr/share/gettext/po/Makefile.in.in
+ # bug 330879
+ [[ -e $x ]] && cp -f $x po/ || die
rm -r "${S}"/m4 || die
@@ -50,5 +51,5 @@ src_configure() {
pkg_postinst() {
elog
elog "Speech-dispatcher is configured as the default synthesizer for yasr."
- elog "If this is not what you want, edit /etc/yasr/yasr.conf."
+ elog "If this is not what you want, edit ${EROOT}/etc/yasr/yasr.conf."
}
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-accessibility/yasr/
@ 2021-04-01 21:17 Sam James
0 siblings, 0 replies; 4+ messages in thread
From: Sam James @ 2021-04-01 21:17 UTC (permalink / raw
To: gentoo-commits
commit: c69b1fa0eef6875e200f8c7343b5d2c4ac82551e
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 31 23:20:51 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Apr 1 21:17:08 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c69b1fa0
app-accessibility/yasr: make NLS fully optional
Bug: https://bugs.gentoo.org/330879
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-accessibility/yasr/yasr-0.6.9-r1.ebuild | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/app-accessibility/yasr/yasr-0.6.9-r1.ebuild b/app-accessibility/yasr/yasr-0.6.9-r1.ebuild
index 1c7e089be17..3d1abf962f2 100644
--- a/app-accessibility/yasr/yasr-0.6.9-r1.ebuild
+++ b/app-accessibility/yasr/yasr-0.6.9-r1.ebuild
@@ -26,9 +26,11 @@ PATCHES=(
src_prepare() {
default
- local x="${BROOT}"/usr/share/gettext/po/Makefile.in.in
- # bug 330879
- [[ -e $x ]] && cp -f $x po/ || die
+ if use nls ; then
+ local x="${BROOT}"/usr/share/gettext/po/Makefile.in.in
+ # bug 330879
+ [[ -e $x ]] && cp -f $x po/ || die
+ fi
rm -r "${S}"/m4 || die
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-accessibility/yasr/
@ 2022-04-07 15:31 Jakov Smolić
0 siblings, 0 replies; 4+ messages in thread
From: Jakov Smolić @ 2022-04-07 15:31 UTC (permalink / raw
To: gentoo-commits
commit: 41bcf6aef13afebfb087728d4f860665c7845b84
Author: Atharva Amritkar <atharvaamritkar <AT> protonmail <DOT> com>
AuthorDate: Sun Apr 3 18:12:27 2022 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Thu Apr 7 15:30:55 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41bcf6ae
app-accessibility/yasr: Keyword 0.6.9-r1 for ~riscv
Signed-off-by: Atharva Amritkar <atharvaamritkar <AT> protonmail.com>
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
app-accessibility/yasr/yasr-0.6.9-r1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/app-accessibility/yasr/yasr-0.6.9-r1.ebuild b/app-accessibility/yasr/yasr-0.6.9-r1.ebuild
index 3d1abf962f25..9730215c65cd 100644
--- a/app-accessibility/yasr/yasr-0.6.9-r1.ebuild
+++ b/app-accessibility/yasr/yasr-0.6.9-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="amd64 ppc x86"
+KEYWORDS="amd64 ppc ~riscv x86"
IUSE="nls"
BDEPEND="nls? ( sys-devel/gettext )"
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2022-04-07 15:31 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-05-31 13:23 [gentoo-commits] repo/gentoo:master commit in: app-accessibility/yasr/ Aaron Bauman
-- strict thread matches above, loose matches on Subject: below --
2021-04-01 21:17 Sam James
2021-04-01 21:17 Sam James
2022-04-07 15:31 Jakov Smolić
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox