Skip to content

Commit

Permalink
net-wireless/sigdigger: initial ebuild
Browse files Browse the repository at this point in the history
Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: Rick Farina <[email protected]>
  • Loading branch information
ZeroChaos- committed Sep 15, 2020
1 parent 202f036 commit 9e13636
Show file tree
Hide file tree
Showing 3 changed files with 55 additions and 0 deletions.
1 change: 1 addition & 0 deletions net-wireless/sigdigger/Manifest
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
DIST sigdigger-0.1.0.tar.gz 4190977 BLAKE2B 2079ab0cb8ea24c17fd1643c01b9a31ea38921d3c72885753eeefff67c5bfe366ff306cd8538cac03f354bc31e14fa5c13d624b3a9b8d5104f006e6d223523b7 SHA512 2bd84ae0aca4f89f19a756e8cb5cae34e0f91cfb0df94bef58079edbebc1133ec5e9c620c8bd394e757237c30a72a67c691991c48317cd952dc17df95f141dd8
15 changes: 15 additions & 0 deletions net-wireless/sigdigger/metadata.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>[email protected]</email>
<name>Rick Farina</name>
</maintainer>
<maintainer type="project">
<email>[email protected]</email>
<name>Radio</name>
</maintainer>
<upstream>
<remote-id type="github">BatchDrake/SigDigger</remote-id>
</upstream>
</pkgmetadata>
39 changes: 39 additions & 0 deletions net-wireless/sigdigger/sigdigger-0.1.0.ebuild
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# Copyright 2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7
inherit qmake-utils

DESCRIPTION="The free digital signal analyzer"
HOMEPAGE="https://github.com/BatchDrake/SigDigger"
SRC_URI="https://github.com/BatchDrake/SigDigger/archive/v${PV}.tar.gz -> ${P}.tar.gz"

LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""

DEPEND="
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtwidgets:5
media-libs/alsa-lib
media-libs/libsndfile
net-wireless/sigutils
net-wireless/soapysdr:=
net-wireless/suscan
net-wireless/suwidgets
sci-libs/fftw:3.0=
"
RDEPEND="${DEPEND}"
BDEPEND=""

S="${WORKDIR}/SigDigger-${PV}"

src_configure() {
eqmake5 SIGDIGGER_PREFIX=/usr SigDigger.pro
}

src_install() {
INSTALL_ROOT="${ED}" emake install
}

0 comments on commit 9e13636

Please sign in to comment.