blob: 54b549bbe7778759ecc2528bd3f9a89ad8707729 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/xfe/xfe-0.72.ebuild,v 1.6 2005/08/07 13:17:31 hansmi Exp $
inherit eutils
DESCRIPTION="MS-Explorer like file manager for X"
HOMEPAGE="http://roland65.free.fr/xfe/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc ppc64 sparc x86"
IUSE="nls"
# fox-1.0.x, fox-1.1.x and fox-1.3.x are incompatible.
DEPEND="=x11-libs/fox-1.2*"
src_unpack()
{
unpack ${A}
cd ${S}
# Fix #62428. Note: this 0.70 related bug is STILL present in 0.72...
epatch ${FILESDIR}/xfe-0.70-file-association.patch
}
src_compile()
{
econf `use_enable nls` || die
emake || die
}
src_install()
{
make DESTDIR=${D} install || die
dodoc AUTHORS BUGS FAQ README TODO NEWS
}
pkg_postinst()
{
einfo
einfo "Please delete your old Xfe registry files"
einfo " (~/.foxrc/Xfe ~/.foxrc/Xfv and ~/.foxrc/Xfq)"
einfo "before using this XFE 0.72 release"
einfo
}
|