blob: 1c6f612a7efe32ead873bd43b1db7621dc78303f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# 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
# $Header: /var/cvsroot/gentoo-x86/net-ftp/gftp/gftp-2.0.8.ebuild,v 1.6 2002/05/23 06:50:15 seemant 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*
nls? ( sys-devel/gettext )"
src_compile() {
local myconf
if [ -z "`use nls`" ] ; then
myconf="--disable-nls"
fi
try ./configure --host=${CHOST} --prefix=/usr \
--mandir=/usr/share/man ${myconf}
try make
}
src_install() {
try make prefix=${D}/usr mandir=${D}/usr/share/man install
dodoc COPYING ChangeLog README* THANKS TODO
dodoc docs/USERS-GUIDE
}
|