* [gentoo-commits] proj/kde:master commit in: kde-base/step/
@ 2011-04-25 21:05 Alexey Shvetsov
0 siblings, 0 replies; 5+ messages in thread
From: Alexey Shvetsov @ 2011-04-25 21:05 UTC (permalink / raw
To: gentoo-commits
commit: 1a334b7f039a6662dfce52c5cbbc8d414b50297a
Author: Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 25 21:04:38 2011 +0000
Commit: Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
CommitDate: Mon Apr 25 21:04:38 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=1a334b7f
[kde-base/step] Update eclass foo
(Portage version: 2.2.0_alpha30/git/Linux x86_64, signed Manifest commit with key F82F92E6)
---
kde-base/step/step-9999.ebuild | 7 +++++--
1 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/kde-base/step/step-9999.ebuild b/kde-base/step/step-9999.ebuild
index 2fc1b79..227ddde 100644
--- a/kde-base/step/step-9999.ebuild
+++ b/kde-base/step/step-9999.ebuild
@@ -35,6 +35,9 @@ src_configure() {
$(cmake-utils_use_with gsl)
$(cmake-utils_use_with qalculate)
)
-
- kde4-meta_src_configure
+ if [[ ${PV} == *9999 ]]; then
+ kde4-base_src_configure
+ else
+ kde4-meta_src_configure
+ fi
}
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] proj/kde:master commit in: kde-base/step/
@ 2011-04-26 8:51 Tomas Chvatal
0 siblings, 0 replies; 5+ messages in thread
From: Tomas Chvatal @ 2011-04-26 8:51 UTC (permalink / raw
To: gentoo-commits
commit: 42a37aba38be1beb06686340c3594c990eb41ddb
Author: Tomas Chvatal <scarabeus <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 26 08:51:32 2011 +0000
Commit: Tomas Chvatal <scarabeus <AT> gentoo <DOT> org>
CommitDate: Tue Apr 26 08:51:32 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=42a37aba
[kde-base/step] Fix the eclass handling properly.
---
kde-base/step/step-4.6.9999.ebuild | 16 +++++++++++-----
kde-base/step/step-9999.ebuild | 14 ++++++--------
2 files changed, 17 insertions(+), 13 deletions(-)
diff --git a/kde-base/step/step-4.6.9999.ebuild b/kde-base/step/step-4.6.9999.ebuild
index 8dad66f..359a698 100644
--- a/kde-base/step/step-4.6.9999.ebuild
+++ b/kde-base/step/step-4.6.9999.ebuild
@@ -5,8 +5,15 @@
EAPI=4
KDE_HANDBOOK="optional"
-KMNAME="kdeedu"
-inherit kde4-meta
+KDE_SCM="git"
+if [[ ${PV} == *9999 ]]; then
+ eclass=kde4-base
+else
+ KMNAME="kdeedu"
+ eclass=kde4-meta
+fi
+
+inherit ${eclass}
DESCRIPTION="The KDE physics simulator"
KEYWORDS=""
@@ -26,10 +33,9 @@ PATCHES=(
)
src_configure() {
- mycmakeargs=(
+ local mycmakeargs=(
$(cmake-utils_use_with gsl)
$(cmake-utils_use_with qalculate)
)
-
- kde4-meta_src_configure
+ ${eclass}_src_configure
}
diff --git a/kde-base/step/step-9999.ebuild b/kde-base/step/step-9999.ebuild
index 227ddde..359a698 100644
--- a/kde-base/step/step-9999.ebuild
+++ b/kde-base/step/step-9999.ebuild
@@ -7,12 +7,14 @@ EAPI=4
KDE_HANDBOOK="optional"
KDE_SCM="git"
if [[ ${PV} == *9999 ]]; then
- inherit kde4-base
+ eclass=kde4-base
else
KMNAME="kdeedu"
- inherit kde4-meta
+ eclass=kde4-meta
fi
+inherit ${eclass}
+
DESCRIPTION="The KDE physics simulator"
KEYWORDS=""
IUSE="debug +gsl +qalculate"
@@ -31,13 +33,9 @@ PATCHES=(
)
src_configure() {
- mycmakeargs=(
+ local mycmakeargs=(
$(cmake-utils_use_with gsl)
$(cmake-utils_use_with qalculate)
)
- if [[ ${PV} == *9999 ]]; then
- kde4-base_src_configure
- else
- kde4-meta_src_configure
- fi
+ ${eclass}_src_configure
}
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] proj/kde:master commit in: kde-base/step/
@ 2011-05-30 3:32 Jorge Manuel B. S. Vicetto
0 siblings, 0 replies; 5+ messages in thread
From: Jorge Manuel B. S. Vicetto @ 2011-05-30 3:32 UTC (permalink / raw
To: gentoo-commits
commit: 0b6dd4874ef4add27513e16ab5372e7beb3a72a3
Author: Jorge Manuel B. S. Vicetto (jmbsvicetto) <jmbsvicetto <AT> gentoo <DOT> org>
AuthorDate: Mon May 30 02:42:09 2011 +0000
Commit: Jorge Manuel B. S. Vicetto <jmbsvicetto <AT> gentoo <DOT> org>
CommitDate: Mon May 30 02:42:09 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=0b6dd487
[kde-base/step] 4.6.80 version bump.
(Portage version: 2.2.0_alpha35/git/Linux x86_64, signed Manifest commit with key BB0E6E98)
---
kde-base/step/step-4.6.80.ebuild | 34 ++++++++++++++++++++++++++++++++++
1 files changed, 34 insertions(+), 0 deletions(-)
diff --git a/kde-base/step/step-4.6.80.ebuild b/kde-base/step/step-4.6.80.ebuild
new file mode 100644
index 0000000..251fda8
--- /dev/null
+++ b/kde-base/step/step-4.6.80.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI="4"
+
+KDE_HANDBOOK="optional"
+KDE_SCM="git"
+inherit kde4-base
+
+DESCRIPTION="The KDE physics simulator"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="debug +gsl +qalculate"
+
+DEPEND="
+ >=dev-cpp/eigen-2.0.3:2
+ sci-libs/cln
+ >=sci-mathematics/gmm-3.0
+ gsl? ( >=sci-libs/gsl-1.9-r1 )
+ qalculate? ( >=sci-libs/libqalculate-0.9.5 )
+"
+RDEPEND="${DEPEND}"
+
+PATCHES=(
+ "${FILESDIR}"/${PN}-4.3.2-solaris.patch
+)
+
+src_configure() {
+ local mycmakeargs=(
+ $(cmake-utils_use_with gsl)
+ $(cmake-utils_use_with qalculate)
+ )
+ kde4-base_src_configure
+}
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] proj/kde:master commit in: kde-base/step/
@ 2013-07-31 19:27 Johannes Huber
0 siblings, 0 replies; 5+ messages in thread
From: Johannes Huber @ 2013-07-31 19:27 UTC (permalink / raw
To: gentoo-commits
commit: 0deac5ba6b597d7d404dbe25bd7cf1e66ce96743
Author: Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 31 19:26:39 2013 +0000
Commit: Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Wed Jul 31 19:26:39 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=0deac5ba
[kde-base/step] Update HOMEPAGE wrt bug #478870.
Package-Manager: portage-2.2.0_alpha191
---
kde-base/step/step-4.10.97.ebuild | 1 +
kde-base/step/step-4.11.49.9999.ebuild | 1 +
kde-base/step/step-9999.ebuild | 1 +
3 files changed, 3 insertions(+)
diff --git a/kde-base/step/step-4.10.97.ebuild b/kde-base/step/step-4.10.97.ebuild
index 4428b34..4bacaa2 100644
--- a/kde-base/step/step-4.10.97.ebuild
+++ b/kde-base/step/step-4.10.97.ebuild
@@ -8,6 +8,7 @@ KDE_HANDBOOK="optional"
inherit kde4-base
DESCRIPTION="The KDE physics simulator"
+HOMEPAGE="http://edu.kde.org/step"
KEYWORDS=" ~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="debug +gsl +qalculate"
diff --git a/kde-base/step/step-4.11.49.9999.ebuild b/kde-base/step/step-4.11.49.9999.ebuild
index 127db0b..f85b7f1 100644
--- a/kde-base/step/step-4.11.49.9999.ebuild
+++ b/kde-base/step/step-4.11.49.9999.ebuild
@@ -8,6 +8,7 @@ KDE_HANDBOOK="optional"
inherit kde4-base
DESCRIPTION="The KDE physics simulator"
+HOMEPAGE="http://edu.kde.org/step"
KEYWORDS=""
IUSE="debug +gsl +qalculate"
diff --git a/kde-base/step/step-9999.ebuild b/kde-base/step/step-9999.ebuild
index 127db0b..f85b7f1 100644
--- a/kde-base/step/step-9999.ebuild
+++ b/kde-base/step/step-9999.ebuild
@@ -8,6 +8,7 @@ KDE_HANDBOOK="optional"
inherit kde4-base
DESCRIPTION="The KDE physics simulator"
+HOMEPAGE="http://edu.kde.org/step"
KEYWORDS=""
IUSE="debug +gsl +qalculate"
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] proj/kde:master commit in: kde-base/step/
@ 2014-03-15 7:22 Michael Palimaka
0 siblings, 0 replies; 5+ messages in thread
From: Michael Palimaka @ 2014-03-15 7:22 UTC (permalink / raw
To: gentoo-commits
commit: 5adcf6c27e497b22ef0267c53f230eba198634a5
Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 15 07:22:32 2014 +0000
Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Sat Mar 15 07:22:32 2014 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=5adcf6c2
[kde-base/step] Remove unused dependencies.
cln is used only indirectly via qalculate.
gmm is no longer used since upstream commit b7c96970b004e882156456bf64e70edebd3b116f.
Package-Manager: portage-2.2.8-r1
---
kde-base/step/step-4.12.49.9999.ebuild | 2 --
kde-base/step/step-4.12.90.ebuild | 2 --
kde-base/step/step-4.13.49.9999.ebuild | 2 --
kde-base/step/step-9999.ebuild | 2 --
4 files changed, 8 deletions(-)
diff --git a/kde-base/step/step-4.12.49.9999.ebuild b/kde-base/step/step-4.12.49.9999.ebuild
index 1f031bb..34a54df 100644
--- a/kde-base/step/step-4.12.49.9999.ebuild
+++ b/kde-base/step/step-4.12.49.9999.ebuild
@@ -14,8 +14,6 @@ IUSE="debug +gsl +qalculate"
DEPEND="
>=dev-cpp/eigen-2.0.3:2
- sci-libs/cln
- >=sci-mathematics/gmm-3.0
gsl? ( >=sci-libs/gsl-1.9-r1 )
qalculate? ( >=sci-libs/libqalculate-0.9.5 )
"
diff --git a/kde-base/step/step-4.12.90.ebuild b/kde-base/step/step-4.12.90.ebuild
index 3469102..72d66da 100644
--- a/kde-base/step/step-4.12.90.ebuild
+++ b/kde-base/step/step-4.12.90.ebuild
@@ -14,8 +14,6 @@ IUSE="debug +gsl +qalculate"
DEPEND="
>=dev-cpp/eigen-2.0.3:2
- sci-libs/cln
- >=sci-mathematics/gmm-3.0
gsl? ( >=sci-libs/gsl-1.9-r1 )
qalculate? ( >=sci-libs/libqalculate-0.9.5 )
"
diff --git a/kde-base/step/step-4.13.49.9999.ebuild b/kde-base/step/step-4.13.49.9999.ebuild
index 1f031bb..34a54df 100644
--- a/kde-base/step/step-4.13.49.9999.ebuild
+++ b/kde-base/step/step-4.13.49.9999.ebuild
@@ -14,8 +14,6 @@ IUSE="debug +gsl +qalculate"
DEPEND="
>=dev-cpp/eigen-2.0.3:2
- sci-libs/cln
- >=sci-mathematics/gmm-3.0
gsl? ( >=sci-libs/gsl-1.9-r1 )
qalculate? ( >=sci-libs/libqalculate-0.9.5 )
"
diff --git a/kde-base/step/step-9999.ebuild b/kde-base/step/step-9999.ebuild
index 1f031bb..34a54df 100644
--- a/kde-base/step/step-9999.ebuild
+++ b/kde-base/step/step-9999.ebuild
@@ -14,8 +14,6 @@ IUSE="debug +gsl +qalculate"
DEPEND="
>=dev-cpp/eigen-2.0.3:2
- sci-libs/cln
- >=sci-mathematics/gmm-3.0
gsl? ( >=sci-libs/gsl-1.9-r1 )
qalculate? ( >=sci-libs/libqalculate-0.9.5 )
"
^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2014-03-15 7:23 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-05-30 3:32 [gentoo-commits] proj/kde:master commit in: kde-base/step/ Jorge Manuel B. S. Vicetto
-- strict thread matches above, loose matches on Subject: below --
2014-03-15 7:22 Michael Palimaka
2013-07-31 19:27 Johannes Huber
2011-04-26 8:51 Tomas Chvatal
2011-04-25 21:05 Alexey Shvetsov
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox