public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/qt:master commit in: x11-libs/remotecontrolwidget/
@ 2012-02-15 18:51 Johannes Huber
  0 siblings, 0 replies; 3+ messages in thread
From: Johannes Huber @ 2012-02-15 18:51 UTC (permalink / raw
  To: gentoo-commits

commit:     06d73351f4f49b2bac81cb3a4a13628d8092343c
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 15 18:55:36 2012 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Wed Feb 15 18:55:36 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=06d73351

[x11-libs/remotecontrolwidget] EAPI 4, git-2 eclass, missing metadata.xml, pseudo license

(Portage version: 2.2.0_alpha86/git/Linux i686, unsigned Manifest commit)

---
 x11-libs/remotecontrolwidget/metadata.xml          |    5 +++++
 .../remotecontrolwidget-9999.ebuild                |   10 +++++-----
 2 files changed, 10 insertions(+), 5 deletions(-)

diff --git a/x11-libs/remotecontrolwidget/metadata.xml b/x11-libs/remotecontrolwidget/metadata.xml
new file mode 100644
index 0000000..ab02f99
--- /dev/null
+++ b/x11-libs/remotecontrolwidget/metadata.xml
@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<herd>qt</herd>
+</pkgmetadata>

diff --git a/x11-libs/remotecontrolwidget/remotecontrolwidget-9999.ebuild b/x11-libs/remotecontrolwidget/remotecontrolwidget-9999.ebuild
index c9708bb..80923d9 100644
--- a/x11-libs/remotecontrolwidget/remotecontrolwidget-9999.ebuild
+++ b/x11-libs/remotecontrolwidget/remotecontrolwidget-9999.ebuild
@@ -1,19 +1,19 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 
-EAPI=3
+EAPI=4
 
-EGIT_REPO_URI="git://gitorious.org/qt-labs/remotecontrolwidget.git"
+EGIT_REPO_URI="git://gitorious.org/qt-labs/${PN}"
 EGIT_BRANCH="simulator"
 
-inherit qt4-r2 git
+inherit qt4-r2 git-2
 
 DESCRIPTION="Remote Control Widget for Qt-Simulator"
 HOMEPAGE="http://qt.gitorious.org/qt-labs/remotecontrolwidget"
 SRC_URI=""
 
-LICENSE=""
+LICENSE="as-is"
 SLOT="0"
 KEYWORDS=""
 IUSE=""



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] proj/qt:master commit in: x11-libs/remotecontrolwidget/
@ 2012-05-03 15:35 Davide Pesavento
  0 siblings, 0 replies; 3+ messages in thread
From: Davide Pesavento @ 2012-05-03 15:35 UTC (permalink / raw
  To: gentoo-commits

commit:     e9045aee7fdb284fefb19141973bfa6b140b67fe
Author:     Davide Pesavento <davidepesa <AT> gmail <DOT> com>
AuthorDate: Thu May  3 15:34:53 2012 +0000
Commit:     Davide Pesavento <pesa <AT> gentoo <DOT> org>
CommitDate: Thu May  3 15:34:53 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=e9045aee

[x11-libs/remotecontrolwidget] Major update.

Switch to the more up-to-date "simulator-master" branch, fix multilib,
add dependencies. It should compile and install correctly now.

(Portage version: 2.2.0_alpha101/git/Linux x86_64, unsigned Manifest commit)

---
 .../remotecontrolwidget-9999.ebuild                |   30 ++++++++++++-------
 1 files changed, 19 insertions(+), 11 deletions(-)

diff --git a/x11-libs/remotecontrolwidget/remotecontrolwidget-9999.ebuild b/x11-libs/remotecontrolwidget/remotecontrolwidget-9999.ebuild
index 80923d9..251bc03 100644
--- a/x11-libs/remotecontrolwidget/remotecontrolwidget-9999.ebuild
+++ b/x11-libs/remotecontrolwidget/remotecontrolwidget-9999.ebuild
@@ -4,27 +4,35 @@
 
 EAPI=4
 
-EGIT_REPO_URI="git://gitorious.org/qt-labs/${PN}"
-EGIT_BRANCH="simulator"
+EGIT_REPO_URI="git://gitorious.org/qt-labs/${PN}.git
+	https://git.gitorious.org/qt-labs/${PN}.git"
+EGIT_BRANCH="simulator-master"
 
-inherit qt4-r2 git-2
+inherit multilib qt4-r2 git-2
 
-DESCRIPTION="Remote Control Widget for Qt-Simulator"
+DESCRIPTION="Remote Control Widget for Qt Simulator"
 HOMEPAGE="http://qt.gitorious.org/qt-labs/remotecontrolwidget"
-SRC_URI=""
 
-LICENSE="as-is"
+LICENSE="LGPL-2.1"
 SLOT="0"
 KEYWORDS=""
 IUSE=""
 
-DEPEND=""
+DEPEND="
+	>=x11-libs/qt-core-4.7:4
+	>=x11-libs/qt-gui-4.7:4
+	>=x11-libs/qt-mobility-1.2[location]
+	>=x11-libs/qt-script-4.7:4
+"
 RDEPEND="${DEPEND}"
 
 src_prepare() {
-	sed -e "s#\$\$PREFIX#/usr#" -i library/${PN}.pro || die "sed failed"
-}
+	qt4-r2_src_prepare
+
+	sed -i -e '/SUBDIRS/ s/pluginSupport//' \
+		${PN}.pro || die
 
-src_configure() {
-	eqmake4 library/${PN}.pro
+	sed -i -e "s:\(PREFIX =\).*$:\1 ${EPREFIX}/usr:" \
+		-e "s:/lib:/$(get_libdir):" \
+		library/library.pro || die
 }



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] proj/qt:master commit in: x11-libs/remotecontrolwidget/
@ 2014-12-15 21:23 Davide Pesavento
  0 siblings, 0 replies; 3+ messages in thread
From: Davide Pesavento @ 2014-12-15 21:23 UTC (permalink / raw
  To: gentoo-commits

commit:     5b9cef4942b11364e495bd0dbe7cc2b6627593c2
Author:     Davide Pesavento <pesa <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 15 21:21:52 2014 +0000
Commit:     Davide Pesavento <pesa <AT> gentoo <DOT> org>
CommitDate: Mon Dec 15 21:21:52 2014 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=5b9cef49

[x11-libs/remotecontrolwidget] Remove obsolete package.

Last commit in Feb 2010. It was a dependency of the
(long dead) Nokia Qt Simulator.

---
 x11-libs/remotecontrolwidget/metadata.xml          |  5 ---
 .../remotecontrolwidget-9999.ebuild                | 38 ----------------------
 2 files changed, 43 deletions(-)

diff --git a/x11-libs/remotecontrolwidget/metadata.xml b/x11-libs/remotecontrolwidget/metadata.xml
deleted file mode 100644
index ab02f99..0000000
--- a/x11-libs/remotecontrolwidget/metadata.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-	<herd>qt</herd>
-</pkgmetadata>

diff --git a/x11-libs/remotecontrolwidget/remotecontrolwidget-9999.ebuild b/x11-libs/remotecontrolwidget/remotecontrolwidget-9999.ebuild
deleted file mode 100644
index 88308c4..0000000
--- a/x11-libs/remotecontrolwidget/remotecontrolwidget-9999.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=4
-
-EGIT_REPO_URI="git://gitorious.org/qt-labs/${PN}.git
-	https://git.gitorious.org/qt-labs/${PN}.git"
-EGIT_BRANCH="simulator-master"
-
-inherit multilib qt4-r2 git-2
-
-DESCRIPTION="Remote Control Widget for Qt Simulator"
-HOMEPAGE="http://qt.gitorious.org/qt-labs/remotecontrolwidget"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS=""
-IUSE=""
-
-DEPEND="
-	>=dev-qt/qtcore-4.7:4
-	>=dev-qt/qtgui-4.7:4
-	>=dev-qt/qt-mobility-1.2[location]
-	>=dev-qt/qtscript-4.7:4
-"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-	qt4-r2_src_prepare
-
-	sed -i -e '/SUBDIRS/ s/pluginSupport//' \
-		${PN}.pro || die
-
-	sed -i -e "s:\(PREFIX =\).*$:\1 ${EPREFIX}/usr:" \
-		-e "s:/lib:/$(get_libdir):" \
-		library/library.pro || die
-}


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2014-12-15 21:24 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-15 18:51 [gentoo-commits] proj/qt:master commit in: x11-libs/remotecontrolwidget/ Johannes Huber
  -- strict thread matches above, loose matches on Subject: below --
2012-05-03 15:35 Davide Pesavento
2014-12-15 21:23 Davide Pesavento

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox