blob: 438ca666470cebd2dd3dfbdb219f4fc4276c092a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# Copyright 1999-2009 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.1 2009/05/30 09:45:56 scarabeus Exp $
EAPI="2"
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="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
# This is just for some app we can use kio-ftps with
RDEPEND="|| (
>=kde-base/konqueror-${KDE_MINIMAL}
>=kde-base/dolphin-${KDE_MINIMAL}
)"
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"
}
|