Gentoo Archives: gentoo-commits

From: Michael Palimaka <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/netfleet/
Date: Thu, 25 Feb 2016 15:17:59
Message-Id: 1456413463.c5d31b7b969837507660ca92b5b77454766916fb.kensington@gentoo
1 commit: c5d31b7b969837507660ca92b5b77454766916fb
2 Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
3 AuthorDate: Thu Feb 25 15:16:48 2016 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 25 15:17:43 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5d31b7b
7
8 net-misc/netfleet: revision bump
9
10 * Port to EAPI 6
11 * Port away from qt4-r2.eclass
12 * Add missing dependency
13
14 Gentoo-bug: 575642
15
16 Package-Manager: portage-2.2.27
17
18 net-misc/netfleet/netfleet-0.2.1-r2.ebuild | 32 ++++++++++++++++++++++++++++++
19 1 file changed, 32 insertions(+)
20
21 diff --git a/net-misc/netfleet/netfleet-0.2.1-r2.ebuild b/net-misc/netfleet/netfleet-0.2.1-r2.ebuild
22 new file mode 100644
23 index 0000000..2873910
24 --- /dev/null
25 +++ b/net-misc/netfleet/netfleet-0.2.1-r2.ebuild
26 @@ -0,0 +1,32 @@
27 +# Copyright 1999-2016 Gentoo Foundation
28 +# Distributed under the terms of the GNU General Public License v2
29 +# $Id$
30 +
31 +EAPI=6
32 +
33 +inherit qmake-utils
34 +
35 +DESCRIPTION="Qt4 cross-platform multi-threaded download utility"
36 +HOMEPAGE="http://qt-apps.org/content/show.php/?content=103312"
37 +SRC_URI="https://netfleet.googlecode.com/files/${PN}_${PV}.tar.bz2"
38 +
39 +LICENSE="GPL-3"
40 +SLOT="0"
41 +KEYWORDS="~amd64 ~x86"
42 +IUSE=""
43 +
44 +DEPEND="
45 + dev-qt/qtcore:4[ssl]
46 + dev-qt/qtgui:4
47 +"
48 +RDEPEND="${DEPEND}"
49 +
50 +S="${WORKDIR}/${PN}"
51 +
52 +src_configure() {
53 + eqmake4
54 +}
55 +
56 +src_install() {
57 + emake INSTALL_ROOT="${D}" install
58 +}