From 7cb1a206e3da6bc11d280f1a12c472e30b2a66ee Mon Sep 17 00:00:00 2001 From: Samuel Bernardo Date: Fri, 14 Jul 2023 11:38:14 +0100 Subject: Remove deprecated versions of cartao-cidadao-svn Signed-off-by: Samuel Bernardo --- .../cartao-cidadao-svn-2.4.6.ebuild | 88 ---------------------- .../cartao-cidadao-svn-3.0.13-r1.ebuild | 81 -------------------- 2 files changed, 169 deletions(-) delete mode 100644 app-misc/cartao-cidadao-svn/cartao-cidadao-svn-2.4.6.ebuild delete mode 100644 app-misc/cartao-cidadao-svn/cartao-cidadao-svn-3.0.13-r1.ebuild diff --git a/app-misc/cartao-cidadao-svn/cartao-cidadao-svn-2.4.6.ebuild b/app-misc/cartao-cidadao-svn/cartao-cidadao-svn-2.4.6.ebuild deleted file mode 100644 index b6a38ae..0000000 --- a/app-misc/cartao-cidadao-svn/cartao-cidadao-svn-2.4.6.ebuild +++ /dev/null @@ -1,88 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -DESCRIPTION="Tools for authenticating with https://www.autenticacao.gov.pt/" -HOMEPAGE="https://www.autenticacao.gov.pt/" - -inherit subversion unpacker eutils - -#SRC_URI="https://autenticacao.gov.pt/fa/ajuda/software/autenticacao.gov.pt.deb" -ESVN_REPO_URI="https://svn.gov.pt/projects/ccidadao/repository/middleware-offline/tags/version${PV}-5238/source/_src/eidmw" -ESVN_PATCHES="${FILESDIR}/*.patch" - -LICENSE="EUPL" -SLOT="2" -KEYWORDS="~amd64 ~x86" -IUSE="+java" - -DEPEND="sys-apps/pcsc-lite - sys-apps/pcsc-tools - app-crypt/ccid - >=dev-qt/qtcore-5 - dev-qt/qtchooser - dev-libs/xml-security-c - dev-libs/xerces-c - app-text/poppler - java? ( >=virtual/jdk-1.8:1.8 || ( >=dev-java/oracle-jdk-bin-1.8:1.8 dev-java/icedtea dev-java/icedtea-bin ) )" -RDEPEND="${DEPEND}" - -PATCHES=( - "${FILESDIR}/qmake.patch" - ) - -src_unpack() { - default - subversion_src_unpack - #if use java; then unpack_deb ${A}; fi - if use java; then - unpack_deb ${FILESDIR}/autenticacao.gov.pt-${PV}.deb - unpack ${FILESDIR}/extras-${PV}.tar.gz - fi -} - -src_prepare() { - if declare -p PATCHES | grep -q "^declare -a "; then - [[ -n ${PATCHES[@]} ]] && eapply "${PATCHES[@]}" || die "Error: failed to apply ebuild patches ${PATCHES}!" - else - [[ -n ${PATCHES} ]] && eapply ${PATCHES} || die "Error: failed to apply ebuild patches ${PATCHES}!" - fi - eapply_user -} - -src_configure() { - # configure - if [[ -x ${ECONF_SOURCE:-.}/configure ]] ; then - ${ECONF_SOURCE:-.}/configure || die "Error: econf failed" - elif [[ -f ${ECONF_SOURCE:-.}/configure ]] ; then - fperms 755 ${ECONF_SOURCE:-.}/configure - ${ECONF_SOURCE:-.}/configure || die "Error: econf failed" - else - die "Error: ${ECONF_SOURCE:-.}/configure doesn't exists" - fi -} - -src_compile() { - # make - if [ -f Makefile ] || [ -f GNUmakefile ] || [ -f makefile ]; then - emake || die "Error: emake failed" - else - die "Error: compile phase failed because is missing Makefile!" - fi -} - -src_install() { - # make install - if [[ -f Makefile ]] || [[ -f GNUmakefile ]] || [[ -f makefile ]] ; then - emake INSTALL_ROOT="${D}" DESTDIR="${D}" install || die "Error: emake install failed" - else - die "Error: install phase failed because is missing Makefile!" - fi - - # deb install - if use java; then - cp -R "${WORKDIR}/usr" "${D}" || die "Error: copy files in install phase failed!" - fi -} - diff --git a/app-misc/cartao-cidadao-svn/cartao-cidadao-svn-3.0.13-r1.ebuild b/app-misc/cartao-cidadao-svn/cartao-cidadao-svn-3.0.13-r1.ebuild deleted file mode 100644 index 0535804..0000000 --- a/app-misc/cartao-cidadao-svn/cartao-cidadao-svn-3.0.13-r1.ebuild +++ /dev/null @@ -1,81 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -DESCRIPTION="Tools for authenticating with https://www.autenticacao.gov.pt/" -HOMEPAGE="https://svn.gov.pt/projects/ccidadao" - -inherit subversion unpacker eutils - -ESVN_REPO_URI="https://svn.gov.pt/projects/ccidadao/repository/middleware-offline/tags/version${PV}/_src/eidmw" -ESVN_PATCHES="${FILESDIR}/*.patch" - -LICENSE="EUPL" -SLOT="3" -KEYWORDS="~amd64 ~x86" -IUSE="" - -DEPEND=">=sys-apps/pcsc-lite-1.5.0 - sys-apps/pcsc-tools - app-crypt/ccid - >=dev-qt/qtcore-5 - dev-qt/qtchooser - dev-libs/xml-security-c - dev-libs/xerces-c - dev-vcs/subversion - dev-libs/openssl - media-libs/jasper - app-text/poppler" -RDEPEND="${DEPEND} - !app-misc/autenticacao-gov-pt:2" - -PATCHES=( - "${FILESDIR}/qmake.patch" - "${FILESDIR}/dlgQndPinpadInfo.cpp.patch" - "${FILESDIR}/XadesSignature.cpp.patch" - ) - -src_unpack() { - default - subversion_src_unpack - unpack ${FILESDIR}/extras-${PV}.tar.gz -} - -src_prepare() { - default -} - -src_configure() { - # configure - if [[ -x ${ECONF_SOURCE:-.}/configure ]] ; then - ${ECONF_SOURCE:-.}/configure || die "Error: econf failed" - elif [[ -f ${ECONF_SOURCE:-.}/configure ]] ; then - fperms 755 ${ECONF_SOURCE:-.}/configure - ${ECONF_SOURCE:-.}/configure || die "Error: econf failed" - else - die "Error: ${ECONF_SOURCE:-.}/configure doesn't exists" - fi -} - -src_compile() { - # make - if [ -f Makefile ] || [ -f GNUmakefile ] || [ -f makefile ]; then - emake || die "Error: emake failed" - else - die "Error: compile phase failed because is missing Makefile!" - fi -} - -src_install() { - # make install - if [[ -f Makefile ]] || [[ -f GNUmakefile ]] || [[ -f makefile ]] ; then - emake INSTALL_ROOT="${D}" DESTDIR="${D}" install || die "Error: emake install failed" - else - die "Error: install phase failed because is missing Makefile!" - fi - - # extras install - cp -R "${WORKDIR}/usr" "${D}" || die "Error: copy files in install phase failed!" -} - -- cgit v1.2.3-65-gdbad