From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D4623139335 for ; Sat, 26 Jun 2021 20:03:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 15072E086F; Sat, 26 Jun 2021 20:03:09 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id F4078E086F for ; Sat, 26 Jun 2021 20:03:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B7A0033BDC5 for ; Sat, 26 Jun 2021 20:03:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 18A4379A for ; Sat, 26 Jun 2021 20:03:06 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1624737776.89c9533411d114066b686a1e07d354da0ce24da7.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/cyberjack/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/cyberjack/cyberjack-3.99.5_p14-r2.ebuild dev-libs/cyberjack/metadata.xml X-VCS-Directories: dev-libs/cyberjack/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 89c9533411d114066b686a1e07d354da0ce24da7 X-VCS-Branch: master Date: Sat, 26 Jun 2021 20:03:06 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: febeee5d-ca04-459f-b91c-7fc74bd69a10 X-Archives-Hash: 080dba58008bd30ca66ad9e22f0d1862 commit: 89c9533411d114066b686a1e07d354da0ce24da7 Author: Conrad Kostecki gentoo org> AuthorDate: Sat Jun 26 20:02:42 2021 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Sat Jun 26 20:02:56 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89c95334 dev-libs/cyberjack: drop usb use flag This package does not compile anymore without usb features. According to upstream, disabling usb it not supported any more, despite an option for disabling being offered. Closes: https://bugs.gentoo.org/798321 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Conrad Kostecki gentoo.org> dev-libs/cyberjack/cyberjack-3.99.5_p14-r2.ebuild | 13 +++++++------ dev-libs/cyberjack/metadata.xml | 1 - 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/dev-libs/cyberjack/cyberjack-3.99.5_p14-r2.ebuild b/dev-libs/cyberjack/cyberjack-3.99.5_p14-r2.ebuild index bb855c3443d..f9851a89a0d 100644 --- a/dev-libs/cyberjack/cyberjack-3.99.5_p14-r2.ebuild +++ b/dev-libs/cyberjack/cyberjack-3.99.5_p14-r2.ebuild @@ -7,20 +7,21 @@ MY_PN="pcsc-${PN}" MY_PV="${PV/_p/final.SP}" MY_P="${MY_PN}_${MY_PV}" -inherit autotools toolchain-funcs udev +inherit autotools flag-o-matic toolchain-funcs udev DESCRIPTION="REINER SCT cyberJack USB chipcard reader user space driver" HOMEPAGE="https://www.reiner-sct.de/" SRC_URI="https://support.reiner-sct.de/downloads/LINUX/V${PV/_p/_SP}/${MY_P}.tar.gz -> ${MY_P}.tar.bz2" +S="${WORKDIR}/${MY_P/_/-}" KEYWORDS="amd64 x86" LICENSE="GPL-2+ LGPL-2.1+" SLOT="0" -IUSE="static-libs threads tools +udev +usb xml" +IUSE="static-libs threads tools +udev xml" RDEPEND=" sys-apps/pcsc-lite - usb? ( virtual/libusb:1 ) + virtual/libusb:1= udev? ( virtual/udev ) xml? ( dev-libs/libxml2:2= ) " @@ -28,8 +29,6 @@ RDEPEND=" DEPEND="${RDEPEND}" BDEPEND="virtual/pkgconfig" -S="${WORKDIR}/${MY_P/_/-}" - PATCHES="${FILESDIR}/${P}-gcc10.patch" src_prepare() { @@ -39,6 +38,8 @@ src_prepare() { } src_configure() { + append-cxxflags -fno-permissive + local myeconfargs=( --disable-debug --disable-error-on-warning @@ -47,6 +48,7 @@ src_configure() { --disable-mac-arches-i386 --disable-mac-arches-x86_64 --disable-visibility + --enable-nonserial --enable-pcsc --enable-release --enable-warnings @@ -54,7 +56,6 @@ src_configure() { $(use_enable static-libs static) $(use_enable threads) $(use_enable udev) - $(use_enable usb nonserial) $(use_enable xml xml2) --with-usbdropdir="$($(tc-getPKG_CONFIG) libpcsclite --variable=usbdropdir)" ) diff --git a/dev-libs/cyberjack/metadata.xml b/dev-libs/cyberjack/metadata.xml index e57eaa0f05c..3deab072070 100644 --- a/dev-libs/cyberjack/metadata.xml +++ b/dev-libs/cyberjack/metadata.xml @@ -12,6 +12,5 @@ Build and install optional management tools. - Enable support for usb based chipcard reader.