diff options
author | Rick Farina <zerochaos@gentoo.org> | 2023-12-20 15:46:44 -0500 |
---|---|---|
committer | Rick Farina <zerochaos@gentoo.org> | 2023-12-20 15:47:18 -0500 |
commit | 054fd7bf64a2ca122519a29c9844e322472eae78 (patch) | |
tree | d9b1e8e3c0bfbfa13aef0ca17d56c9acee2703d8 /net-wireless | |
parent | net-wireless/osmo-fl2k: add 0.2.0 (diff) | |
download | gentoo-054fd7bf64a2ca122519a29c9844e322472eae78.tar.gz gentoo-054fd7bf64a2ca122519a29c9844e322472eae78.tar.bz2 gentoo-054fd7bf64a2ca122519a29c9844e322472eae78.zip |
net-wireless/osmo-fl2k: drop 0.1.1-r1
Signed-off-by: Rick Farina <zerochaos@gentoo.org>
Diffstat (limited to 'net-wireless')
-rw-r--r-- | net-wireless/osmo-fl2k/Manifest | 1 | ||||
-rw-r--r-- | net-wireless/osmo-fl2k/osmo-fl2k-0.1.1-r1.ebuild | 54 |
2 files changed, 0 insertions, 55 deletions
diff --git a/net-wireless/osmo-fl2k/Manifest b/net-wireless/osmo-fl2k/Manifest index 9ec521c5c58a..3f2bc0faa161 100644 --- a/net-wireless/osmo-fl2k/Manifest +++ b/net-wireless/osmo-fl2k/Manifest @@ -1,2 +1 @@ -DIST osmo-fl2k-0.1.1.tar.gz 68811 BLAKE2B 6c1b602b47d5e0816d93750e0470ed4530e587341f28e2e93c3aef634d7108b981cc4a96b758d72796316f15e4401ef746b91a983f374e63103ac76d8b7168c1 SHA512 55b384e18cfa5a1ab660860874cc6f6256b812ee867c863b6cd12c67cfc3517632469fc1ed6b83a35c956aa5371e1198634a52b292b109da828bee60c23f5140 DIST osmo-fl2k-0.2.0.tar.gz 73276 BLAKE2B c15613ec0bdc3ec28a55892a893e0bc8fc397ab916f66bbc50a04c2ae12ef749e9c78906d66c3499c3d5cf5b711d7742cec8ca014099f4815e9690643922f4d7 SHA512 3b419869edecd3b64ec26212007be379154b93470305d3f125b4723bbbafc012eba32a414ebd84c5e0e9019a8079f4c1ddea7d0e6d108cc8628ce0e5e3e8755a diff --git a/net-wireless/osmo-fl2k/osmo-fl2k-0.1.1-r1.ebuild b/net-wireless/osmo-fl2k/osmo-fl2k-0.1.1-r1.ebuild deleted file mode 100644 index f8ab9250ade2..000000000000 --- a/net-wireless/osmo-fl2k/osmo-fl2k-0.1.1-r1.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit cmake flag-o-matic linux-info udev - -DESCRIPTION="turns FL2000-based USB 3.0 to VGA adapters into low cost DACs" -HOMEPAGE="https://osmocom.org/projects/osmo-fl2k/wiki" - -if [[ ${PV} == "9999" ]]; then - inherit git-r3 - EGIT_REPO_URI="https://git.osmocom.org/osmo-fl2k" -else - KEYWORDS="~amd64" - SRC_URI="https://git.osmocom.org/osmo-fl2k/snapshot/v${PV}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/v${PV}" -fi - -LICENSE="GPL-2+" -SLOT="0" - -IUSE="udev" - -DEPEND="virtual/libusb:1" -RDEPEND="${DEPEND} - media-sound/sox - sys-apps/pv" - -# continguous memory allocator can optionally be used for zero-copy transfer -# TODO: tell users to set CONFIG_CMA_SIZE_MBYTES or boot with cma=... parameter -CONFIG_CHECK="~CMA ~DMA_CMA" - -src_configure() { - # udev rules use wrong filename and would go to wrong directory anyway - local mycmakeargs=( - -DLIB_INSTALL_DIR="/usr/$(get_libdir)" - -DINSTALL_UDEV_RULES=OFF - ) - #https://gcc.gnu.org/bugzilla/show_bug.cgi?id=49653 - replace-flags -O0 -O2 - replace-flags -Os -O2 - cmake_src_configure -} - -src_install() { - if use udev; then - udev_newrules ${PN}.rules 99-${PN}.rules - fi - cmake_src_install - # https://bugs.gentoo.org/727984 - # No obvious way to prevent build - find "${ED}" -name libosmo-fl2k.a -delete -} |