summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavide Pesavento <pesa@gentoo.org>2016-05-30 20:00:37 +0200
committerDavide Pesavento <pesa@gentoo.org>2016-05-30 20:00:37 +0200
commit070656e250301bda9295f923a0ee45bbe8820a32 (patch)
treea5cb29aed11e55ab64de2733d5f0a920d192a2e6 /net-ftp/oneclickftp
parentmedia-video/minitube: remove old (diff)
downloadgentoo-070656e250301bda9295f923a0ee45bbe8820a32.tar.gz
gentoo-070656e250301bda9295f923a0ee45bbe8820a32.tar.bz2
gentoo-070656e250301bda9295f923a0ee45bbe8820a32.zip
net-ftp/oneclickftp: migrate to EAPI 6
Package-Manager: portage-2.3.0_rc1
Diffstat (limited to 'net-ftp/oneclickftp')
-rw-r--r--net-ftp/oneclickftp/oneclickftp-0.5.1.ebuild22
1 files changed, 14 insertions, 8 deletions
diff --git a/net-ftp/oneclickftp/oneclickftp-0.5.1.ebuild b/net-ftp/oneclickftp/oneclickftp-0.5.1.ebuild
index 893c23551595..d6c31dfada8a 100644
--- a/net-ftp/oneclickftp/oneclickftp-0.5.1.ebuild
+++ b/net-ftp/oneclickftp/oneclickftp-0.5.1.ebuild
@@ -1,9 +1,10 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
-EAPI=2
-inherit eutils qt4-r2
+EAPI=6
+
+inherit eutils qmake-utils
DESCRIPTION="The somehow different FTP client"
HOMEPAGE="http://oneclickftp.sourceforge.net/"
@@ -15,11 +16,14 @@ KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="
- || ( app-crypt/qca:2 app-crypt/qca:2[qt4] )
- dev-qt/qtgui:4"
+ app-crypt/qca:2[qt4(+)]
+ dev-qt/qtcore:4
+ dev-qt/qtgui:4
+"
+RDEPEND="${DEPEND}"
PATCHES=(
- "${FILESDIR}"/${P}-qt47.patch
+ "${FILESDIR}/${P}-qt47.patch"
)
src_configure() {
@@ -27,8 +31,10 @@ src_configure() {
}
src_install() {
- emake INSTALL_ROOT="${D}" install || die
+ emake INSTALL_ROOT="${D}" install
+
doicon res/icons/${PN}.png
make_desktop_entry ${PN} ${PN}
- dodoc CHANGELOG
+
+ einstalldocs
}