blob: e51b5cf074cd184cd61b912e7cd3b4ffa058f6cb (
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/rox-base/oroborox/oroborox-0.9.8.ebuild,v 1.3 2006/10/04 14:09:53 lack Exp $
ROX_LIB_VER=1.9.14
inherit rox
MY_PN="OroboROX"
DESCRIPTION="OroboROX is a small window manager for the ROX Desktop."
HOMEPAGE="http://rox.sourceforge.net/"
SRC_URI="http://roxos.sunsite.dk/dev-contrib/guido/${MY_PN}-${PV}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
# startup-notification support is disabled by default, probably because it
# doesn't work.
# Also, there is no way to explicitly disable xinerama - It is always detected
# if it's there.
IUSE="xinerama" #startup-notification
DEPEND="
>=media-libs/freetype-2.0
virtual/xft
|| ( (
x11-proto/xproto
x11-proto/xextproto
x11-proto/xf86vidmodeproto
x11-libs/libXpm
x11-libs/libXrandr
x11-libs/libXrender
x11-libs/libXcomposite
x11-libs/libXdamage
xinerama? ( x11-proto/xineramaproto )
)
virtual/x11
)
"
#startup-notification? ( x11-libs/startup-notification )
RDEPEND="
>=media-libs/freetype-2.0
virtual/xft
|| ( (
x11-libs/libX11
x11-libs/libXext
x11-libs/libXpm
x11-libs/libXrandr
x11-libs/libXrender
x11-libs/libXxf86vm
xinerama? ( x11-libs/libXinerama )
)
virtual/x11
)
"
#startup-notification? ( x11-libs/startup-notification )
S=${WORKDIR}
SET_PERM=TRUE
APPNAME=${MY_PN}
# OroboROX causes sandbox violations if CHOICESPATH is set to any path.
# see bug #124133
unset CHOICESPATH
# Special processing to remove =build AND
# to change perms for all AppRun statements
# in subdirectories
pkg_preinst() {
cd ${D}/usr/lib/rox/${APPNAME}
if [ -d "=build" ]; then
rm -rf "=build"
fi
find . -name 'AppRun' | xargs chmod a+x >/dev/null 2>&1
}
|