blob: 513072713506649d633804cf8e7327ced9135069 (
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-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-misc/lancelot-menu/lancelot-menu-1.0.3.ebuild,v 1.1 2008/10/15 21:31:24 jmbsvicetto Exp $
EAPI="2"
NEED_KDE="4.1"
OPENGL_REQUIRED="always"
inherit kde4-base
DESCRIPTION="Kool Kickoff replacement with many features"
HOMEPAGE="http://lancelot.fomentgroup.org/"
SRC_URI="mirror://sourceforge/${PN}/lancelot-${PV}.tar.bz2"
LICENSE="GPL-2 LGPL-2"
SLOT="4.1"
KEYWORDS="~amd64 ~x86"
IUSE="debug"
RDEPEND="kde-base/libplasma:${SLOT}
kde-base/kscreensaver:${SLOT}"
DEPEND="${RDEPEND}
>=dev-util/cmake-2.6.1
dev-lang/python"
S=${WORKDIR}/lancelot-${PV}
src_configure() {
local mycmakeargs
mycmakeargs="${mycmakeargs}
-DDBUS_INTERFACES_INSTALL_DIR=${KDEDIR}/share/dbus-1/interfaces/"
kde4-base_src_configure
}
|