diff options
author | Achim Gottinger <achim@gentoo.org> | 2001-05-17 00:12:44 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2001-05-17 00:12:44 +0000 |
commit | 6506399d3beccba2293a05c360cc6a67d734338e (patch) | |
tree | 84c3c97908e3f0b6680aef2c8a87b4f02236a860 /net-ftp/gftp | |
parent | Update, thanks quacks (diff) | |
download | gentoo-2-6506399d3beccba2293a05c360cc6a67d734338e.tar.gz gentoo-2-6506399d3beccba2293a05c360cc6a67d734338e.tar.bz2 gentoo-2-6506399d3beccba2293a05c360cc6a67d734338e.zip |
Forgotten files
Diffstat (limited to 'net-ftp/gftp')
-rw-r--r-- | net-ftp/gftp/files/digest-gftp-2.0.8 | 1 | ||||
-rw-r--r-- | net-ftp/gftp/gftp-2.0.8.ebuild | 38 |
2 files changed, 39 insertions, 0 deletions
diff --git a/net-ftp/gftp/files/digest-gftp-2.0.8 b/net-ftp/gftp/files/digest-gftp-2.0.8 new file mode 100644 index 000000000000..ec9b60a37de7 --- /dev/null +++ b/net-ftp/gftp/files/digest-gftp-2.0.8 @@ -0,0 +1 @@ +MD5 a53217845e217162c11254fc936c1714 gftp-2.0.8.tar.gz diff --git a/net-ftp/gftp/gftp-2.0.8.ebuild b/net-ftp/gftp/gftp-2.0.8.ebuild new file mode 100644 index 000000000000..4089654a5b8f --- /dev/null +++ b/net-ftp/gftp/gftp-2.0.8.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Achim Gottinger <achim@gentoo.org> +# /home/cvsroot/gentoo-x86/gnome-apps/gedit/gedit-0.9.4.ebuild,v 1.4 2000/11/27 16:20:46 achim Exp + +A=${P}.tar.gz +S=${WORKDIR}/${P} +DESCRIPTION="Gnome based FTP Client" +SRC_URI="http://gftp.seul.org/${A}" +HOMEPAGE="http://gftp.seul.org" + +DEPEND=">=x11-libs/gtk+-1.2.10 + nls? ( sys-devel/gettext )" + + +src_compile() { + local myconf + if [ -z "`use nls`" ] ; then + myconf="--disable-nls" + fi + try ./configure --host=${CHOST} --prefix=/usr/X11R6 \ + --mandir=/usr/X11R6/share/man ${myconf} + try make +} + +src_install() { + + try make prefix=${D}/usr/X11R6 mandir=${D}/usr/X11R6/share/man install + + dodoc COPYING ChangeLog README* THANKS TODO + dodoc docs/USERS-GUIDE + +} + + + + + |