blob: a7c7e697612689fa7732e24f6aae79a1f4cef2e4 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-themes/fvwm-crystal/fvwm-crystal-2.20050306.ebuild,v 1.11 2006/11/13 14:45:27 flameeyes Exp $
MY_P="${P/-2./-}"
DESCRIPTION="Configurable and full featured theme for FVWM, with lots of transparency."
HOMEPAGE="http://fvwm-crystal.org/"
SRC_URI="http://download.gna.org/${PN}/20050306/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="ppc ppc64 sparc x86"
IUSE=""
RDEPEND=">=x11-wm/fvwm-2.5.12
app-admin/sudo
dev-python/pyxml
media-gfx/imagemagick
media-sound/aumix
x11-misc/habak
x11-misc/trayer"
S=${WORKDIR}/${MY_P}
src_compile() {
einfo "There is nothing to compile."
}
src_install() {
dodoc AUTHORS COPYING INSTALL NEWS README doc/*
dobin bin/*
dodir /usr/share/${PN}
cp -r addons fvwm ${D}/usr/share/${PN}
# Original session file doesn't work on Gentoo
exeinto /etc/X11/Sessions
doexe ${FILESDIR}/fvwm-crystal
insinto /usr/share/xsessions
doins addons/gdm/fvwm-crystal.desktop
}
pkg_postinst() {
einfo
einfo "After installation, execute following commands:"
einfo " $ cp -r /usr/share/${PN}/addons/Xresources ~/.Xresources"
einfo " $ cp -r /usr/share/${PN}/addons/Xsession ~/.xinitrc"
einfo
einfo "Authors of fvwm-crystal recommend also installing"
einfo "the following applications:"
einfo " app-admin/gkrellm"
einfo " app-misc/rox"
einfo " media-gfx/scrot"
einfo " x11-misc/xlockmore"
einfo " x11-misc/xpad"
einfo " x11-misc/xscreensaver"
einfo " x11-terms/aterm"
einfo
}
|