From: "Alexey Shvetsov" <alexxy@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] proj/kde:master commit in: kde-base/kmouth/, kde-base/kaccessible/, kde-base/kmag/, kde-base/jovie/, ...
Date: Tue, 6 Sep 2011 20:42:42 +0000 (UTC) [thread overview]
Message-ID: <64a560ae343af84d804e6659c6cabd37ba5ccaeb.alexxy@gentoo> (raw)
commit: 64a560ae343af84d804e6659c6cabd37ba5ccaeb
Author: Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 6 20:41:56 2011 +0000
Commit: Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
CommitDate: Tue Sep 6 20:41:56 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=64a560ae
[kde-base] kdeaccessibility eclass black magic
sed -e 's:kde4-base:${kde_eclass}:g' -e 's:KDE_SCM="git":KDE_SCM="git"\nif [[ ${PV} == *9999 ]];then\n\tkde_eclass="kde4-base"\nelse\n\tKMNAME="kdeaccessibility"\n\tkde_eclass="kde4-meta"\nfi:g'
Signed-off-by: Alexey Shvetsov <alexxy <AT> gentoo.org>
---
kde-base/jovie/jovie-4.7.49.9999.ebuild | 8 +++++++-
.../kaccessible/kaccessible-4.7.49.9999.ebuild | 10 ++++++++--
kde-base/kmag/kmag-4.7.49.9999.ebuild | 8 +++++++-
kde-base/kmousetool/kmousetool-4.7.49.9999.ebuild | 8 +++++++-
kde-base/kmouth/kmouth-4.7.49.9999.ebuild | 8 +++++++-
5 files changed, 36 insertions(+), 6 deletions(-)
diff --git a/kde-base/jovie/jovie-4.7.49.9999.ebuild b/kde-base/jovie/jovie-4.7.49.9999.ebuild
index f528ea3..36c4f21 100644
--- a/kde-base/jovie/jovie-4.7.49.9999.ebuild
+++ b/kde-base/jovie/jovie-4.7.49.9999.ebuild
@@ -6,8 +6,14 @@ EAPI=4
KDE_HANDBOOK="optional"
KDE_SCM="git"
+if [[ ${PV} == *9999 ]]; then
+ kde_eclass="kde4-base"
+else
+ KMNAME="kdeaccessibility"
+ kde_eclass="kde4-meta"
+fi
-inherit kde4-base
+inherit ${kde_eclass}
DESCRIPTION="Jovie is a text to speech application"
KEYWORDS=""
diff --git a/kde-base/kaccessible/kaccessible-4.7.49.9999.ebuild b/kde-base/kaccessible/kaccessible-4.7.49.9999.ebuild
index 8f272a0..ac92a7b 100644
--- a/kde-base/kaccessible/kaccessible-4.7.49.9999.ebuild
+++ b/kde-base/kaccessible/kaccessible-4.7.49.9999.ebuild
@@ -5,7 +5,13 @@
EAPI=4
KDE_SCM="git"
-inherit kde4-base
+if [[ ${PV} == *9999 ]]; then
+ kde_eclass="kde4-base"
+else
+ KMNAME="kdeaccessibility"
+ kde_eclass="kde4-meta"
+fi
+inherit ${kde_eclass}
DESCRIPTION="Provides accessibility services like focus tracking"
KEYWORDS=""
@@ -18,5 +24,5 @@ src_configure() {
mycmakeargs=(
$(cmake-utils_use_with speechd Speechd)
)
- kde4-base_src_configure
+ ${kde_eclass}_src_configure
}
diff --git a/kde-base/kmag/kmag-4.7.49.9999.ebuild b/kde-base/kmag/kmag-4.7.49.9999.ebuild
index c21d3ac..1c12649 100644
--- a/kde-base/kmag/kmag-4.7.49.9999.ebuild
+++ b/kde-base/kmag/kmag-4.7.49.9999.ebuild
@@ -6,7 +6,13 @@ EAPI=4
KDE_HANDBOOK="optional"
KDE_SCM="git"
-inherit kde4-base
+if [[ ${PV} == *9999 ]]; then
+ kde_eclass="kde4-base"
+else
+ KMNAME="kdeaccessibility"
+ kde_eclass="kde4-meta"
+fi
+inherit ${kde_eclass}
DESCRIPTION="KDE screen magnifier"
KEYWORDS=""
diff --git a/kde-base/kmousetool/kmousetool-4.7.49.9999.ebuild b/kde-base/kmousetool/kmousetool-4.7.49.9999.ebuild
index 24c39ef..1b85337 100644
--- a/kde-base/kmousetool/kmousetool-4.7.49.9999.ebuild
+++ b/kde-base/kmousetool/kmousetool-4.7.49.9999.ebuild
@@ -6,8 +6,14 @@ EAPI=4
KDE_HANDBOOK="optional"
KDE_SCM="git"
+if [[ ${PV} == *9999 ]]; then
+ kde_eclass="kde4-base"
+else
+ KMNAME="kdeaccessibility"
+ kde_eclass="kde4-meta"
+fi
-inherit kde4-base
+inherit ${kde_eclass}
DESCRIPTION="KDE program that clicks the mouse for you."
KEYWORDS=""
diff --git a/kde-base/kmouth/kmouth-4.7.49.9999.ebuild b/kde-base/kmouth/kmouth-4.7.49.9999.ebuild
index 3be662e..a3b55b4 100644
--- a/kde-base/kmouth/kmouth-4.7.49.9999.ebuild
+++ b/kde-base/kmouth/kmouth-4.7.49.9999.ebuild
@@ -6,8 +6,14 @@ EAPI=4
KDE_HANDBOOK="optional"
KDE_SCM="git"
+if [[ ${PV} == *9999 ]]; then
+ kde_eclass="kde4-base"
+else
+ KMNAME="kdeaccessibility"
+ kde_eclass="kde4-meta"
+fi
-inherit kde4-base
+inherit ${kde_eclass}
DESCRIPTION="KDE application that reads what you type out loud. Doesn't include a speech synthesizer."
KEYWORDS=""
next reply other threads:[~2011-09-06 20:42 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-09-06 20:42 Alexey Shvetsov [this message]
-- strict thread matches above, loose matches on Subject: below --
2011-08-21 14:14 [gentoo-commits] proj/kde:master commit in: kde-base/kmouth/, kde-base/kaccessible/, kde-base/kmag/, kde-base/jovie/, Alexey Shvetsov
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=64a560ae343af84d804e6659c6cabd37ba5ccaeb.alexxy@gentoo \
--to=alexxy@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox