blob: 5cf1a9dd789e9b797c6b9ba05d1167f5afd02bea (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/rox-base/oroborox/oroborox-0.9.7.9.ebuild,v 1.1 2005/11/19 18:07:18 svyatogor Exp $
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"
IUSE=""
DEPEND="virtual/x11
virtual/xft
>=freetype-2.0"
S=${WORKDIR}
ROX_LIB_VER=1.9.14
SET_PERM=TRUE
APPNAME=${MY_PN}
inherit rox
# 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
}
|