31 lines
754 B
Bash
31 lines
754 B
Bash
# Copyright 1999-2018 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
|
|
inherit gkrellm-plugin toolchain-funcs
|
|
|
|
MY_PN="gkrellmbgchg2"
|
|
MY_P="${MY_PN}-${PV}"
|
|
S="${WORKDIR}/${MY_P}"
|
|
|
|
DESCRIPTION="Plugin for GKrellM2 to change your desktop background"
|
|
HOMEPAGE="http://www.bender-suhl.de/stefan/english/comp/gkrellmbgchg.html"
|
|
SRC_URI="http://www.bender-suhl.de/stefan/comp/sources/${MY_P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="2"
|
|
KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
|
|
IUSE=""
|
|
|
|
RDEPEND="app-admin/gkrellm:2[X]"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
PATCHES=( "${FILESDIR}"/${PN}-0.1.11-fix-build-system.patch )
|
|
|
|
PLUGIN_SO=( gkrellmbgchg$(get_modname) )
|
|
PLUGIN_DOCS=( bgchg_info.sh kdewallpaper.sh )
|
|
|
|
src_configure() {
|
|
tc-export CC
|
|
}
|