diff options
author | Bernard Cafarelli <voyageur@gentoo.org> | 2008-12-02 23:23:21 +0000 |
---|---|---|
committer | Bernard Cafarelli <voyageur@gentoo.org> | 2008-12-02 23:23:21 +0000 |
commit | 7e1336178b01e68c357e0152d797a904299a5a6d (patch) | |
tree | 500fbbbd8ca66df0ec44f12abbdc7dd1efdcde8d /net-ftp | |
parent | stable ppc64, bug 245561 (diff) | |
download | gentoo-2-7e1336178b01e68c357e0152d797a904299a5a6d.tar.gz gentoo-2-7e1336178b01e68c357e0152d797a904299a5a6d.tar.bz2 gentoo-2-7e1336178b01e68c357e0152d797a904299a5a6d.zip |
Version bump, automatically refresh remote directory listing if queue finishes successfully, bugfixes
(Portage version: 2.2_rc16/cvs/Linux 2.6.26-gentoo x86_64)
Diffstat (limited to 'net-ftp')
-rw-r--r-- | net-ftp/filezilla/ChangeLog | 9 | ||||
-rw-r--r-- | net-ftp/filezilla/filezilla-3.1.6.ebuild | 42 |
2 files changed, 50 insertions, 1 deletions
diff --git a/net-ftp/filezilla/ChangeLog b/net-ftp/filezilla/ChangeLog index 31b23ce4c5b3..0925e00e7d75 100644 --- a/net-ftp/filezilla/ChangeLog +++ b/net-ftp/filezilla/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for net-ftp/filezilla # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-ftp/filezilla/ChangeLog,v 1.28 2008/11/17 09:01:14 voyageur Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-ftp/filezilla/ChangeLog,v 1.29 2008/12/02 23:23:21 voyageur Exp $ + +*filezilla-3.1.6 (02 Dec 2008) + + 02 Dec 2008; Bernard Cafarelli <voyageur@gentoo.org> + +filezilla-3.1.6.ebuild: + Version bump, automatically refresh remote directory listing if queue + finishes successfully, bugfixes *filezilla-3.1.5.1 (17 Nov 2008) diff --git a/net-ftp/filezilla/filezilla-3.1.6.ebuild b/net-ftp/filezilla/filezilla-3.1.6.ebuild new file mode 100644 index 000000000000..8698044b77d1 --- /dev/null +++ b/net-ftp/filezilla/filezilla-3.1.6.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-ftp/filezilla/filezilla-3.1.6.ebuild,v 1.1 2008/12/02 23:23:21 voyageur Exp $ + +WX_GTK_VER="2.8" + +inherit eutils multilib wxwidgets + +MY_PV=${PV/_/-} +MY_P="FileZilla_${MY_PV}" + +DESCRIPTION="FTP client with lots of useful features and an intuitive interface" +HOMEPAGE="http://filezilla-project.org/" +SRC_URI="mirror://sourceforge/${PN}/${MY_P}_src.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ia64 ~ppc ~sparc ~x86" +IUSE="" + +RDEPEND="net-dns/libidn + >=x11-libs/wxGTK-2.8.9 + >=app-admin/eselect-wxwidgets-0.7-r1" +DEPEND="${RDEPEND} + >=sys-devel/libtool-1.4 + >=sys-devel/gettext-0.11 + >=net-libs/gnutls-2.0.4" + +S="${WORKDIR}"/${PN}-${MY_PV} + +src_compile() { + econf || die "econf failed" + emake || die "emake failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + + doicon src/interface/resources/48x48/${PN}.png || die "doicon failed" + + dodoc AUTHORS ChangeLog NEWS +} |