diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-07-17 09:39:57 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-07-17 09:39:57 +0000 |
commit | 5792409ecf2b4ec76767208e59eddf27b305617e (patch) | |
tree | 06386c7d64ace8e1354aef44a2ec17c8ee4ad30b /net-ftp/deadftp | |
parent | repoman'd (diff) | |
download | historical-5792409ecf2b4ec76767208e59eddf27b305617e.tar.gz historical-5792409ecf2b4ec76767208e59eddf27b305617e.tar.bz2 historical-5792409ecf2b4ec76767208e59eddf27b305617e.zip |
repoman'd
Diffstat (limited to 'net-ftp/deadftp')
-rw-r--r-- | net-ftp/deadftp/deadftp-0.1.3.ebuild | 24 |
1 files changed, 9 insertions, 15 deletions
diff --git a/net-ftp/deadftp/deadftp-0.1.3.ebuild b/net-ftp/deadftp/deadftp-0.1.3.ebuild index 32b6649189fd..8411a8ed85cc 100644 --- a/net-ftp/deadftp/deadftp-0.1.3.ebuild +++ b/net-ftp/deadftp/deadftp-0.1.3.ebuild @@ -1,38 +1,32 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/net-ftp/deadftp/deadftp-0.1.3.ebuild,v 1.1 2002/07/09 10:10:34 stroke Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-ftp/deadftp/deadftp-0.1.3.ebuild,v 1.2 2002/07/17 09:39:57 seemant Exp $ S=${WORKDIR}/${P} DESCRIPTION="Gnome based FTP Client" -SRC_URI="http://unc.dl.sourceforge.net/sourceforge/deadftp/${P}.tar.bz2" +SRC_URI="mirror://sourceforge/deadftp/${P}.tar.bz2" HOMEPAGE="http://deadftp.sourceforge.net" SLOT="0" LICENSE="GPL-2" -KEYWORDS="*" +KEYWORDS="x86 ppc" DEPEND="=dev-libs/glib-1.2* =x11-libs/gtk+-1.2* - ( >=gnome-base/libglade-0.17 - <gnome-base/libglade-2.0.0 ) + =gnome-base/libglade-0.17* >=media-libs/gdk-pixbuf-0.18.0 >=gnome-base/ORBit-0.5.16 >=gnome-base/gnome-libs-1.4.1.7" -RDEPEND="${DEPEND} - nls? ( >=sys-devel/gettext-0.10.40 >=dev-util/intltool-0.11 )" +RDEPEND="nls? ( >=sys-devel/gettext-0.10.40 + >=dev-util/intltool-0.11 )" src_compile() { local myconf - if [ -z "`use nls`" ] ; then - myconf="--disable-nls" - fi - - ./configure \ - --host=${CHOST} \ - --prefix=/usr \ - --mandir=/usr/share/man ${myconf} || die + use nls || myconf="--disable-nls" + + econf ${myconf} || die emake || die } |