# Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: $ DESCRIPTION="A file manager that implements the popular two-pane design based on gtk+-2" HOMEPAGE="http://dasui.prima.de/e2wiki/" SRC_URI="http://dasui.prima.de/~tooar/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="x86" IUSE="nls" DEPEND=">=x11-libs/gtk+-2.4*" src_compile() { local myconf use nls && myconf="-DENABLE_NLS" emake PREFIX=/usr \ CC="gcc ${CFLAGS}" \ NLS=${myconf} || die "emake failed" } src_install() { local myconf use nls && myconf="-DENABLE_NLS" dodir /usr/bin make PREFIX=${D}/usr \ NLS=${myconf} \ DOC_DIR=${D}/usr/share/doc/${PF} \ install || die "make install failed" prepalldocs }