blob: 0e48891633e6b8260e74c404b3a80d437be7f2d1 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
GPE_TARBALL_SUFFIX="bz2"
inherit eutils gpe autotools
DESCRIPTION="GPE Desktop Manager"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~arm ~amd64 ~x86"
IUSE=""
DEPEND="${DEPEND}"
RDEPEND="${RDEPEND}
${DEPEND}
x11-apps/xinit"
src_unpack() {
gpe_src_unpack "$@"
# The default path is ugly and might confuse people with
# /etc/X11/xinit
sed -i -e 's;/etc/X11;/etc/X11/gpe;' gpe-dm.c \
|| die "Failed to sed file gpe-dm.c"
# Dont use /etc/init.d/gpe-dm, use
# /etc/init.d/xdm instead
epatch "${FILESDIR}/${PN}-noinitd.patch"
eautoreconf
}
src_install() {
gpe_src_install "$@"
dodir /etc/X11/gpe/Xinit.d
exeinto /etc/X11/gpe
doexe ${FILESDIR}/Xinit
}
|