mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
kde-base/kactivitymanagerd: skip rpath
Because install is bypassed, cmake's usual rpath processing doesn't happen, resulting in a null rpath. No rpath is required for this package, so skip the whole thing entirely. Gentoo-bug: 563406 Package-Manager: portage-2.2.20.1
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
# Copyright 1999-2015 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI=5
|
||||
|
||||
KMNAME="kactivities"
|
||||
inherit kde4-base
|
||||
|
||||
DESCRIPTION="KDE Activity Manager Daemon"
|
||||
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND="
|
||||
!<kde-base/kactivities-4.14.3-r1
|
||||
!kde-frameworks/kactivities
|
||||
"
|
||||
|
||||
S=${WORKDIR}/${KMNAME}-${PV}
|
||||
|
||||
src_configure() {
|
||||
local mycmakeargs=(
|
||||
-DCMAKE_SKIP_RPATH=ON
|
||||
-DWITH_NepomukCore=OFF
|
||||
)
|
||||
kde4-base_src_configure
|
||||
}
|
||||
|
||||
src_install() {
|
||||
dobin "${BUILD_DIR}/src/service/${PN}"
|
||||
}
|
||||
Reference in New Issue
Block a user