# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ EAPI=1 inherit eutils toolchain-funcs MY_P=${P/_/-} DESCRIPTION="GNU Midnight Commander is a s-lang based file manager." HOMEPAGE="http://midnight-commander.org" SRC_URI="http://midnight-commander.org/downloads/${MY_P}.tar.gz" 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}" # 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() { 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 }