2013-08-30 00:24:44 +04:00
|
|
|
# Copyright 1999-2013 Gentoo Foundation
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
EAPI=5
|
|
|
|
|
|
|
|
inherit perl-module
|
|
|
|
|
|
|
|
DESCRIPTION="random signature maker"
|
|
|
|
HOMEPAGE="http://www.earth.li/projectpurple/progs/htag.html"
|
|
|
|
SRC_URI="http://www.earth.li/projectpurple/files/${P}.tar.gz"
|
|
|
|
|
|
|
|
LICENSE="GPL-2"
|
|
|
|
SLOT="0"
|
2013-12-26 11:28:15 +04:00
|
|
|
KEYWORDS="amd64 ~mips ppc ~sparc x86"
|
2013-08-30 00:24:44 +04:00
|
|
|
IUSE=""
|
|
|
|
|
|
|
|
src_install() {
|
2013-11-24 01:21:01 +04:00
|
|
|
newbin htag.pl htag
|
2013-08-30 00:24:44 +04:00
|
|
|
# establish "${D}"usr/share/doc/${PF}, mv 2 folders in 1 line
|
|
|
|
perl-module_src_install
|
2013-11-24 01:21:01 +04:00
|
|
|
mv ./{example-scripts,docs/sample-config/} "${ED}"usr/share/doc/${PF}/ || die
|
2013-08-30 00:24:44 +04:00
|
|
|
dodoc docs/{MACRO_DESCRIPTION,README}
|
|
|
|
|
|
|
|
insinto /usr/share/htag/plugins
|
2013-11-24 01:21:01 +04:00
|
|
|
doins plugins/*
|
2013-08-30 00:24:44 +04:00
|
|
|
|
|
|
|
insinto "${VENDOR_LIB}"
|
2013-11-24 01:21:01 +04:00
|
|
|
doins HtagPlugin/HtagPlugin.pm
|
2013-08-30 00:24:44 +04:00
|
|
|
}
|