summaryrefslogtreecommitdiff
path: root/dev-libs/openobex
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-12 11:50:53 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-12 11:50:53 -0500
commit290aebdea65a02557706eaeda477fef0437b6a48 (patch)
treef87a939169a508a2e943570501b64cc16b411cda /dev-libs/openobex
parent6783ddcd4b73d9ce586a71770caed352bec93b16 (diff)
downloadbaldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.gz
baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.xz
baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.zip
Adding metadata
Diffstat (limited to 'dev-libs/openobex')
-rw-r--r--dev-libs/openobex/Manifest1
-rw-r--r--dev-libs/openobex/files/openobex-1.7.2-version.h.patch13
-rw-r--r--dev-libs/openobex/metadata.xml8
-rw-r--r--dev-libs/openobex/openobex-1.7.2-r3.ebuild43
4 files changed, 0 insertions, 65 deletions
diff --git a/dev-libs/openobex/Manifest b/dev-libs/openobex/Manifest
deleted file mode 100644
index cf658694ab5b..000000000000
--- a/dev-libs/openobex/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST openobex-1.7.2-Source.tar.gz 127248 BLAKE2B c0405aef2f15f16e31641f4a60ac01da26c2a61a5114b8f3990f0fcf64bd55c730ff7aa5f524b450c1e6b5653b9616c0861686102594818ba3bdf2314a3c51ff SHA512 22f1b0d99e7186da9fa12b510ef9dbb6f7d76777d58b235ab2f627703d07b6f6b0488cdc9c6d8c0ab7bc86d6d19117c55fff9273fed02736c0210f9b1788bf4d
diff --git a/dev-libs/openobex/files/openobex-1.7.2-version.h.patch b/dev-libs/openobex/files/openobex-1.7.2-version.h.patch
deleted file mode 100644
index cfcf68595b43..000000000000
--- a/dev-libs/openobex/files/openobex-1.7.2-version.h.patch
+++ /dev/null
@@ -1,13 +0,0 @@
---- openobex-1.7.2-Source/include/openobex/version.h.in.orig 2013-07-21 21:27:14.000000000 +0400
-+++ openobex-1.7.2-Source/include/openobex/version.h.in 2018-10-27 19:35:53.921795023 +0300
-@@ -1,6 +1,6 @@
-
--#define OPENOBEX_VERSION "@VERSION@"
-+#define OPENOBEX_VERSION "@openobex_VERSION@"
-
--#define OPENOBEX_VERSION_MAJOR @VERSION_MAJOR@
--#define OPENOBEX_VERSION_MINOR @VERSION_MINOR@
--#define OPENOBEX_VERSION_PATCH @VERSION_PATCH@
-+#define OPENOBEX_VERSION_MAJOR @openobex_VERSION_MAJOR@
-+#define OPENOBEX_VERSION_MINOR @openobex_VERSION_MINOR@
-+#define OPENOBEX_VERSION_PATCH @openobex_VERSION_PATCH@
diff --git a/dev-libs/openobex/metadata.xml b/dev-libs/openobex/metadata.xml
deleted file mode 100644
index ce13baf31499..000000000000
--- a/dev-libs/openobex/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://docs.baldeagleos.com/dtd/metadata.dtd">
-<pkgmetadata>
- <use>
- <flag name="irda">Enable IrDA support</flag>
- </use>
- <origin>baldeagleos-repo</origin>
-</pkgmetadata>
diff --git a/dev-libs/openobex/openobex-1.7.2-r3.ebuild b/dev-libs/openobex/openobex-1.7.2-r3.ebuild
deleted file mode 100644
index db4db851aa64..000000000000
--- a/dev-libs/openobex/openobex-1.7.2-r3.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake udev
-
-DESCRIPTION="Implementation of the OBEX protocol used for transferring data to mobile devices"
-HOMEPAGE="https://sourceforge.net/projects/openobex/"
-SRC_URI="https://downloads.sourceforge.net/${PN}/${PV}/${P}-Source.tar.gz"
-
-LICENSE="GPL-2 LGPL-2.1"
-SLOT="0/2"
-KEYWORDS="amd64 arm ~hppa ppc ppc64 ~sparc x86"
-IUSE="bluetooth doc irda usb"
-
-BDEPEND="
- doc? ( app-text/doxygen )
- virtual/pkgconfig
-"
-DEPEND="
- bluetooth? ( net-wireless/bluez:= )
- usb? ( virtual/libusb:= )
-"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${P}-Source"
-
-PATCHES=( "${FILESDIR}/${P}-version.h.patch" )
-DOCS=( AUTHORS ChangeLog README UPGRADING.txt )
-
-src_configure() {
- local mycmakeargs=(
- -DBUILD_DOCUMENTATION=$(usex doc)
- -DOPENOBEX_BLUETOOTH=$(usex bluetooth)
- -DOPENOBEX_IRDA=$(usex irda)
- -DOPENOBEX_USB=$(usex usb)
- -DCMAKE_INSTALL_DOCDIR="${EPREFIX}/usr/share/doc/${PF}"
- )
- use usb && mycmakeargs+=( -DCMAKE_INSTALL_UDEVRULESDIR="$(get_udevdir)/rules.d" )
-
- cmake_src_configure
-}