Skip to content

Commit

Permalink
Added initial version for led-frame software.
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-0x7C6 committed Feb 16, 2019
1 parent 3e8ffdd commit 7c73958
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 0 deletions.
1 change: 1 addition & 0 deletions app-misc/led-frame/Manifest
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
DIST led-frame-0.8.10.tar.gz 99424 BLAKE2B 3ff1972b03df9dd933b0f6da4b52fc69921b9abd346ef34acb977b9564e427f795f862566b47f8fc517c50e52e336fed7e49444e091da92782bf1ea1819d9b54 SHA512 8c066955b874265d9838e09b0a648eae9880da439239b2d7bc5036aa21b69d87f623586033fa493a315d7179b0e9421d5ed8109505005e7f45597d2102d67a6a
46 changes: 46 additions & 0 deletions app-misc/led-frame/led-frame-0.8.10.ebuild
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

inherit cmake-utils

DESCRIPTION="Abientled for your monitor"
HOMEPAGE="https://github.com/dev-0x7C6/led-frame"
SRC_URI="https://github.com/dev-0x7C6/led-frame/archive/v${PV}.tar.gz -> ${P}.tar.gz"

LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="amd64 x86"

IUSE="
+X
(rpi)
(rpi3)
tests
benchmarks
"

RDEPEND="
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtwidgets:5
dev-qt/qtwebsockets:5
dev-qt/qtserialport:5
dev-qt/qtnetwork:5
"

DEPEND="${RDEPEND}"

DOCS=( CHANGELOG README )

src_configure() {
local mycmakeargs=(
-DSUPPORT_X11=$(usex X)
-DSUPPORT_RPI=0
-DSUPPORT_RPI3=0
-DTESTS=$(usex tests)
-DBENCHMARKS=$(usex benchmarks)
)
cmake-utils_src_configure
}

0 comments on commit 7c73958

Please sign in to comment.