diff options
author | Bernard Cafarelli <voyageur@gentoo.org> | 2009-01-07 20:35:32 +0000 |
---|---|---|
committer | Bernard Cafarelli <voyageur@gentoo.org> | 2009-01-07 20:35:32 +0000 |
commit | 751ff822fe2c066e9dc877a5d1b0b534eaaf147e (patch) | |
tree | 27a2349188b860067754e267b43097ad54c27b2f /net-ftp | |
parent | Bug #193627 - Set RESTRICT=fetch since distfiles are unavailable. (diff) | |
download | gentoo-2-751ff822fe2c066e9dc877a5d1b0b534eaaf147e.tar.gz gentoo-2-751ff822fe2c066e9dc877a5d1b0b534eaaf147e.tar.bz2 gentoo-2-751ff822fe2c066e9dc877a5d1b0b534eaaf147e.zip |
Version bump, adds bookmarks, logging to file, allow to use GNOME session manager via dbus to cleanly shut down on end of session
(Portage version: 2.2_rc20/cvs/Linux 2.6.26-gentoo x86_64)
Diffstat (limited to 'net-ftp')
-rw-r--r-- | net-ftp/filezilla/ChangeLog | 11 | ||||
-rw-r--r-- | net-ftp/filezilla/filezilla-3.2.0.ebuild | 42 |
2 files changed, 51 insertions, 2 deletions
diff --git a/net-ftp/filezilla/ChangeLog b/net-ftp/filezilla/ChangeLog index 0925e00e7d75..446ec0d5f858 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.29 2008/12/02 23:23:21 voyageur Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-ftp/filezilla/ChangeLog,v 1.30 2009/01/07 20:35:32 voyageur Exp $ + +*filezilla-3.2.0 (07 Jan 2009) + + 07 Jan 2009; Bernard Cafarelli <voyageur@gentoo.org> + +filezilla-3.2.0.ebuild: + Version bump, adds bookmarks, logging to file, allow to use GNOME session + manager via dbus to cleanly shut down on end of session *filezilla-3.1.6 (02 Dec 2008) diff --git a/net-ftp/filezilla/filezilla-3.2.0.ebuild b/net-ftp/filezilla/filezilla-3.2.0.ebuild new file mode 100644 index 000000000000..77a47cad8f0e --- /dev/null +++ b/net-ftp/filezilla/filezilla-3.2.0.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-ftp/filezilla/filezilla-3.2.0.ebuild,v 1.1 2009/01/07 20:35:32 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="dbus" + +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 $(use_with dbus) || 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 +} |