app-crypt/moolticute: requires libusb-1.0.20

This commit is contained in:
nemunaire 2017-07-12 11:01:30 +02:00
parent 399ee3afbf
commit 949434dec2
3 changed files with 45 additions and 5 deletions

View File

@ -1,2 +1,3 @@
DIST moolticute-0.7.0.tar.gz 4286792 SHA256 2b2fc5c6f241dd13c18a3d1b0ef2aaba4aa1a30828ddcaa9915a6702cb3401bb SHA512 983b613b7a3bb2490e23c892b88a05c506516707b1b6da766896c075a180a8d7a3b2dac69af701fddeaba2e38937d32aae100a13cfaf30656778b724b0990a22 WHIRLPOOL 4658a194bf16f652cec5bd66b33f8fb06240a343aefe9a94a1e4fc8cef0af0449fc57aa73c7b1576e27f965676e2773dcfa87e310358716cd781e175b04e0ff6 DIST moolticute-0.7.0.tar.gz 4286792 SHA256 2b2fc5c6f241dd13c18a3d1b0ef2aaba4aa1a30828ddcaa9915a6702cb3401bb SHA512 983b613b7a3bb2490e23c892b88a05c506516707b1b6da766896c075a180a8d7a3b2dac69af701fddeaba2e38937d32aae100a13cfaf30656778b724b0990a22 WHIRLPOOL 4658a194bf16f652cec5bd66b33f8fb06240a343aefe9a94a1e4fc8cef0af0449fc57aa73c7b1576e27f965676e2773dcfa87e310358716cd781e175b04e0ff6
EBUILD moolticute-0.7.0.ebuild 832 SHA256 e2c105b6b493c6ebc7b258833e6d56efdc801c6bf4305166c2f236552060ce1d SHA512 a0881db6e9f43c886b70c720b8f84ae8b7cbd2aa31a89742f8f49a0593a9a36afda4a179cbf64266578a840f0dc504e0920ff1a8628bbfbd557d024da2b4a0e6 WHIRLPOOL 88340a3275bde9608ef5a1fdb7e254f834abbe373cf728e1b0124d9bdb142120a6f4d0d315c7ca2a497cd368791faf2130acaf466d5629527c44726552bc0361 EBUILD moolticute-0.7.0.ebuild 829 SHA256 0d27ce8085121ad6ab7bdfe1845d9418050d37a71e6b7a536c695ebfdaecb651 SHA512 1760675ed25868233ff8ea96e02b84247e9e0594ba76a336f55bfc0f456d7dcc506dc96fea5bff7eadeb9b3314bcbfcc2af3b99674d938b870f37d8baeba2ced WHIRLPOOL dc26bbcaa97c5fdd2f8fbcc8995d46464e0688c13ca029f5b33d073147f85144b00e510d5381da038043ebe025fa8befde6ddae3c4f850f6b580281aa94ea2dc
EBUILD moolticute-9999.ebuild 829 SHA256 0d27ce8085121ad6ab7bdfe1845d9418050d37a71e6b7a536c695ebfdaecb651 SHA512 1760675ed25868233ff8ea96e02b84247e9e0594ba76a336f55bfc0f456d7dcc506dc96fea5bff7eadeb9b3314bcbfcc2af3b99674d938b870f37d8baeba2ced WHIRLPOOL dc26bbcaa97c5fdd2f8fbcc8995d46464e0688c13ca029f5b33d073147f85144b00e510d5381da038043ebe025fa8befde6ddae3c4f850f6b580281aa94ea2dc

View File

@ -1,6 +1,5 @@
# Copyright 1999-2016 Gentoo Foundation # Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2 # Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6 EAPI=6
@ -8,7 +7,7 @@ if [[ ${PV} == 9999* ]]; then
EGIT_REPO_URI="https://github.com/raoulh/moolticute.git" EGIT_REPO_URI="https://github.com/raoulh/moolticute.git"
inherit git-r3 inherit git-r3
KEYWORDS="" KEYWORDS=""
S=${WORKDIR}/${P}/${PN} S=${WORKDIR}/${P}
else else
SRC_URI="https://github.com/raoulh/moolticute/archive/v${PV}-beta.tar.gz -> moolticute-${PV}.tar.gz" SRC_URI="https://github.com/raoulh/moolticute/archive/v${PV}-beta.tar.gz -> moolticute-${PV}.tar.gz"
KEYWORDS="~amd64 ~arm" KEYWORDS="~amd64 ~arm"
@ -29,7 +28,7 @@ RDEPEND=">=dev-qt/qtcore-5.6
dev-qt/qtgui dev-qt/qtgui
dev-qt/qtnetwork dev-qt/qtnetwork
dev-qt/qtwebsockets dev-qt/qtwebsockets
virtual/libusb" >=dev-libs/libusb-1.0.20"
DEPEND="${RDEPEND}" DEPEND="${RDEPEND}"
src_configure() { src_configure() {

View File

@ -0,0 +1,40 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
if [[ ${PV} == 9999* ]]; then
EGIT_REPO_URI="https://github.com/raoulh/moolticute.git"
inherit git-r3
KEYWORDS=""
S=${WORKDIR}/${P}
else
SRC_URI="https://github.com/raoulh/moolticute/archive/v${PV}-beta.tar.gz -> moolticute-${PV}.tar.gz"
KEYWORDS="~amd64 ~arm"
S=${WORKDIR}/${P}-beta
fi
inherit qmake-utils
DESCRIPTION="Mooltipass crossplatform daemon/tools "
HOMEPAGE="https://github.com/raoulh/moolticute"
LICENSE="CLOSED"
SLOT="0"
IUSE=""
RDEPEND=">=dev-qt/qtcore-5.6
dev-qt/qtwidgets
dev-qt/qtgui
dev-qt/qtnetwork
dev-qt/qtwebsockets
>=dev-libs/libusb-1.0.20"
DEPEND="${RDEPEND}"
src_configure() {
eqmake5 PREFIX="/usr" Moolticute.pro
}
src_install() {
emake install INSTALL_ROOT="${D}"
}