diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2011-06-17 15:48:22 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2011-06-17 15:48:22 +0000 |
commit | 11c3b03d1bd1c825780bcf1f8ecbcb444af4a1b8 (patch) | |
tree | 73a4e44829cf9d57517a9d4d7f68d6cd868f5222 /app-crypt/xca | |
parent | Unmask www-client/chromium-13 and corresponding v8 versions. (diff) | |
download | gentoo-2-11c3b03d1bd1c825780bcf1f8ecbcb444af4a1b8.tar.gz gentoo-2-11c3b03d1bd1c825780bcf1f8ecbcb444af4a1b8.tar.bz2 gentoo-2-11c3b03d1bd1c825780bcf1f8ecbcb444af4a1b8.zip |
Fix underlinking (missing -lQtCore) wrt #371887 by Diego Elio Pettenò
(Portage version: 2.2.0_alpha41/cvs/Linux x86_64)
Diffstat (limited to 'app-crypt/xca')
-rw-r--r-- | app-crypt/xca/ChangeLog | 6 | ||||
-rw-r--r-- | app-crypt/xca/files/xca-0.9.0-underlinking.patch | 12 | ||||
-rw-r--r-- | app-crypt/xca/xca-0.9.0.ebuild | 5 |
3 files changed, 20 insertions, 3 deletions
diff --git a/app-crypt/xca/ChangeLog b/app-crypt/xca/ChangeLog index 7d2029f42fdf..6c30d2920f49 100644 --- a/app-crypt/xca/ChangeLog +++ b/app-crypt/xca/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-crypt/xca # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/xca/ChangeLog,v 1.33 2011/03/08 20:15:19 abcd Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/xca/ChangeLog,v 1.34 2011/06/17 15:48:22 ssuominen Exp $ + + 17 Jun 2011; Samuli Suominen <ssuominen@gentoo.org> xca-0.9.0.ebuild, + +files/xca-0.9.0-underlinking.patch: + Fix underlinking (missing -lQtCore) wrt #371887 by Diego Elio Pettenò 08 Mar 2011; Jonathan Callen <abcd@gentoo.org> xca-0.9.0.ebuild: Add prefix keywords, inject $EPREFIX as needed diff --git a/app-crypt/xca/files/xca-0.9.0-underlinking.patch b/app-crypt/xca/files/xca-0.9.0-underlinking.patch new file mode 100644 index 000000000000..50d311b40468 --- /dev/null +++ b/app-crypt/xca/files/xca-0.9.0-underlinking.patch @@ -0,0 +1,12 @@ +http://bugs.gentoo.org/371887 + +--- configure ++++ configure +@@ -121,6 +121,7 @@ + ######################### QT + subdirs="/qt /qt4" + search_includes QtCore/QObject || err "The QT Library headerfiles were not found. Set QTDIR appropriately." ++search_lib QtCore4 QtCore || err "The QT library was not found." + search_lib QtGui4 QtGui || err "The QT library was not found." + search_lib ltdl || err "Libtool ltdl not found." + search_lib c_r || true diff --git a/app-crypt/xca/xca-0.9.0.ebuild b/app-crypt/xca/xca-0.9.0.ebuild index 47b67653ec38..59e65711c19a 100644 --- a/app-crypt/xca/xca-0.9.0.ebuild +++ b/app-crypt/xca/xca-0.9.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/xca/xca-0.9.0.ebuild,v 1.6 2011/03/08 20:15:19 abcd Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/xca/xca-0.9.0.ebuild,v 1.7 2011/06/17 15:48:22 ssuominen Exp $ EAPI="3" @@ -22,7 +22,8 @@ DEPEND="${RDEPEND} src_prepare() { # http://sourceforge.net/tracker/index.php?func=detail&aid=1800298&group_id=62274&atid=500028 - epatch "${FILESDIR}/${P}-qt_detection.patch" + epatch "${FILESDIR}"/${P}-qt_detection.patch + epatch "${FILESDIR}"/${P}-underlinking.patch #371887 } src_configure() { |