Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/openobex/
Date: Fri, 01 Apr 2022 18:35:31
Message-Id: 1648838121.290935efb0bf7e33219923992e4183d1370b0576.asturm@gentoo
1 commit: 290935efb0bf7e33219923992e4183d1370b0576
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Fri Apr 1 18:35:00 2022 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Fri Apr 1 18:35:21 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=290935ef
7
8 dev-libs/openobex: Drop 1.7.2-r2, cmake-utils--
9
10 Closes: https://bugs.gentoo.org/834125
11 Package-Manager: Portage-3.0.30, Repoman-3.0.3
12 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
13
14 dev-libs/openobex/openobex-1.7.2-r2.ebuild | 43 ------------------------------
15 1 file changed, 43 deletions(-)
16
17 diff --git a/dev-libs/openobex/openobex-1.7.2-r2.ebuild b/dev-libs/openobex/openobex-1.7.2-r2.ebuild
18 deleted file mode 100644
19 index 0ca2449f9f24..000000000000
20 --- a/dev-libs/openobex/openobex-1.7.2-r2.ebuild
21 +++ /dev/null
22 @@ -1,43 +0,0 @@
23 -# Copyright 1999-2019 Gentoo Authors
24 -# Distributed under the terms of the GNU General Public License v2
25 -
26 -EAPI=7
27 -
28 -inherit cmake-utils udev
29 -
30 -DESCRIPTION="Implementation of the OBEX protocol used for transferring data to mobile devices"
31 -HOMEPAGE="https://sourceforge.net/projects/openobex/"
32 -SRC_URI="mirror://sourceforge/${PN}/${PV}/${P}-Source.tar.gz"
33 -
34 -LICENSE="GPL-2 LGPL-2.1"
35 -SLOT="0/2"
36 -KEYWORDS="amd64 arm ~hppa ppc ppc64 ~sparc x86"
37 -IUSE="bluetooth doc irda usb"
38 -
39 -BDEPEND="
40 - doc? ( app-doc/doxygen )
41 - virtual/pkgconfig
42 -"
43 -DEPEND="
44 - bluetooth? ( net-wireless/bluez:= )
45 - usb? ( virtual/libusb:= )
46 -"
47 -RDEPEND="${DEPEND}"
48 -
49 -S="${WORKDIR}/${P}-Source"
50 -
51 -PATCHES=( "${FILESDIR}/${P}-version.h.patch" )
52 -DOCS=( AUTHORS ChangeLog README UPGRADING.txt )
53 -
54 -src_configure() {
55 - local mycmakeargs=(
56 - -DBUILD_DOCUMENTATION=$(usex doc)
57 - -DOPENOBEX_BLUETOOTH=$(usex bluetooth)
58 - -DOPENOBEX_IRDA=$(usex irda)
59 - -DOPENOBEX_USB=$(usex usb)
60 - -DCMAKE_INSTALL_DOCDIR="${EPREFIX}/usr/share/doc/${PF}"
61 - )
62 - use usb && mycmakeargs+=( -DCMAKE_INSTALL_UDEVRULESDIR="$(get_udevdir)/rules.d" )
63 -
64 - cmake-utils_src_configure
65 -}