# 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 wxwidgets DESCRIPTION="FileZilla is a fast and reliable FTP client." HOMEPAGE="http://filezilla-project.org/" SRC_URI="http://downloads.sourceforge.net/filezilla/FileZilla_3.0.1_src.tar.bz2" RESTRICT="nostrip nomirror" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" DEPEND=">=net-libs/gnutls-1.6 >=x11-libs/wxGTK-2.8.4.0 >=net-dns/libidn-0.6.5" RDEPEND=">=x11-libs/wxGTK-2.8.4.0" S="${WORKDIR}/filezilla-3.0.1" WX_GTK_VER="2.8" 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 }