blob: b3139f8eb739362e93faadbd72a802da5238ebee (
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
34
35
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="5"
inherit kde4-base
DESCRIPTION="KDE plasmoid. This applet shows a departure board for a given stop."
HOMEPAGE="http://www.kde-look.org/content/show.php?content=106175"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~x86"
SLOT="0"
RDEPEND="
"
DEPEND="dev-vcs/git"
### Variables
MY_WORKDIR="${WORKDIR}"/"${P}"
S="${MY_WORKDIR}"
src_unpack() {
#unpack ${A}
git clone git://anongit.kde.org/publictransport ${S}
cp "${FILESDIR}/CMakeLists.txt" ${S}/
cp "${FILESDIR}/CMakeLists-accessor.txt" "${S}/engine/accessorInfos/CMakeLists.txt"
ln -s "${S}/libpublictransporthelper" "${S}/publictransporthelper"
}
MAKEOPTS="-j1"
|