diff options
author | Bart Verwilst <verwilst@gentoo.org> | 2001-12-23 13:44:15 +0000 |
---|---|---|
committer | Bart Verwilst <verwilst@gentoo.org> | 2001-12-23 13:44:15 +0000 |
commit | 511bf7eac638a2e4b1ca592410e91fa225e573f2 (patch) | |
tree | 4a50bc071b93b6ca841e836b94bce3d9b8c2d5b3 /net-ftp | |
parent | sysvinit is now part of baselayout; removed from the profile. (diff) | |
download | gentoo-2-511bf7eac638a2e4b1ca592410e91fa225e573f2.tar.gz gentoo-2-511bf7eac638a2e4b1ca592410e91fa225e573f2.tar.bz2 gentoo-2-511bf7eac638a2e4b1ca592410e91fa225e573f2.zip |
Updated version of gftp... Removed old version
Diffstat (limited to 'net-ftp')
-rw-r--r-- | net-ftp/gftp/files/digest-gftp-2.0.10 | 1 | ||||
-rw-r--r-- | net-ftp/gftp/gftp-2.0.10.ebuild | 39 |
2 files changed, 40 insertions, 0 deletions
diff --git a/net-ftp/gftp/files/digest-gftp-2.0.10 b/net-ftp/gftp/files/digest-gftp-2.0.10 new file mode 100644 index 000000000000..0a2d6462221a --- /dev/null +++ b/net-ftp/gftp/files/digest-gftp-2.0.10 @@ -0,0 +1 @@ +MD5 d77ca46fdc3f7ad8ab92cdc0ec1b0299 gftp-2.0.10.tar.gz 892928 diff --git a/net-ftp/gftp/gftp-2.0.10.ebuild b/net-ftp/gftp/gftp-2.0.10.ebuild new file mode 100644 index 000000000000..dee0aa7748a2 --- /dev/null +++ b/net-ftp/gftp/gftp-2.0.10.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Authors Achim Gottinger <achim@gentoo.org>, Bart Verwilst <verwilst@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/net-ftp/gftp/gftp-2.0.10.ebuild,v 1.1 2001/12/23 13:44:15 verwilst Exp $ + + +S=${WORKDIR}/${P} +DESCRIPTION="Gnome based FTP Client" +SRC_URI="http://www.gftp.org/${P}.tar.gz" +HOMEPAGE="http://www.gftp.org" + +DEPEND=">=x11-libs/gtk+-1.2.10-r4 + >=dev-libs/glib-1.2.10-r1 + >=x11-base/xfree-4.1.0 + nls? ( sys-devel/gettext )" + + +src_compile() { + local myconf + if [ -z "`use nls`" ] ; then + myconf="--disable-nls" + fi + ./configure --host=${CHOST} --prefix=/usr --mandir=/usr/share/man ${myconf} || die + emake || die +} + +src_install() { + + make prefix=${D}/usr mandir=${D}/usr/share/man install || die + + dodoc COPYING ChangeLog README* THANKS TODO + dodoc docs/USERS-GUIDE + +} + + + + + |