summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2021-04-18 23:26:26 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2021-04-18 23:27:14 +0200
commit2a61da5e04f77bf6383b56893dab49216d6fde73 (patch)
tree721de867368701b6e3c67d1bb7ced7789eae0d92 /dev-libs/openobex
parentapp-cdr/cdw: Stabilize 0.8.1-r1 x86, #783882 (diff)
downloadgentoo-2a61da5e04f77bf6383b56893dab49216d6fde73.tar.gz
gentoo-2a61da5e04f77bf6383b56893dab49216d6fde73.tar.bz2
gentoo-2a61da5e04f77bf6383b56893dab49216d6fde73.zip
dev-libs/openobex: Drop 1.7.2-r1
Bug: https://bugs.gentoo.org/687432 Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'dev-libs/openobex')
-rw-r--r--dev-libs/openobex/openobex-1.7.2-r1.ebuild41
1 files changed, 0 insertions, 41 deletions
diff --git a/dev-libs/openobex/openobex-1.7.2-r1.ebuild b/dev-libs/openobex/openobex-1.7.2-r1.ebuild
deleted file mode 100644
index edcdf803d0a7..000000000000
--- a/dev-libs/openobex/openobex-1.7.2-r1.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit cmake-utils udev
-
-DESCRIPTION="Implementation of the OBEX protocol used for transferring data to mobile devices"
-HOMEPAGE="https://sourceforge.net/projects/openobex/"
-SRC_URI="mirror://sourceforge/${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"
-
-RDEPEND="
- bluetooth? ( net-wireless/bluez:= )
- usb? ( virtual/libusb:= )"
-DEPEND="${RDEPEND}
- virtual/pkgconfig
- doc? ( app-doc/doxygen )"
-
-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}"
- -DCMAKE_INSTALL_UDEVRULESDIR="$(get_udevdir)/rules.d"
- )
-
- cmake-utils_src_configure
-}