mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-22 14:51:14 +02:00
59 lines
1.2 KiB
Bash
59 lines
1.2 KiB
Bash
#Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: $
|
|
#Thank You to Zero_Chaos for the encouragement & Arfrever for unfucking my
|
|
#fuckery
|
|
|
|
EAPI="4"
|
|
PYTHON_DEPEND="2"
|
|
SUPPORT_PYTHON_ABIS="1"
|
|
RESTRICT_PYTHON_ABIS="3.*"
|
|
|
|
inherit python git-2
|
|
|
|
DESCRIPTION="Wordpress finger printing tool, retrieve information about the plugins and versions installed"
|
|
HOMEPAGE="http://www.iniqua.com/labs/plecost/"
|
|
SRC_URI=""
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE=""
|
|
|
|
DEPEND="dev-python/beautifulsoup:python-2"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
EGIT_REPO_URI="https://code.google.com/p/plecost/"
|
|
EGIT_PROJECT="git/"
|
|
|
|
src_prepare() {
|
|
# Delete internal copy of dev-python/beautifulsoup.
|
|
rm -f xgoogle/BeautifulSoup.py
|
|
}
|
|
|
|
src_install() {
|
|
installation() {
|
|
mkdir -p "${T}/images/${PYTHON_ABI}${EPREFIX}/usr/bin"
|
|
cp plecost.py "${T}/images/${PYTHON_ABI}${EPREFIX}/usr/bin/plecost"
|
|
|
|
insinto $(python_get_sitedir)
|
|
doins -r xgoogle
|
|
}
|
|
|
|
python_execute_function installation
|
|
python_merge_intermediate_installation_images "${T}/images"
|
|
|
|
# wordpress plugin list
|
|
insinto /usr/share/plecost
|
|
doins wp_plugin_list.txt
|
|
|
|
dodoc README CVE.dat
|
|
}
|
|
|
|
pkg_postinst(){
|
|
python_mod_optimize xgoogle
|
|
}
|
|
|
|
pkg_postrm(){
|
|
python_mod_cleanup xgoogle
|
|
}
|