32 lines
740 B
Bash
32 lines
740 B
Bash
# Copyright 1999-2013 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/kde-misc/basket/basket-1.81.ebuild,v 1.8 2013/06/11 15:52:16 ago Exp $
|
|
|
|
EAPI=5
|
|
|
|
VIRTUALX_REQUIRED="test"
|
|
inherit kde4-base
|
|
|
|
DESCRIPTION="A DropDrawers clone. Multiple information organizer"
|
|
HOMEPAGE="http://basket.kde.org/"
|
|
SRC_URI="http://${PN}.kde.org/downloads/${P}.tar.bz2"
|
|
|
|
LICENSE="GPL-2"
|
|
KEYWORDS="amd64 x86"
|
|
SLOT="4"
|
|
IUSE="debug crypt"
|
|
|
|
DEPEND="
|
|
$(add_kdebase_dep kdepimlibs)
|
|
media-libs/qimageblitz
|
|
x11-libs/libX11
|
|
crypt? ( >=app-crypt/gpgme-1.0 )
|
|
"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_configure() {
|
|
local mycmakeargs=(
|
|
$(cmake-utils_use_find_package crypt Gpgme)
|
|
)
|
|
kde4-base_src_configure
|
|
}
|