blob: 56fb7c971c0e3da0aef641ce51285d302868cab8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
# TODO: Break themes up by author and into sub-dirs named after
# the author
DESCRIPTION="Collection of Window Maker themes"
HOMEPAGE="http://www.windowmaker.org/"
# Original site: http://gentoo.asleep.net/windowmaker-themes
SRC_URI="https://dev.gentoo.org/~voyageur/distfiles/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 hppa ppc sparc x86"
IUSE="offensive"
DEPEND=""
RDEPEND="x11-wm/windowmaker"
BDEPEND=""
src_prepare() {
MY_OFFENSIVE="3white Anguish"
if ! use offensive ; then
for j in ${MY_OFFENSIVE} ; do
rm -rf ${MY_OFFENSIVE}.themed
done
fi
default
}
src_install() {
insinto /usr/share/WindowMaker/Themes
doins -r .
}
pkg_postinst() {
einfo "The Window Maker themes downloaded are by the following artists:"
einfo "A.Sleep - http://www.asleep.net/"
einfo "Largo - http://largo.windowmaker.org/"
einfo "Hadess - http://www.hadess.net/"
einfo "jenspen - http://themes.freshmeat.net/~jenspen/"
}
|