blob: 8a4b4a64938d294b88b2d069786920e89aec5ed8 (
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-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-ftp/axyftp/axyftp-0.5.1-r1.ebuild,v 1.1 2008/01/17 13:59:12 drac Exp $
inherit eutils
DESCRIPTION="GUI FTP client for X Window System (former WXftp)"
HOMEPAGE="http://www.wxftp.seul.org"
SRC_URI="http://www.wxftp.seul.org/download/${P}.tar.gz"
LICENSE="Artistic LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
RDEPEND="x11-libs/openmotif
x11-libs/libXt
x11-libs/libX11
x11-libs/libXpm
x11-libs/libXaw"
DEPEND="${RDEPEND}"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-built-in-function-exit.patch
}
src_compile(){
econf --with-help=/usr/share/doc/${PF}/html \
--with-gui=motif
emake -j1 || die "emake failed."
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed."
dodoc CHANGES README TODO
newicon icons/${PN}-ball64.xpm ${PN}.xpm
make_desktop_entry ${PN} "AxY FTP" ${PN} "Network;FileTransfer;Motif"
}
|