# Copyright 1999-2014 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="http://clamtk.sourceforge.net/" SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" LICENSE="Artistic GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" LANGS=" af ar ast bg bs ca cs da de el en_GB es eu fi fo fr gl he hr hu id it ja ko lt mr ms nb nl nn pl pt pt_BR ro ru sk sl sv te th tr ug uk uz zh_CN zh_TW" IUSE="nls" for i in ${LANGS}; do IUSE="${IUSE} linguas_${i}" done DEPEND="" RDEPEND=" >=app-antivirus/clamav-0.95 >=dev-perl/gtk2-perl-1.140 dev-perl/Date-Calc dev-perl/File-Find-Rule dev-perl/libwww-perl dev-util/desktop-file-utils virtual/udev nls? ( dev-perl/Locale-gettext )" src_unpack() { unpack ${A} cd "${S}" || die gunzip ${PN}.1.gz || die "gunzip failed" } src_install() { dobin ${PN} doicon images/${PN}.png domenu ${PN}.desktop dodoc CHANGES README doman ${PN}.1 # The custom Perl modules perlinfo insinto ${VENDOR_LIB}/ClamTk doins lib/*.pm use nls && domo po/*.mo }