112 lines
2.8 KiB
Bash
112 lines
2.8 KiB
Bash
|
# Copyright 1999-2008 Gentoo Foundation
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
# $Header: /var/cvsroot/gentoo-x86/app-misc/mc/mc-4.6.2_pre1.ebuild,v 1.6 2008/09/14 04:24:16 mr_bones_ Exp $
|
||
|
|
||
|
EAPI=1
|
||
|
|
||
|
inherit eutils toolchain-funcs
|
||
|
|
||
|
MY_P=${P/_/-}
|
||
|
|
||
|
DESCRIPTION="GNU Midnight Commander is a s-lang based file manager."
|
||
|
HOMEPAGE="http://www.gnu.org/software/mc"
|
||
|
SRC_URI="http://ftp.gnu.org/gnu/mc/${MY_P}.tar.gz
|
||
|
http://dev.gentoo.org/~drac/${MY_P}-patches-2.tbz2
|
||
|
http://ftp.mars.arge.at/pub/${MY_P}-patches-2.tbz2"
|
||
|
|
||
|
LICENSE="GPL-2"
|
||
|
SLOT="0"
|
||
|
KEYWORDS="~arm ~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
|
||
|
IUSE="gpm nls samba +unicode X"
|
||
|
|
||
|
RDEPEND=">=dev-libs/glib-2
|
||
|
unicode? ( >=sys-libs/slang-2.1.3 )
|
||
|
!unicode? ( sys-libs/ncurses )
|
||
|
gpm? ( sys-libs/gpm )
|
||
|
X? ( x11-libs/libX11
|
||
|
x11-libs/libICE
|
||
|
x11-libs/libXau
|
||
|
x11-libs/libXdmcp
|
||
|
x11-libs/libSM )
|
||
|
samba? ( net-fs/samba )
|
||
|
kernel_linux? ( sys-fs/e2fsprogs )
|
||
|
app-arch/zip
|
||
|
app-arch/unzip"
|
||
|
DEPEND="${RDEPEND}
|
||
|
nls? ( sys-devel/gettext )
|
||
|
dev-util/pkgconfig"
|
||
|
|
||
|
S=${WORKDIR}/${MY_P}
|
||
|
|
||
|
src_unpack() {
|
||
|
unpack ${A}
|
||
|
cd "${S}"
|
||
|
|
||
|
use unicode || \
|
||
|
EPATCH_EXCLUDE="48_all_deb_utf8-slang2.patch 60_all_deb_recode.patch"
|
||
|
|
||
|
EPATCH_SUFFIX="patch" epatch "${WORKDIR}"/patches
|
||
|
|
||
|
# Prevent lazy bindings in cons.saver binary for bug #135009
|
||
|
sed -i -e "s:^\(cons_saver_LDADD = .*\):\1 -Wl,-z,now:" \
|
||
|
src/Makefile.in || die "sed failed."
|
||
|
|
||
|
# docs try to run the files it just built while trying convert .1 to .hlp files.
|
||
|
# this will never work for cross compiles, so we simply don't make docs.
|
||
|
if tc-is-cross-compiler; then
|
||
|
sed -i -e s/'lib doc syntax'/'lib syntax'/ Makefile.in
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
src_compile() {
|
||
|
local myconf="--with-vfs --with-ext2undel --enable-charset --with-edit"
|
||
|
|
||
|
if use unicode; then
|
||
|
myconf+=" --with-screen=slang"
|
||
|
else
|
||
|
myconf+=" --with-screen=ncurses"
|
||
|
fi
|
||
|
|
||
|
if use samba; then
|
||
|
myconf+=" --with-samba --with-configdir=/etc/samba --with-codepagedir=/var/lib/samba/codepages"
|
||
|
else
|
||
|
myconf+=" --without-samba"
|
||
|
fi
|
||
|
|
||
|
econf --disable-dependency-tracking \
|
||
|
$(use_enable nls) \
|
||
|
$(use_with gpm gpm-mouse) \
|
||
|
$(use_with X x) \
|
||
|
${myconf}
|
||
|
|
||
|
emake || die "emake failed."
|
||
|
}
|
||
|
|
||
|
src_install() {
|
||
|
cat "${FILESDIR}"/chdir-4.6.0.gentoo >> \
|
||
|
"${S}"/lib/mc-wrapper.sh
|
||
|
|
||
|
emake DESTDIR="${D}" install || die "emake install failed."
|
||
|
dodoc AUTHORS FAQ HACKING MAINTAINERS NEWS README* TODO
|
||
|
|
||
|
# Install cons.saver setuid to actually work
|
||
|
fperms u+s /usr/libexec/mc/cons.saver
|
||
|
|
||
|
# Install ebuild syntax
|
||
|
insinto /usr/share/mc/syntax
|
||
|
doins "${FILESDIR}"/ebuild.syntax
|
||
|
|
||
|
insinto /usr/share/mc
|
||
|
doins "${FILESDIR}"/mc.gentoo
|
||
|
}
|
||
|
|
||
|
pkg_postinst() {
|
||
|
elog "Add the following line to your ~/.bashrc to"
|
||
|
elog "allow mc to chdir to its latest working dir at exit"
|
||
|
elog ""
|
||
|
elog "# Midnight Commander chdir enhancement"
|
||
|
elog "if [ -f /usr/share/mc/mc.gentoo ]; then"
|
||
|
elog " . /usr/share/mc/mc.gentoo"
|
||
|
elog "fi"
|
||
|
}
|