summaryrefslogtreecommitdiff
path: root/app-crypt
diff options
context:
space:
mode:
authorBertrand Jacquin <bertrand@jacquin.bzh>2017-08-22 03:58:36 +0100
committerBertrand Jacquin <bertrand@jacquin.bzh>2017-08-22 03:58:36 +0100
commit23e747d0cff931ab87792a4cadaeedf0ca684ddf (patch)
tree417bfa8cb319dcd86f4d308f1b444722bc308973 /app-crypt
parentprofiles/enlightenment/build: Add dev-util/meson to @system set (diff)
downloadportage-23e747d0cff931ab87792a4cadaeedf0ca684ddf.tar.xz
app-crypt/scute: Drop since 1.5.0 is now upstream
Package-Manager: Portage-2.3.6, Repoman-2.3.1
Diffstat (limited to 'app-crypt')
-rw-r--r--app-crypt/scute/files/scute-1.4.0-tests.patch13
-rw-r--r--app-crypt/scute/metadata.xml34
-rw-r--r--app-crypt/scute/scute-9999.ebuild48
3 files changed, 0 insertions, 95 deletions
diff --git a/app-crypt/scute/files/scute-1.4.0-tests.patch b/app-crypt/scute/files/scute-1.4.0-tests.patch
deleted file mode 100644
index f06591f7..00000000
--- a/app-crypt/scute/files/scute-1.4.0-tests.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-Index: scute-1.4.0/tests/Makefile.am
-===================================================================
---- scute-1.4.0.orig/tests/Makefile.am
-+++ scute-1.4.0/tests/Makefile.am
-@@ -35,7 +35,7 @@ TESTS = t-link t-getfunctionlist t-initi
- t-opensession t-closeallsessions t-getsessioninfo \
- t-findobjects t-getattribute t-auth
-
--noinst_PROGRAMS = $(TESTS)
-+check_PROGRAMS = $(TESTS)
-
- INCLUDES = -I$(top_srcdir)/include -I$(top_srcdir)/src
- LDADD = ../src/libscute.la
diff --git a/app-crypt/scute/metadata.xml b/app-crypt/scute/metadata.xml
deleted file mode 100644
index a5c9d6eb..00000000
--- a/app-crypt/scute/metadata.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>lucas.yamanishi@gmail.com</email>
- <name>Lucas Yamanishi</name>
- <description>Proxy maintainer.</description>
- </maintainer>
- <maintainer type="person">
- <email>flameeyes@gentoo.org</email>
- <description>Proxying maintainer.</description>
- </maintainer>
- <maintainer type="project">
- <email>crypto@gentoo.org</email>
- <name>Crypto</name>
- </maintainer>
- <maintainer type="project">
- <email>proxy-maint@gentoo.org</email>
- <name>Proxy Maintainers</name>
- </maintainer>
- <longdescription>
- Scute is a PKCS #11 module that adds support for the OpenPGP
- smartcard card to the Mozilla Network Security Services (NSS).
- </longdescription>
- <upstream>
- <maintainer>
- <email>mb@g10code.de</email>
- <name>Marcus Brinkmann</name>
- </maintainer>
- <changelog>http://git.gnupg.org/cgi-bin/gitweb.cgi?p=scute.git;a=blob_plain;f=ChangeLog;hb=HEAD</changelog>
- <doc lang="en">http://www.scute.org/documentation.xhtml</doc>
- <bugs-to>https://bugs.g10code.com/gnupg/</bugs-to>
- </upstream>
-</pkgmetadata>
diff --git a/app-crypt/scute/scute-9999.ebuild b/app-crypt/scute/scute-9999.ebuild
deleted file mode 100644
index 0a355768..00000000
--- a/app-crypt/scute/scute-9999.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit autotools eutils libtool multilib git-r3
-
-DESCRIPTION="A PKCS #11 module for OpenPGP smartcards"
-HOMEPAGE="http://www.scute.org/"
-EGIT_REPO_URI="git://git.gnupg.org/scute.git"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-# configure script try to check the version of gpgsm and gpg-agent when
-# non-crosscompiling so we need to have them as build-time dependency as
-# well as runtime. Require a version of gnupg that is patched to have
-# gpgsm-gencert.sh working (as that's what the documentation describe).
-DEPEND="
- >=dev-libs/libgpg-error-1.14
- >=dev-libs/libassuan-2.0.0
- >=app-crypt/pinentry-0.7.0
- >=app-crypt/gnupg-2.0.17-r1[smartcard]"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
- # Don't build tests during src_compile.
- epatch "${FILESDIR}"/scute-1.4.0-tests.patch
-
- eautoreconf
- elibtoolize
-}
-
-src_configure() {
- econf \
- --enable-maintainer-mode \
- --libdir=/usr/$(get_libdir)/pkcs11 \
- --with-gpgsm=/usr/bin/gpgsm \
- --with-gpg-agent=/usr/bin/gpg-agent
-}
-
-src_install() {
- emake DESTDIR="${ED}" install
- find "${ED}" -name '*.la' -delete
- dodoc AUTHORS ChangeLog NEWS README TODO
-}