blob: 8736535c99513ce29bb9bdef932a265bbafd2d45 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/xplore/xplore-1.2a.ebuild,v 1.10 2006/10/21 21:35:00 omp Exp $
inherit eutils
DESCRIPTION="motif file manager for X."
HOMEPAGE="http://www.musikwissenschaft.uni-mainz.de/~ag/xplore/"
SRC_URI="http://www.musikwissenschaft.uni-mainz.de/~ag/${PN}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
# its webpage states the lesstif does not fully work with xplore
DEPEND="x11-libs/openmotif
x11-misc/gccmakedep
app-text/rman
x11-misc/imake"
src_unpack() {
unpack ${A}
epatch "${FILESDIR}/${P}-strerror.patch"
epatch "${FILESDIR}/${P}-malloc.patch"
epatch "${FILESDIR}/${P}-label.patch"
}
src_compile() {
#Fix Xplore.tmpl so installation is to /usr instead of /usr/X11R6
#Note: LIBDIR is used to point to X11 tree.
cp Xplore.tmpl Xplore.tmpl.orig
sed -e "s:^\(XPLORELIBDIR = \).*:\1/usr/lib/xplore:" \
-e "s:^XCOMM \(BINDIR = /usr\)/local\(/bin\):\1\2:" \
-e "s:^XCOMM \(MANPATH = /usr\)/local\(/man\):\1/share\2:" \
Xplore.tmpl.orig > Xplore.tmpl
xmkmf -a || die "xmkmf Makefile creation failed"
# parallel make fails
make || die "make failed"
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
dodoc ChangeLog README TODO
}
|