summaryrefslogtreecommitdiff
path: root/app-antivirus
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2019-04-28 11:37:29 +0100
committerV3n3RiX <venerix@redcorelinux.org>2019-04-28 11:37:29 +0100
commit6ee481fcf9aa44215077246db69a64aca6c0581f (patch)
tree1e00f83b6f8b9d4b0b6e02118cf239ab601f1b66 /app-antivirus
parent6bedfa6006a59fd71e815208483e7cf49b24b144 (diff)
start some cleaning
Diffstat (limited to 'app-antivirus')
-rw-r--r--app-antivirus/clamtk/Manifest1
-rw-r--r--app-antivirus/clamtk/clamtk-5.20.ebuild62
2 files changed, 0 insertions, 63 deletions
diff --git a/app-antivirus/clamtk/Manifest b/app-antivirus/clamtk/Manifest
deleted file mode 100644
index 8dd7c825..00000000
--- a/app-antivirus/clamtk/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST clamtk-5.20.tar.gz 897173 BLAKE2B f0320ce9fc39525e9dfaf3afc553ae612c27a708724b8100629becaab91779e9395678f13ba6a2d1b6fbb0dcda4846240632a2f87046d7e3fc6e483997fb5cc2 SHA512 fb6a09c16c622f3161bcc9384f4cc9fa7bdf0609c44e19afcbec980d5636670a7e1adb232bac980100d9ed50e2b668aa71633a035a6faa5b113157d09c4f11bb
diff --git a/app-antivirus/clamtk/clamtk-5.20.ebuild b/app-antivirus/clamtk/clamtk-5.20.ebuild
deleted file mode 100644
index d3968fd0..00000000
--- a/app-antivirus/clamtk/clamtk-5.20.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=5
-
-inherit eutils perl-module
-
-DESCRIPTION="A frontend for ClamAV using Gtk2-perl"
-HOMEPAGE="https://bitbucket.org/dave_theunsub/clamtk/"
-SRC_URI="https://bitbucket.org/dave_theunsub/clamtk/downloads/${P}.tar.gz"
-
-LICENSE="|| ( Artistic GPL-1+ )"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-LANGS="af ar ast az bg bs ca cs da de el_GR en_AU en_CA en_GB es eu fi fo fr ga gl he hr hu id it ja km ko lo lt lv mr ms nb nl_BE nl nn pa pl pt_BR pt ro ru sk sl sr@latin sv ta te th tr ug uk uz zh_CN zh_TW"
-IUSE=""
-for i in ${LANGS}; do
- IUSE="${IUSE} linguas_${i}"
-done
-
-DEPEND=""
-RDEPEND="
- >=app-antivirus/clamav-0.95
- dev-perl/JSON
- dev-perl/LWP-Protocol-https
- dev-perl/Locale-gettext
- dev-perl/Text-CSV
- dev-perl/glib-perl
- dev-perl/Gtk2
- dev-perl/libwww-perl
- virtual/perl-Digest-SHA
- virtual/perl-MIME-Base64
- virtual/perl-Time-Piece
-"
-
-src_unpack() {
- unpack ${A}
- cd "${S}" || die "cd failed"
- gunzip ${PN}.1.gz || die "gunzip failed"
-}
-
-src_install() {
- dobin ${PN}
-
- doicon images/* || die "doicon failed"
- domenu ${PN}.desktop || die "domenu failed"
-
- dodoc CHANGES README DISCLAIMER
- doman ${PN}.1
-
- # The custom Perl modules
- perl_set_version
- insinto "${VENDOR_LIB}/ClamTk"
- doins lib/*.pm
-
- local l
- for l in ${LANGS}; do
- use "linguas_${l}" && domo "po/${l}.mo"
- done
-}