blob: 76c41a4e1979a36cedb99f6d9f52b97754d862f1 (
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/rox-base/rox/rox-2.8.ebuild,v 1.5 2008/08/31 21:15:26 armin76 Exp $
EAPI=1
inherit eutils multilib
MY_P="rox-filer-${PV}"
S="${WORKDIR}/${MY_P}"
DESCRIPTION="ROX is a desktop environment and filer based on RISC OS."
HOMEPAGE="http://rox.sourceforge.net/"
SRC_URI="mirror://sourceforge/rox/${MY_P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 ppc sparc x86"
IUSE="svg +video"
RDEPEND=">=x11-libs/gtk+-2.4
>=dev-libs/glib-2.2
>=dev-libs/libxml2-2.4.23
>=x11-misc/shared-mime-info-0.14
svg? ( gnome-base/librsvg )
>=rox-base/zeroinstall-injector-0.31-r1
"
PDEPEND="rox-base/mime-editor
rox-base/thumbs
video? ( rox-extra/videothumbnail )"
DEPEND="${RDEPEND}
>=dev-util/pkgconfig-0.20"
APPNAME="ROX-Filer"
APPDIR="/usr/$(get_libdir)/rox"
LIBDIR="/usr/$(get_libdir)/"
WRAPPERNAME="rox"
MIMEDIR="/usr/share/mime"
MIMECONFDIR="/etc/xdg/rox.sourceforge.net"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-nostrip.patch
}
src_compile() {
cd ${APPNAME}
# Most rox self-compiles have a 'read' call to wait for the user to
# press return if the compile fails.
# Find and remove this:
sed -i.bak -e 's/\<read WAIT\>/#read/' AppRun
./AppRun --compile || die "make failed"
# don't need these directories anymore
if [ -n "${KEEP_SRC}" ]; then
pushd src
make clean > /dev/null
popd
else
rm -rf src
fi
rm -fr build
# Restore the original AppRun
mv AppRun.bak AppRun
}
# new streamlined install
src_install() {
doman rox.1
dodir ${APPDIR}
cp -r ${APPNAME}/ "${D}/${APPDIR}"
# add documentation to be proper
pushd ${APPNAME}/Help
dodoc Changes README README-es TODO
popd
# install shell script
dodir /usr/bin
cat >"${D}/usr/bin/${WRAPPERNAME}" <<EOF
#!/bin/sh
if [ "\${LIBDIRPATH}" ]; then
export LIBDIRPATH="\${LIBDIRPATH}:${LIBDIR}"
else
export LIBDIRPATH="${LIBDIR}"
fi
if [ "\${APPDIRPATH}" ]; then
export APPDIRPATH="\${APPDIRPATH}:${APPDIR}"
else
export APPDIRPATH="${APPDIR}"
fi
exec "${APPDIR}/${APPNAME}/AppRun" "\$@"
EOF
cat >"${D}/usr/bin/${WRAPPERNAME}uri" <<EOF
#!/bin/sh
exec "${APPDIR}/${APPNAME}/AppRun" -U "\$@"
EOF
fperms 0755 "/usr/bin/${WRAPPERNAME}"
fperms 0755 "/usr/bin/${WRAPPERNAME}uri"
# install rox.xml
insinto ${MIMEDIR}/packages
doins rox.xml
# CHOICES system is gone. Now use XDG only
# these are shell scripts and must be +x.
exeinto ${MIMECONFDIR}/MIME-types
doexe Choices/MIME-types/*
insinto /usr/share/pixmaps
newins ${APPNAME}/.DirIcon ${APPNAME}.png
make_desktop_entry ${WRAPPERNAME} ${APPNAME} ${APPNAME} "System;FileTools;FileManager"
# Install the 0install feed
local NATIVE_FEED_DIR="/usr/share/0install.net/native_feeds"
local ICON_CACHE_DIR="/var/cache/0install.net/interface_icons"
0distutils ${APPNAME}.xml > tmp.native_feed || die "0distutils feed edit failed"
insinto "${APPDIR}/${APPNAME}"
newins tmp.native_feed ${APPNAME}.xml
local feedname
feedname=$(0distutils -e tmp.native_feed) || die "0distutils URI escape failed"
dosym "${APPDIR}/${APPNAME}/${APPNAME}.xml" "${NATIVE_FEED_DIR}/${feedname}"
local cachedname
cachedname=$(0distutils -c tmp.native_feed) || die "0distutils URI escape failed"
dosym "${APPDIR}/${APPNAME}/.DirIcon" "${ICON_CACHE_DIR}/${cachedname}"
}
pkg_postinst() {
update-mime-database ${MIMEDIR}
einfo "${APPNAME} has been installed in ${APPDIR}."
einfo "To run, you may type ${WRAPPERNAME} at a prompt (within a WM) or"
einfo "add it to an .xinit or other script during WM startup."
}
|