summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2021-03-17 11:46:04 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2021-03-17 11:48:36 +0100
commit58b1c97e7895a64426d44f9d32a2a3e4fb68608f (patch)
tree51c00173b4bea04f8971e362111a7b128353cc38
parentmedia-fonts/powerline-symbols: Drop 20150224, EAPI5-- (diff)
downloadgentoo-58b1c97e7895a64426d44f9d32a2a3e4fb68608f.tar.gz
gentoo-58b1c97e7895a64426d44f9d32a2a3e4fb68608f.tar.bz2
gentoo-58b1c97e7895a64426d44f9d32a2a3e4fb68608f.zip
sys-auth/otpcalc: Drop 0.97-r8
Closes: https://bugs.gentoo.org/776400 Package-Manager: Portage-3.0.17, Repoman-3.0.2 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
-rw-r--r--sys-auth/otpcalc/Manifest2
-rw-r--r--sys-auth/otpcalc/files/otpcalc.desktop8
-rw-r--r--sys-auth/otpcalc/otpcalc-0.97-r8.ebuild49
3 files changed, 0 insertions, 59 deletions
diff --git a/sys-auth/otpcalc/Manifest b/sys-auth/otpcalc/Manifest
index 656180c563d9..fe1f29891541 100644
--- a/sys-auth/otpcalc/Manifest
+++ b/sys-auth/otpcalc/Manifest
@@ -1,3 +1 @@
-DIST otpCalc-0.97.tar.gz 123704 BLAKE2B 197dd2dafa634a2049ec7355e89bfe3a7fb2792560c133509477d073b73d754f9a1dc5c634010db48118c486dedc4933114a5e93671fbb27f3fa4a4a3140fad1 SHA512 5d22bd01fe90b32801d6f1c5ac3105036c14ac8197dda3c8454974ec72830a5f8cd693bd0520a51defdb0a7c7703483770410ba560436168826f8b6133a2524f
-DIST otpcalc-0.97-patches-1.tar.xz 4384 BLAKE2B 3bdf043c6b0101f4c28bd90a2c7da997e64e9a794d517484e08809d47f46feacfb764ec76f58c205e71dfaef6c25868bcaa4e5fe54bd45c0d7d5958c83ab488e SHA512 950b2df68acf377750710b0b9578b431b4aa745414a494b87062fffa559485cc4117bb08e68f22a79781047cfd2682082e30b1db81cddc5a3448bc285c5553bf
DIST otpcalc-0.97.9.tar.bz2 57967 BLAKE2B c4962944808a526f18554e8dd6c3fd3777097c6f96d7a9a998df664697eedd848a3bed8196abdef0edfde155958a498392412b3633c50af91feb3335e5a1bd20 SHA512 f06bb54f38c5b63a1f63055a83e1f3e6bd3a0578458b3c1b8903566441eaaa9ed29c88d929ffdccba1f5ff5e9e5f5f0fc64a73e699154e502ca1d608a7c6d4b8
diff --git a/sys-auth/otpcalc/files/otpcalc.desktop b/sys-auth/otpcalc/files/otpcalc.desktop
deleted file mode 100644
index 25c84065238f..000000000000
--- a/sys-auth/otpcalc/files/otpcalc.desktop
+++ /dev/null
@@ -1,8 +0,0 @@
-[Desktop Entry]
-Type=Application
-Version=1.0
-Name=otpCalc
-Comment=One Time Password and S/Key calculator
-Icon=dialog-password
-Exec=otpCalc
-Categories=Utility;GTK;System;Security;
diff --git a/sys-auth/otpcalc/otpcalc-0.97-r8.ebuild b/sys-auth/otpcalc/otpcalc-0.97-r8.ebuild
deleted file mode 100644
index 53da607dd200..000000000000
--- a/sys-auth/otpcalc/otpcalc-0.97-r8.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit toolchain-funcs
-
-DESCRIPTION="A One Time Password and S/Key calculator for X"
-HOMEPAGE="http://www.killa.net/infosec/otpCalc/"
-SRC_URI="http://www.killa.net/infosec/otpCalc/otpCalc-${PV}.tar.gz
- https://dev.gentoo.org/~ulm/distfiles/${P}-patches-1.tar.xz"
-
-LICENSE="GPL-2+" # bundled crypto functions are not used
-SLOT="0"
-KEYWORDS="~alpha amd64 ppc sparc x86"
-
-RDEPEND="x11-libs/gtk+:2
- dev-libs/openssl:0="
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-S="${WORKDIR}/otpCalc-${PV}"
-
-src_prepare() {
- eapply ../patch
- eapply_user
-
- # override hardcoded FLAGS
- sed -i \
- -e 's:$(CC) $(CFLAGS) $^:$(CC) $(LDFLAGS) $(CFLAGS) $^:' \
- -e "s#-s -O3#${CFLAGS}#g" \
- Makefile.in || die
-
- tc-export CC
-}
-
-src_compile() {
- emake otpCalc otpCalc.1
-}
-
-src_install() {
- dobin otpCalc
- dosym otpCalc /usr/bin/otpcalc
- doman otpCalc.1
- newman - otpcalc.1 <<< ".so man1/otpCalc.1"
- insinto /usr/share/applications
- doins "${FILESDIR}/${PN}.desktop"
- dodoc BUGS ChangeLog TODO
-}