40 lines
807 B
Bash
40 lines
807 B
Bash
|
# Copyright 1999-2016 Gentoo Foundation
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
# $Header: $
|
||
|
|
||
|
EAPI=6
|
||
|
|
||
|
CMAKE_MIN_VERSION="3.2.0"
|
||
|
|
||
|
inherit cmake-utils eutils
|
||
|
|
||
|
DESCRIPTION="Network File Transfer Application"
|
||
|
HOMEPAGE="http://nitroshare.net"
|
||
|
if [[ ${PV} == *9999* ]];then
|
||
|
inherit git-r3
|
||
|
EGIT_REPO_URI="https://github.com/${PN}/${PN}-desktop"
|
||
|
KEYWORDS=""
|
||
|
else
|
||
|
inherit versionator
|
||
|
MY_BR=$(get_version_component_range 1-2)
|
||
|
SRC_URI="https://launchpad.net/nitroshare/${MY_BR}/${PV}/+download/${P}.tar.gz"
|
||
|
KEYWORDS="x86 amd64"
|
||
|
RESTRICT="mirror"
|
||
|
fi
|
||
|
|
||
|
LICENSE="MIT"
|
||
|
SLOT="0"
|
||
|
IUSE="appindicator"
|
||
|
|
||
|
DEPEND="
|
||
|
>=dev-qt/qtcore-5.1:5
|
||
|
>=dev-qt/qtsvg-5.1:5
|
||
|
>=dev-qt/qtnetwork-5.1:5
|
||
|
x11-libs/libnotify"
|
||
|
|
||
|
RDEPEND="${DEPEND}
|
||
|
appindicator? (
|
||
|
x11-libs/gtk+:2
|
||
|
dev-libs/libappindicator:2
|
||
|
)"
|