You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
778 B
35 lines
778 B
5 years ago
|
# Copyright 1999-2017 Gentoo Foundation
|
||
|
# Copyright 2020 The Trinity Desktop Project
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
EAPI="7"
|
||
|
TRINITY_MODULE_NAME="tdeartwork"
|
||
|
|
||
|
inherit trinity-meta-2
|
||
|
|
||
|
need-arts optional
|
||
|
|
||
|
DESCRIPTION="Extra screensavers for Trinity"
|
||
|
KEYWORDS="~amd64 ~x86"
|
||
|
|
||
|
IUSE+=" opengl xscreensaver"
|
||
|
|
||
|
MY_DEPEND="=trinity-base/tdescreensaver-${PV}
|
||
|
=trinity-base/krootbacking-${PV}
|
||
|
=media-libs/libart_lgpl-${PV}
|
||
|
opengl? ( virtual/opengl )
|
||
|
xscreensaver? ( x11-misc/xscreensaver )"
|
||
|
DEPEND+=" ${MY_DEPEND}"
|
||
|
RDEPEND+=" ${MY_DEPEND}"
|
||
|
|
||
|
TSM_EXTRACT_ALSO="FindXscreensaver.cmake"
|
||
|
|
||
|
src_configure() {
|
||
|
mycmakeargs=(
|
||
|
-DWITH_LIBART=ON
|
||
|
-DWITH_OPENGL="$(usex opengl)"
|
||
|
-DWITH_XSCREENSAVER="$(usex xscreensaver)"
|
||
|
)
|
||
|
|
||
|
trinity-meta-2_src_configure
|
||
|
}
|