blob: 50165f0b1d697035ed3c8f405f5939b17bfe2dc9 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/mc/mc-4.6.0-r2.ebuild,v 1.7 2004/02/22 19:40:34 agriffis Exp $
inherit flag-o-matic
IUSE="gpm nls samba ncurses X slang"
S=${WORKDIR}/${P}
DESCRIPTION="GNU Midnight Commander cli-based file manager"
HOMEPAGE="http://www.ibiblio.org/mc/"
SRC_URI="http://www.ibiblio.org/pub/Linux/utils/file/managers/${PN}/${P}.tar.gz"
DEPEND=">=sys-fs/e2fsprogs-1.19
ncurses? ( >=sys-libs/ncurses-5.2-r5 )
=dev-libs/glib-2*
>=sys-libs/pam-0.72
gpm? ( >=sys-libs/gpm-1.19.3 )
slang? ( >=sys-libs/slang-1.4.2 )
samba? ( >=net-fs/samba-2.2.3a-r1 )
X? ( virtual/x11 )"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ppc sparc alpha mips hppa"
filter-flags -malign-double
src_compile() {
local myconf=""
if ! use slang && ! use ncurses
then
myconf="${myconf} --with-screen=mcslang"
elif
use ncurses && ! use slang
then
myconf="${myconf} --with-screen=ncurses"
else
use slang && myconf="${myconf} --with-screen=slang"
fi
use gpm \
&& myconf="${myconf} --with-gpm-mouse" \
|| myconf="${myconf} --without-gpm-mouse"
use nls \
&& myconf="${myconf} --with-included-gettext" \
|| myconf="${myconf} --disable-nls"
use X \
&& myconf="${myconf} --with-x" \
|| myconf="${myconf} --without-x"
use samba \
&& myconf="${myconf} --with-samba --with-configdir=/etc/samba
--with-codepagedir=/var/lib/samba/codepages" \
|| myconf="${myconf} --without-samba"
econf \
--with-vfs \
--with-gnu-ld \
--with-ext2undel \
--with-edit \
--enable-charset \
${myconf} || die
# bug 27212
sed -i '/#define HAVE_SYS_CAPABILITY_H 1/a#define _LINUX_VFS_H' vfs/samba/include/config.h
emake || die
}
src_install() {
cat ${FILESDIR}/chdir-4.6.0.gentoo >>\
${S}/lib/mc-wrapper.sh
einstall || die
dodoc ABOUT-NLS COPYING* ChangeLog AUTHORS MAINTAINERS FAQ INSTALL* NEWS README*
insinto /usr/share/mc
doins ${FILESDIR}/mc.gentoo
}
pkg_postinst() {
einfo "Add the following line to your ~/.bashrc to"
einfo "allow mc to chdir to its latest working dir at exit"
einfo ""
einfo "# Midnight Commander chdir enhancement"
einfo "if [ -f /usr/share/mc/mc.gentoo ]; then"
einfo " . /usr/share/mc/mc.gentoo"
einfo "fi"
}
|