public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Andreas Sturmlechner" <asturm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-im/psi/, net-im/psi/files/
Date: Sun, 26 Mar 2017 09:25:35 +0000 (UTC)	[thread overview]
Message-ID: <1490520273.c61e8ac69f13196253142b90d46346c28c57c67f.asturm@gentoo> (raw)

commit:     c61e8ac69f13196253142b90d46346c28c57c67f
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 26 09:20:39 2017 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun Mar 26 09:24:33 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c61e8ac6

net-im/psi: Fix configure w/ >=qconf-2.0

Thanks-to: Rion <rion4ik <AT> gmail.com>
Gentoo-bug: 607644

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 net-im/psi/files/psi-0.15-qconf-2.patch | 87 +++++++++++++++++++++++++++++++++
 net-im/psi/psi-0.15.ebuild              |  3 +-
 2 files changed, 89 insertions(+), 1 deletion(-)

diff --git a/net-im/psi/files/psi-0.15-qconf-2.patch b/net-im/psi/files/psi-0.15-qconf-2.patch
new file mode 100644
index 00000000000..fb62e66f726
--- /dev/null
+++ b/net-im/psi/files/psi-0.15-qconf-2.patch
@@ -0,0 +1,87 @@
+--- a/qcm/recursiveprl.qcm
++++ a/qcm/recursiveprl.qcm
+@@ -39,10 +39,11 @@ public:
+ 			return false;
+ 		}
+ 
++		QFileInfo fi(qc_getenv("QC_COMMAND"));
+ 		QStringList args;
+ 		args += "-prl";
+ 		args += "-r";
+-		args += qc_getenv("QC_PROFILE");
++		args += fi.dir().filePath(qc_getenv("QC_PROFILE"));
+ 		if(conf->doCommand(conf->qmake_path, args) != 0)
+ 		{
+ 			success = false;
+@@ -91,9 +92,9 @@ public:
+ 		if(!conf->DEFINES.isEmpty())
+ 			str += "DEFINES += " + conf->DEFINES + '\n';
+ 		if(!conf->INCLUDEPATH.isEmpty())
+-			str += "INCLUDEPATH += " + conf->INCLUDEPATH + '\n';
++			str += "INCLUDEPATH += " + conf->escapedIncludes() + '\n';
+ 		if(!conf->LIBS.isEmpty())
+-			str += "LIBS += " + conf->LIBS + '\n';
++			str += "LIBS += " + conf->escapedLibs() + '\n';
+ 		if(!conf->extra.isEmpty())
+ 			str += conf->extra;
+ 		str += '\n';
+--- a/qcm/zlib.qcm	
++++ a/qcm/zlib.qcm	
+@@ -21,6 +21,8 @@ public:
+ 		QStringList incs;
+ 		QString version, libs, other;
+ 		QString s;
++
++
+ 
+ 		if(!conf->findPkgConfig("zlib", VersionAny, "", &version, &incs, &libs, &other)) {
+ 
+@@ -33,21 +35,37 @@ public:
+ 				if(!conf->findHeader("zlib.h", QStringList(), &s))
+ 					return false;
+ 			}
+-			incs.append(s.replace("\\\", "\\\\\\\"));
+ 
+-			s = conf->getenv("QC_WITH_ZLIB_LIB");
+-			if(!s.isEmpty()) {
+-				if(!conf->checkLibrary(s, "z"))
+-					return false;
+-			}
+-			else {
+-				if(!conf->findLibrary("z", &s))
+-					return false;
++			QStringList libNames = QStringList() << "z";
++			QString libName;
++#ifdef Q_OS_WIN
++			libNames << (qc_buildmode_debug? "zlibd" : "zlib");
++#endif
++			for (;;) {
++				s = conf->getenv("QC_WITH_ZLIB_LIB");
++				if(!s.isEmpty()) {
++					foreach (const QString l, libNames)
++						if(conf->checkLibrary(s, l)) {
++							libName = l;
++							break;
++						}
++				} else {
++					foreach (const QString l, libNames)
++						if(conf->findLibrary(l, &s)) {
++							libName = l;
++							break;
++						}
++				}
++
++				if(!libName.isEmpty())
++					break;
++
++				return false;
+ 			}
+ 			if (!s.isEmpty()) {
+-				libs = QString("-L%1 -lz").arg(s.replace("\\\", "\\\\\\\"));
++				libs = QString("-L%1 -l%2").arg(s, libName);
+ 			} else {
+-				libs = s.isEmpty()? "-lz" : QString("-L%1 -lz").arg(s);
++				libs = s.isEmpty()? QString("-l")+libName : QString("-L%1 -l%2").arg(s, libName);
+ 			}
+ 		}
+ 

diff --git a/net-im/psi/psi-0.15.ebuild b/net-im/psi/psi-0.15.ebuild
index 17f983d8341..2c60b4f0e87 100644
--- a/net-im/psi/psi-0.15.ebuild
+++ b/net-im/psi/psi-0.15.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -51,6 +51,7 @@ FORCE_PRINT_ELOG=1
 
 src_prepare() {
 	epatch "${FILESDIR}/${PN}-0.14-drop-debug-cflags.patch"
+	epatch "${FILESDIR}/${P}-qconf-2.patch"
 	epatch_user
 
 	qconf || die "Failed to create ./configure."


             reply	other threads:[~2017-03-26  9:25 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-03-26  9:25 Andreas Sturmlechner [this message]
  -- strict thread matches above, loose matches on Subject: below --
2015-10-09 12:40 [gentoo-commits] repo/gentoo:master commit in: net-im/psi/, net-im/psi/files/ Michael Palimaka

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=1490520273.c61e8ac69f13196253142b90d46346c28c57c67f.asturm@gentoo \
    --to=asturm@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