mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
net-wireless/rtl_433: bump
update snapshot, minor ebuild updates following development Package-Manager: Portage-2.3.68, Repoman-2.3.16 Signed-off-by: Rick Farina <zerochaos@gentoo.org>
This commit is contained in:
@@ -1 +1 @@
|
||||
DIST rtl_433-0.1_p20180223.tar.gz 228857 BLAKE2B a2fc4e49ce62a5908426fa8a35b0f305c1b09ac62c4f0e299141d1bd85c5c48824868197244307797a21e9919c284d04d6f981ed66c4c11745c7ce1772aebb8b SHA512 68a36159eadf9180969e8ad587db553829cd77d0d9c7226d29a32e39867387025a8ff373a0cf553aec07243685510ec3dbecedfcb96970e379265cd3def7a674
|
||||
DIST rtl_433-0.1_p20190709.tar.gz 718424 BLAKE2B f7acd89013114c7d357edfc4610be8a7405feac11843dcb1bc7fefe81556a3b09ee26622dd58d68afb3d99840db8e997dbbc66cccda53a34964b32bac352462c SHA512 d36757a567c7696b150b03a1e09fda74f7a4ec454bc1b5658e4a6b22370de5c102a152257d436c87f0ddff325c17b0e9b8afbae0dc3e82ab04111d78a728a590
|
||||
|
||||
@@ -5,6 +5,10 @@
|
||||
<email>radio@gentoo.org</email>
|
||||
<name>Radio</name>
|
||||
</maintainer>
|
||||
<use>
|
||||
<flag name="rtlsdr">Build with Realtek RTL2832U (rtlsdr) support</flag>
|
||||
<flag name="soapy">Build with SoapySDR support</flag>
|
||||
</use>
|
||||
<upstream>
|
||||
<remote-id type="github">merbanan/rtl_433</remote-id>
|
||||
</upstream>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# Copyright 1999-2018 Gentoo Foundation
|
||||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
@@ -12,7 +12,7 @@ if [[ $PV == "9999" ]]; then
|
||||
EGIT_REPO_URI="https://github.com/merbanan/rtl_433"
|
||||
KEYWORDS=""
|
||||
else
|
||||
COMMIT="51d275cd08c517d5445b568bf9c2f1b4103bec9f"
|
||||
COMMIT="496f82b54b8957dbdd1bb60a080aeccfd31da73e"
|
||||
SRC_URI="https://github.com/merbanan/rtl_433/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
|
||||
S="${WORKDIR}/${PN}-${COMMIT}"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
@@ -20,7 +20,22 @@ fi
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
IUSE=""
|
||||
IUSE="+rtlsdr soapy"
|
||||
|
||||
DEPEND="net-wireless/rtl-sdr:="
|
||||
DEPEND="rtlsdr? ( net-wireless/rtl-sdr:= )
|
||||
soapy? ( net-wireless/soapysdr:= )"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
src_configure() {
|
||||
mycmakeargs=(
|
||||
-DENABLE_RTLSDR="$(usex rtlsdr)"
|
||||
-DENABLE_SOAPYSDR="$(usex soapy)"
|
||||
)
|
||||
cmake-utils_src_configure
|
||||
}
|
||||
|
||||
src_install() {
|
||||
cmake-utils_src_install
|
||||
mv "${ED}/usr/etc" "${ED}/" || die
|
||||
mv "${ED}/etc/${PN}/${PN}.example.conf" "${ED}/etc/${PN}/${PN}.conf" || die
|
||||
}
|
||||
@@ -1,4 +1,4 @@
|
||||
# Copyright 1999-2018 Gentoo Foundation
|
||||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
@@ -12,15 +12,30 @@ if [[ $PV == "9999" ]]; then
|
||||
EGIT_REPO_URI="https://github.com/merbanan/rtl_433"
|
||||
KEYWORDS=""
|
||||
else
|
||||
COMMIT="51d275cd08c517d5445b568bf9c2f1b4103bec9f"
|
||||
SRC_URI="https://github.com/merbanan/rtl_433/archive/${COMMIT}.tar.gz"
|
||||
COMMIT="496f82b54b8957dbdd1bb60a080aeccfd31da73e"
|
||||
SRC_URI="https://github.com/merbanan/rtl_433/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
|
||||
S="${WORKDIR}/${PN}-${COMMIT}"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
fi
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
IUSE=""
|
||||
IUSE="+rtlsdr soapy"
|
||||
|
||||
DEPEND="net-wireless/rtl-sdr:="
|
||||
DEPEND="rtlsdr? ( net-wireless/rtl-sdr:= )
|
||||
soapy? ( net-wireless/soapysdr:= )"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
src_configure() {
|
||||
mycmakeargs=(
|
||||
-DENABLE_RTLSDR="$(usex rtlsdr)"
|
||||
-DENABLE_SOAPYSDR="$(usex soapy)"
|
||||
)
|
||||
cmake-utils_src_configure
|
||||
}
|
||||
|
||||
src_install() {
|
||||
cmake-utils_src_install
|
||||
mv "${ED}/usr/etc" "${ED}/" || die
|
||||
mv "${ED}/etc/${PN}/${PN}.example.conf" "${ED}/etc/${PN}/${PN}.conf" || die
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user