From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 22F111396D9 for ; Fri, 3 Nov 2017 02:37:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2F0DCE0C2F; Fri, 3 Nov 2017 02:37:53 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0D194E0C2F for ; Fri, 3 Nov 2017 02:37:52 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EEC9733BF43 for ; Fri, 3 Nov 2017 02:37:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 71DEC9303 for ; Fri, 3 Nov 2017 02:37:49 +0000 (UTC) From: "Maciej Mrozowski" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Maciej Mrozowski" Message-ID: <1509676652.d98611843b68f0c3d545d291df522f1b71a60737.reavertm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-im/kadu/, net-im/kadu/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-im/kadu/files/kadu-4.3-fix-plugins-rpath.patch net-im/kadu/kadu-4.3-r1.ebuild X-VCS-Directories: net-im/kadu/files/ net-im/kadu/ X-VCS-Committer: reavertm X-VCS-Committer-Name: Maciej Mrozowski X-VCS-Revision: d98611843b68f0c3d545d291df522f1b71a60737 X-VCS-Branch: master Date: Fri, 3 Nov 2017 02:37:49 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 6efe8074-9349-4434-8382-384aab950443 X-Archives-Hash: 5ca3c2c29e91662a59f60941a51f72b7 commit: d98611843b68f0c3d545d291df522f1b71a60737 Author: Maciej Mrozowski gentoo org> AuthorDate: Fri Nov 3 02:37:32 2017 +0000 Commit: Maciej Mrozowski gentoo org> CommitDate: Fri Nov 3 02:37:32 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9861184 net-im/kadu: Make rpath absolute, bug 614202. Package-Manager: Portage-2.3.8, Repoman-2.3.4 net-im/kadu/files/kadu-4.3-fix-plugins-rpath.patch | 12 ++++++++++++ net-im/kadu/kadu-4.3-r1.ebuild | 1 + 2 files changed, 13 insertions(+) diff --git a/net-im/kadu/files/kadu-4.3-fix-plugins-rpath.patch b/net-im/kadu/files/kadu-4.3-fix-plugins-rpath.patch new file mode 100644 index 00000000000..bb171af5f41 --- /dev/null +++ b/net-im/kadu/files/kadu-4.3-fix-plugins-rpath.patch @@ -0,0 +1,12 @@ +diff -ruN kadu-4.3/cmake/KaduMacros.cmake my/cmake/KaduMacros.cmake +--- kadu-4.3/cmake/KaduMacros.cmake 2017-01-24 22:36:21.000000000 +0100 ++++ my/cmake/KaduMacros.cmake 2017-11-03 03:24:17.827054622 +0100 +@@ -221,7 +221,7 @@ + + if (NOT WIN32) + set_target_properties (${KADU_PLUGIN_NAME} PROPERTIES +- INSTALL_RPATH "${KADU_INSTALL_LIB_DIR}/kadu" ++ INSTALL_RPATH "${KADU_INSTALL_PREFIX}/${KADU_INSTALL_LIB_DIR}/kadu" + BUILD_WITH_INSTALL_RPATH TRUE + ) + endif () diff --git a/net-im/kadu/kadu-4.3-r1.ebuild b/net-im/kadu/kadu-4.3-r1.ebuild index a2dbc88c32f..b33c0729b45 100644 --- a/net-im/kadu/kadu-4.3-r1.ebuild +++ b/net-im/kadu/kadu-4.3-r1.ebuild @@ -102,6 +102,7 @@ word_fix PATCHES=( "${FILESDIR}/${PN}-4.3-do-not-force-ccache.patch" + "${FILESDIR}/${PN}-4.3-fix-plugins-rpath.patch" ) src_configure() {