blob: 605b946c3069924a3c15020c53adb4416cef82a4 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/endeavour/endeavour-2.1.21.ebuild,v 1.4 2003/06/29 23:17:15 aliz Exp $
IUSE=""
M=endeavour2-mimetypes
DESCRIPTION="powerful file and image browser"
HOMEPAGE="http://wolfpack.twu.net/Endeavour2/"
SRC_URI="ftp://wolfpack.twu.net/users/wolfpack/${P}.tar.bz2
ftp://wolfpack.twu.net/users/wolfpack/${M}.tgz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ~ppc"
DEPEND="sys-apps/bzip2
=x11-libs/gtk+-1.2*
>=media-libs/imlib-1.9.14"
src_unpack() {
unpack ${P}.tar.bz2
unpack ${M}.tgz
if [ "${ARCH}" = "ppc" -o "${ARCH}" = "sparc" -o "${ARCH}" = "sparc64" ]; then
# This patch fixes inverted color on big endian machines
einfo "Applying big endian patch..."
cd ${S}; patch -p0 < ${FILESDIR}/endeavour-2.1.20-bigendian.diff > /dev/null || die
fi
}
src_compile() {
./configure Linux --prefix=/usr || die
emake || die "Parallel make failed"
}
src_install() {
dodoc AUTHORS HACKING INSTALL README TODO
cd endeavour2
dobin endeavour2
bunzip2 endeavour2.1.bz2
doman endeavour2.1
dodir /usr/share/endeavour2
cp -R data/* ${D}/usr/share/endeavour2
cd images
insinto /usr/share/icons
doins endeavour_48x48.xpm image_browser_48x48.xpm icon_trash_48x48.xpm \
icon_trash_empty_48x48.xpm
# install mimetypes
cd ${WORKDIR}/${M}
mv README README.mimetypes
dodoc README.mimetypes
insinto /usr/share/endeavour2/
doins mimetypes.ini
}
|