25 lines
599 B
Bash
25 lines
599 B
Bash
# Copyright 1999-2016 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
# @ECLASS: kde5-meta-pkg.eclass
|
|
# @MAINTAINER:
|
|
# kde@gentoo.org
|
|
# @BLURB: This eclass contains boilerplate for KDE meta packages.
|
|
# @DESCRIPTION:
|
|
# This eclass should only be used for defining meta packages bundling
|
|
# software produced by the KDE community.
|
|
|
|
if [[ -z ${_KDE5_META_PKG_ECLASS} ]]; then
|
|
_KDE5_META_PKG_ECLASS=1
|
|
|
|
inherit kde5-functions
|
|
|
|
HOMEPAGE="https://www.kde.org/"
|
|
LICENSE="metapackage"
|
|
SLOT="5"
|
|
|
|
if [[ ${CATEGORY} = kde-apps ]]; then
|
|
RDEPEND+=" !kde-apps/${PN}:4"
|
|
fi
|
|
|
|
fi
|