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:
Michael Palimaka
2015-10-19 03:36:05 +11:00
parent b2718974e8
commit 7521e12452

View File

@@ -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}"
}