blob: d6f694dc69b45488ddf78e6301b33793bf6c2976 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/mc/mc-4.5.55-r5.ebuild,v 1.1 2002/06/20 20:26:24 seemant Exp $
S=${WORKDIR}/${P}
DESCRIPTION="GNOME Midnight Commander"
SRC_URI="http://www.gnome.org/projects/${PN}/${P}.tar.gz"
HOMEPAGE="http://www.gnome.org/projects/mc/"
DEPEND="virtual/glibc
>=sys-apps/e2fsprogs-1.19
=dev-libs/glib-1.2*
>=sys-devel/automake-1.5d-r1
gpm? ( >=sys-libs/gpm-1.19.3 )
pam? ( >=sys-libs/pam-0.72 )
slang? ( >=sys-libs/slang-1.4.2 )
nls? ( sys-devel/gettext )
samba? ( >=net-fs/samba-2.2.3a-r1 )
X? ( virtual/x11 )"
#currently broken
# gnome? ( >=gnome-base/gnome-libs-1.4.1.2-r1 )
SLOT=""
LICENSE="GPL-2"
src_compile() {
local myconf=""
use pam && myconf="${myconf} --with-pam"
use pam || myconf="${myconf} --without-pam"
use slang && myconf="${myconf} --with-slang"
use slang || myconf="${myconf} --with-included-slang"
#currently broken
# use gnome && myconf="${myconf} --with-gnome"
# use gnome || myconf="${myconf} --without-gnome"
myconf="${myconf} --without-gnome"
use gpm && myconf="${myconf} --with-gpm-mouse=/usr"
use gpm || myconf="${myconf} --without-gpm-mouse"
use nls || myconf="${myconf} --disable-nls"
use X && myconf="${myconf} --with-tm-x-support"
use X || myconf="${myconf} --without-tm-x-support"
use samba && ( \
cd ${S}/vfs
cp smbfs.c smbfs.c.orig
sed -e "s:/etc/smb\.conf:/etc/samba/smb\.conf:" smbfs.c.orig > smbfs.c
cd samba
cp Makefile.in Makefile.in.orig
sed -e 's:$(LIBDIR)\(/codepages\):/var/lib/samba\1:' \
Makefile.in.orig > Makefile.in
myconf="${myconf} --with-samba"
)
cd ${S}
# export WANT_AUTOMAKE_1_5=1
libtoolize --force --copy
aclocal -I ${S}/macros
# autoconf
automake --add-missing
LDFLAGS="-lcrypt -lncurses" ./configure --host=${CHOST} \
--prefix=/usr \
--mandir=/usr/share/man \
--sysconfdir=/etc \
--localstatedir=/var/lib \
--with-vfs \
--with-netrc \
--with-ext2undel \
$myconf || die
make || die # Doesn't work with -j 4 (hallski)
}
src_install() {
make prefix=${D}/usr \
mandir=${D}/usr/share/man \
sysconfdir=${D}/etc \
localstatedir=${D}/var/lib \
install || die
dodoc ABOUT-NLS COPYING* FAQ INSTALL* NEWS README*
}
|