blob: 8eef0fa33bee9ceb1944aeafbb86092057887299 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-ftp/nvemftp/nvemftp-0.1.3.ebuild,v 1.4 2004/11/18 00:15:21 motaboy Exp $
inherit kde
DESCRIPTION="An EASY GUI FTP Client (QT based)"
HOMEPAGE="http://nvemftp.sourceforge.net/"
SRC_URI="mirror://sourceforge/nvemftp/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ~sparc"
IUSE=""
need-qt 3
src_compile() {
emake || die
}
src_install() {
make install INSTALL_ROOT="${D}usr/" || die
dodoc README ChangeLog COPYING DESC AUTHORS TODO BUGS || die
}
|