blob: 6b192eeba334be2183e6d218593a05854d06b6ab (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/rox/rox-1.2.1.ebuild,v 1.5 2002/10/04 04:57:21 vapier Exp $
S=${WORKDIR}/${P}
DESCRIPTION="ROX-Filer is a fast and powerful graphical file manager"
HOMEPAGE="http://rox.sourceforge.net"
BPN="rox-base"
BPV="1.0.2"
BP=${BPN}-${BPV}
SRC_URI="mirror://sourceforge/rox/${BP}.tgz
mirror://sourceforge/rox/${P}.tgz"
DEPEND="=x11-libs/gtk+-1.2*
>=media-libs/gdk-pixbuf-0.13
dev-libs/libxml2"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86"
src_install() {
# libxml2 header fix
CFLAGS="${CFLAGS} -I/usr/include/libxml2/libxml -I/usr/include/libxml2"
cd ${WORKDIR}/${BP}/Choices
mkdir -p ${D}/usr/share/Choices
cp -rf MIME-icons/ ${D}/usr/share/Choices/
cp -rf MIME-info/ ${D}/usr/share/Choices/
cp -rf MIME-types/ ${D}/usr/share/Choices/
cd ${WORKDIR}/${P}
doman rox.1
mkdir -p ${D}/usr/share/rox
mkdir -p ${D}/usr/bin
cp -rf ROX-Filer/ ${D}/usr/share/
${D}/usr/share/ROX-Filer/AppRun --compile
echo "#!/bin/sh" > "${D}/usr/bin/rox"
echo "exec /usr/share/ROX-Filer/AppRun \"\$@\"" >> "${D}/usr/bin/rox"
chmod a+x ${D}/usr/bin/rox
}
|