# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ # Nonofficial ebuild by Ycarus. For new version look here : http://gentoo.zugaina.org/ inherit eutils MY_P="FileZilla_${PV/_/-}" DESCRIPTION="A FTP client with lots of useful features and an intuitive interface." HOMEPAGE="http://filezilla-project.org/" SRC_URI="mirror://sourceforge/filezilla/${MY_P}_src.tar.bz2" RESTRICT="nomirror" LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86" IUSE="" DEPEND=">=x11-libs/wxGTK-2.8.0 >=net-libs/gnutls-1.6.1 net-dns/libidn sys-devel/gettext" S=${WORKDIR}/filezilla-${PV/_/-} src_compile() { ./autogen.sh local myconf="--with-wx-config=/usr/lib/wx/config/gtk2-unicode-release-2.8" econf ${myconf} || die "configure failed" emake || die "make failed" } src_install() { make DESTDIR=${D} install || die "install failed" dodoc ChangeLog README AUTHORS docs/todo.txt }