pinkbyte-overlay/kde-misc/kwalletcli/kwalletcli-2.11.ebuild

46 lines
892 B
Bash

# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
inherit eutils toolchain-funcs
DESCRIPTION="A command-line interface for the KDE Wallet"
HOMEPAGE="https://www.mirbsd.org/kwalletcli.htm"
SRC_URI="https://www.mirbsd.org/MirOS/dist/hosted/${PN}/${P}.tar.gz"
# TODO: add MirOS License?
LICENSE="LGPL-3+"
SLOT="4"
KEYWORDS=" ~amd64 ~x86"
RDEPEND="
app-shells/mksh
kde-base/kdelibs:4
kde-apps/kwalletd:4
"
DEPEND="${RDEPEND}
virtual/pkgconfig"
S="${WORKDIR}/${PN}"
src_prepare() {
sed -i \
-e "s:-lQtCore:$($(tc-getPKG_CONFIG) --libs QtCore):" \
GNUmakefile || die 'sed on GNUmakefile failed'
epatch_user
}
src_compile() {
tc-export CC CXX
emake KDE_VER=4
}
src_install() {
# Workaround for broken install script
dodir /usr/bin /usr/share/man/man1
emake DESTDIR="${D}" INSTALL_STRIP= install
}