diff options
author | 2021-03-27 17:42:52 +0100 | |
---|---|---|
committer | 2021-03-27 17:43:05 +0100 | |
commit | 45d18c5b17003caa77878b44c1cc6088d47cf8a6 (patch) | |
tree | 91d0d139eaedebaa38a37d184c9402d73b0ce9b6 /x11-themes | |
parent | dev-java/jmock: removed obsolete 1.2.0-r1 (diff) | |
download | gentoo-45d18c5b17003caa77878b44c1cc6088d47cf8a6.tar.gz gentoo-45d18c5b17003caa77878b44c1cc6088d47cf8a6.tar.bz2 gentoo-45d18c5b17003caa77878b44c1cc6088d47cf8a6.zip |
x11-themes/windowmaker-themes: fix USE=offensive
Update list of themes filtered out by this flag
Closes: https://bugs.gentoo.org/778287
Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Bernard Cafarelli <voyageur@gentoo.org>
Diffstat (limited to 'x11-themes')
-rw-r--r-- | x11-themes/windowmaker-themes/windowmaker-themes-0.1-r1.ebuild | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/x11-themes/windowmaker-themes/windowmaker-themes-0.1-r1.ebuild b/x11-themes/windowmaker-themes/windowmaker-themes-0.1-r1.ebuild index 985047da31af..974c392ea86d 100644 --- a/x11-themes/windowmaker-themes/windowmaker-themes-0.1-r1.ebuild +++ b/x11-themes/windowmaker-themes/windowmaker-themes-0.1-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -21,10 +21,19 @@ RDEPEND="x11-wm/windowmaker" BDEPEND="" src_prepare() { - MY_OFFENSIVE="3white Anguish" + MY_OFFENSIVE=( + 3White + Anguish + Crave + "Darwins iMac" + "Digital Girls" + "Imacgirl Grape" + "Red Slip" + WMSecksy + ) if ! use offensive ; then - for j in ${MY_OFFENSIVE} ; do - rm -rf ${MY_OFFENSIVE}.themed + for j in "${MY_OFFENSIVE[@]}" ; do + rm -rf "${j}".themed done fi |