summaryrefslogtreecommitdiff
path: root/net-wireless/osmocom-bb
diff options
context:
space:
mode:
Diffstat (limited to 'net-wireless/osmocom-bb')
-rw-r--r--net-wireless/osmocom-bb/Manifest2
-rw-r--r--net-wireless/osmocom-bb/metadata.xml11
-rw-r--r--net-wireless/osmocom-bb/osmocom-bb-9999.ebuild45
3 files changed, 0 insertions, 58 deletions
diff --git a/net-wireless/osmocom-bb/Manifest b/net-wireless/osmocom-bb/Manifest
deleted file mode 100644
index 528be7067240..000000000000
--- a/net-wireless/osmocom-bb/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-EBUILD osmocom-bb-9999.ebuild 1269 BLAKE2B 573ddf5a8436ea3b701a9b0312a90f2dff7543c4cbf0413f6d42c2aea8f60d5161001a7fa3f11fe2f4dda39ad2535f1b8a4640ced410f8d2570be74f97f5b267 SHA512 14d85cf119bed653c84707943b655f7892a50524bef096cc3eafa2ef1dbc09488dd9001d52c6bd39de0b552efc994fa8e443a19a0bcb3a90e245d3629ef5619c
-MISC metadata.xml 318 BLAKE2B a84cbe76b571c704e7ccb8f8a62d6966a891c27276e238947360beba3105bc8e7d714cf43765d87b3549652e4bccf99554b50d56e1b36017625dbd287c045229 SHA512 e4f59e33a6c647e67c1ac74f8d9b8cf1be9283162e838bea486c59ba312c9ce44c81103ce05d90592a831c03516aa0a6532c83a4c71761db32c68def4c20a301
diff --git a/net-wireless/osmocom-bb/metadata.xml b/net-wireless/osmocom-bb/metadata.xml
deleted file mode 100644
index ca60be1c4b8d..000000000000
--- a/net-wireless/osmocom-bb/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>radio@gentoo.org</email>
- <name>Radio</name>
- </maintainer>
- <use>
- <flag name="transmit">Enable transmission capabilities.</flag>
- </use>
-</pkgmetadata>
diff --git a/net-wireless/osmocom-bb/osmocom-bb-9999.ebuild b/net-wireless/osmocom-bb/osmocom-bb-9999.ebuild
deleted file mode 100644
index be88f95016e4..000000000000
--- a/net-wireless/osmocom-bb/osmocom-bb-9999.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit autotools flag-o-matic git-r3
-
-DESCRIPTION="OsmocomBB MS-side GSM Protocol stack (L1, L2, L3) excluding firmware"
-HOMEPAGE="http://bb.osmocom.org"
-EGIT_REPO_URI="git://git.osmocom.org/osmocom-bb.git"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS=""
-IUSE="+transmit"
-
-DEPEND="net-libs/libosmocore"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
- use transmit && append-cflags "-DCONFIG_TX_ENABLE"
-
- cd src/host/osmocon && eautoreconf && cd ../../.. || die
- cd src/host/gsmmap && eautoreconf && cd ../../.. || die
- cd src/host/layer23 && eautoreconf && cd ../../.. || die
-}
-
-src_configure() {
- cd src/host/osmocon && econf && cd ../../.. || die
- cd src/host/gsmmap && econf && cd ../../.. || die
- cd src/host/layer23 && econf && cd ../../.. || die
-}
-
-src_compile() {
- cd src/host/osmocon && emake && cd ../../.. || die
- cd src/host/gsmmap && emake && cd ../../.. || die
- cd src/host/layer23 && emake && cd ../../.. || die
-
-}
-
-src_install() {
- cd src/host/osmocon && emake install DESTDIR="${D}" && cd ../../.. || die
- cd src/host/gsmmap && emake install DESTDIR="${D}" && cd ../../.. || die
- cd src/host/layer23 && emake install DESTDIR="${D}" && cd ../../.. || die
-}