33 lines
775 B
Bash
33 lines
775 B
Bash
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/kde-misc/kio-ftps/kio-ftps-0.2.ebuild,v 1.4 2012/07/20 16:43:21 johu Exp $
|
|
|
|
EAPI=4
|
|
|
|
inherit kde4-base
|
|
|
|
DESCRIPTION="A ftps KIO slave for KDE"
|
|
HOMEPAGE="http://kasablanca.berlios.de/kio-ftps/"
|
|
SRC_URI="mirror://berlios/kasablanca/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="4"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE="debug"
|
|
|
|
# This is just for some app we can use kio-ftps with
|
|
RDEPEND="|| (
|
|
$(add_kdebase_dep konqueror)
|
|
$(add_kdebase_dep dolphin)
|
|
)"
|
|
|
|
S="${WORKDIR}/${PN}"
|
|
|
|
src_prepare() {
|
|
# remove all temp files
|
|
rm -rf *~
|
|
# fix linking
|
|
sed -i \
|
|
-e "s:\${KDE4_KDECORE_LIBS}:\${KDE4_KIO_LIBS}:g" \
|
|
CMakeLists.txt || die "sed linking failed"
|
|
}
|