blob: 47765d28ebc6546898e5c1d0671f001541052a84 (
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="5"
RESTRICT=mirror
PYTHON_COMPAT=( python2_7 )
inherit eutils readme.gentoo python-r1
DESCRIPTION="Configurable and full featured FVWM theme, with lots of transparency and freedesktop compatible menu"
HOMEPAGE="http://fvwm-crystal.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
IUSE=""
RDEPEND="${PYTHON_DEPS}
x11-misc/xdg-user-dirs
>=x11-wm/fvwm-2.6.5[png]
|| ( media-gfx/imagemagick media-gfx/graphicsmagick[imagemagick] )
|| ( >=x11-misc/stalonetray-0.6.2-r2 x11-misc/trayer )
|| ( x11-misc/hsetroot media-gfx/feh )
sys-apps/sed
sys-devel/bc
virtual/awk
x11-apps/xwd"
DISABLE_AUTOFORMATTING="true"
DOC_CONTENTS="After installation, execute the following commands:
\ \$ cp -r "${EROOT}"usr/share/doc/"${PF}"/addons/Xresources ~/.Xresources
\ \$ cp -r "${EROOT}"usr/share/doc/"${PF}"/addons/Xsession ~/.xinitrc
Many applications can extend functionality of fvwm-crystal.
They are listed in "${EROOT}"usr/share/doc/"${PF}"/INSTALL.*
Some icons fixes were committed recently.
To achieve the same fixes on your private icon files,
please read "${EROOT}"usr/share/doc/"${PF}"/INSTALL.*
This will fix the libpng warnings at stderr.
The color themes was updated to Fvwm InfoStore.
To know how to update your custom color themes, please run
"${EROOT}"usr/share/"${PN}"/addons/convert_colorsets"
src_prepare() {
epatch_user
}
src_install() {
emake DESTDIR="${ED}" \
docdir="${EPREFIX%/}/usr/share/doc/${PF}" \
prefix="${EPREFIX%/}/usr" \
install
# GNU License is globally in the portage tree
rm -vf "${ED}/usr/share/doc/${PF}"/LICENSE
python_replicate_script \
"${ED}/usr/bin/${PN}".{apps,wallpaper} \
"${ED}/usr/share/${PN}"/fvwm/scripts/FvwmMPD/*.py
readme.gentoo_create_doc
}
|