From: "Conrad Kostecki" <conikost@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/cyberjack/
Date: Tue, 15 Oct 2024 22:13:02 +0000 (UTC) [thread overview]
Message-ID: <1729030355.66e2e25be10e9545d086b0f5731c2f3a6df0d544.conikost@gentoo> (raw)
commit: 66e2e25be10e9545d086b0f5731c2f3a6df0d544
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 15 22:12:16 2024 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Tue Oct 15 22:12:35 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66e2e25b
dev-libs/cyberjack: add 3.99.5_p17
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
dev-libs/cyberjack/Manifest | 1 +
dev-libs/cyberjack/cyberjack-3.99.5_p17.ebuild | 93 ++++++++++++++++++++++++++
2 files changed, 94 insertions(+)
diff --git a/dev-libs/cyberjack/Manifest b/dev-libs/cyberjack/Manifest
index bd3b2297ca4b..ff22438ed6e1 100644
--- a/dev-libs/cyberjack/Manifest
+++ b/dev-libs/cyberjack/Manifest
@@ -1 +1,2 @@
DIST pcsc-cyberjack-3.99.5final.SP16.tar.bz2 1787299 BLAKE2B 79345a5c51be99eedb9154737e5d8014c2f6034031ca8acfb419d9fe4ecfda1739a84f1b56e275ee0aabf500b87a789255980ef05f4441f10250c6adceebe86a SHA512 ece83377b935b6f4de065c10b340aea91d69c54ff38f73e058f5e31fd75afe1e2d3fe9be2e1423a5e3a0da17d9afa5db7684e85805af34e751d07188f894b2d7
+DIST pcsc-cyberjack-3.99.5final.SP17.tar.bz2 1734172 BLAKE2B 2175956188f3b1fe46dd3263ade26e460b7b048df26474060ed29229fcea4890a32b92693d626c3d03bf1e863b1aa7cfb8bac872cc7f5b1bb66f6482b7788c2b SHA512 97558e2bf952dfd0cdb7a9354fccd080dd657b4697f134e20674d1f1bef2ce9dd5d304c68eb8b1d536209c14d66cfef8860df8596746d2b40382401dddb1daa0
diff --git a/dev-libs/cyberjack/cyberjack-3.99.5_p17.ebuild b/dev-libs/cyberjack/cyberjack-3.99.5_p17.ebuild
new file mode 100644
index 000000000000..877531a468b2
--- /dev/null
+++ b/dev-libs/cyberjack/cyberjack-3.99.5_p17.ebuild
@@ -0,0 +1,93 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+MY_PN="pcsc-${PN}"
+MY_PV="${PV/_p/final.SP}"
+MY_P="${MY_PN}-${MY_PV}"
+
+inherit autotools toolchain-funcs udev
+
+DESCRIPTION="REINER SCT cyberJack USB chipcard reader user space driver"
+HOMEPAGE="https://www.reiner-sct.de/"
+SRC_URI="http://kernelport.com/reiner-sct/SP$(ver_cut 5)/${MY_P}.tar.bz2"
+S="${WORKDIR}/${MY_P/_/-}"
+
+LICENSE="GPL-2+ LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="threads tools +udev xml"
+
+RDEPEND="
+ sys-apps/pcsc-lite
+ virtual/libusb:1=
+ udev? ( virtual/udev )
+ xml? ( dev-libs/libxml2:2= )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+PATCHES=( "${FILESDIR}"/${PN}-3.99.5_p14-gcc10.patch )
+
+src_prepare() {
+ default
+ eautoreconf
+}
+
+src_configure() {
+ local myeconfargs=(
+ --disable-debug
+ --disable-error-on-warning
+ --disable-hal
+ --disable-mac-universal
+ --disable-mac-arches-i386
+ --disable-mac-arches-x86_64
+ --disable-visibility
+ --enable-nonserial
+ --enable-pcsc
+ --enable-release
+ --enable-warnings
+ --sysconfdir="${EPREFIX}"/etc/cyberjack
+ $(use_enable threads)
+ $(use_enable udev)
+ $(use_enable xml xml2)
+ --with-usbdropdir="$($(tc-getPKG_CONFIG) libpcsclite --variable=usbdropdir)"
+ )
+ econf "${myeconfargs[@]}"
+}
+
+src_compile() {
+ default
+
+ if use tools; then
+ # cjBingo can't be compiled, as it's defines stuff, which got dropped
+ emake -C tools/cjflash
+ emake -C tools/cjgeldkarte
+ fi
+}
+
+src_install() {
+ default
+
+ use tools && dobin tools/cjflash/cjflash tools/cjgeldkarte/cjgeldkarte
+ use udev && udev_newrules "${FILESDIR}"/libifd-cyberjack6.udev-r1 99-cyberjack.rules
+
+ dodoc debian/changelog doc/{LIESMICH,README}.{pdf,txt,xml}
+
+ docinto html
+ dodoc doc/{LIESMICH,README}.html
+
+ docinto source
+ dodoc doc/*.c*
+
+ find "${ED}" -name '*.la' -type f -delete || die
+}
+
+pkg_postinst() {
+ udev_reload
+}
+
+pkg_postrm() {
+ udev_reload
+}
next reply other threads:[~2024-10-15 22:13 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-15 22:13 Conrad Kostecki [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-11-02 12:06 [gentoo-commits] repo/gentoo:master commit in: dev-libs/cyberjack/ Conrad Kostecki
2024-11-02 12:06 Conrad Kostecki
2024-11-02 12:06 Conrad Kostecki
2024-03-03 23:16 Conrad Kostecki
2024-03-03 23:16 Conrad Kostecki
2024-03-03 23:16 Conrad Kostecki
2024-01-21 10:14 David Seifert
2022-05-08 11:35 Conrad Kostecki
2022-02-20 15:11 Conrad Kostecki
2022-02-20 15:11 Conrad Kostecki
2022-02-20 15:11 Conrad Kostecki
2022-01-20 23:56 Conrad Kostecki
2021-06-26 20:26 Conrad Kostecki
2021-06-26 20:04 Conrad Kostecki
2021-06-26 20:03 Conrad Kostecki
2020-08-03 22:15 Conrad Kostecki
2020-06-21 17:52 Conrad Kostecki
2020-06-21 16:54 Agostino Sarubbo
2020-06-20 15:45 Thomas Deutschmann
2020-05-19 21:35 Conrad Kostecki
2020-05-14 22:10 Conrad Kostecki
2019-04-19 0:50 Aaron Bauman
2019-04-18 20:32 Thomas Deutschmann
2019-01-19 6:13 Thomas Deutschmann
2018-11-08 22:49 Patrice Clement
2018-07-09 14:08 Mikle Kolyada
2017-10-02 9:40 Wolfram Schlich
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1729030355.66e2e25be10e9545d086b0f5731c2f3a6df0d544.conikost@gentoo \
--to=conikost@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox