summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorConrad Kostecki <conikost@gentoo.org>2020-09-18 11:20:21 +0200
committerConrad Kostecki <conikost@gentoo.org>2020-09-18 11:20:44 +0200
commit68891fc192d364f324ae8188805776cdae088d85 (patch)
tree229c77165f65dcd12504a41e6a27844cb13d03ad /www-apps/cgp
parentdev-libs/libhid: drop old version (diff)
downloadgentoo-68891fc192d364f324ae8188805776cdae088d85.tar.gz
gentoo-68891fc192d364f324ae8188805776cdae088d85.tar.bz2
gentoo-68891fc192d364f324ae8188805776cdae088d85.zip
www-apps/cgp: drop old version
Package-Manager: Portage-3.0.6, Repoman-3.0.1 Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'www-apps/cgp')
-rw-r--r--www-apps/cgp/Manifest1
-rw-r--r--www-apps/cgp/cgp-1_p20181209.ebuild54
2 files changed, 0 insertions, 55 deletions
diff --git a/www-apps/cgp/Manifest b/www-apps/cgp/Manifest
index 55f2173885b8..c9eba35017fc 100644
--- a/www-apps/cgp/Manifest
+++ b/www-apps/cgp/Manifest
@@ -1,2 +1 @@
-DIST cgp-1_p20181209.tar.gz 139556 BLAKE2B 0a79ff1974b0ae50db5582121c4fdcc2db0b89ef11ecb001dfa525dd753481f0a454e424d17f24b142fd116a9ea2eeb4ba1dade6f2ffadd63943e5c065323224 SHA512 fcbf81fca2bb14ed143ea414c2f11fe09f4594891507a1ad08482720b104ec62c9986ce25b127d45a7962a8b3db54293a6775dc2359bde41f19b5419606b51eb
DIST cgp-1_p20190510.tar.gz 139241 BLAKE2B 663d8b8f6e144b4b28ca36674f4f0b68537dba36aa481faa5d0b5ff1ea11933018b91e94750c15833e3bc9b4ce6604898276e84ff3d3d649ebff11089f6328e0 SHA512 3a6d6af25db00f8d80b0e0aa6e19763da8492d0e1cb421474bf31c325ff37357b9bf88af70459e669c4e9f740dd1a547421fcb3184526d9f3ba4333eb57fec8f
diff --git a/www-apps/cgp/cgp-1_p20181209.ebuild b/www-apps/cgp/cgp-1_p20181209.ebuild
deleted file mode 100644
index fa08218c3b69..000000000000
--- a/www-apps/cgp/cgp-1_p20181209.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit webapp
-
-MY_PN="${PN^^}"
-MY_PV="72acfcbffd51da1e77a56517618da68252485ed6"
-
-DESCRIPTION="A graphical web-based front-end for visualizing RRD collected by collectd"
-HOMEPAGE="https://github.com/pommi/CGP"
-SRC_URI="https://github.com/pommi/${MY_PN}/archive/${MY_PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="CC-BY-2.0 GPL-2+ GPL-3 MIT"
-KEYWORDS="amd64 x86"
-
-RDEPEND="
- dev-lang/php[json]
- net-analyzer/rrdtool[graph]
- virtual/httpd-php
-"
-
-need_httpd_cgi
-
-S="${WORKDIR}/${MY_PN}-${MY_PV}"
-
-DOCS=( "README.md" "doc/CHANGELOG" "doc/nginx.conf" )
-
-src_install() {
- webapp_src_preinst
-
- einstalldocs
-
- # Since the docs are already installed, remove them from htdocs
- # The file doc/CHANGELOG is needed, as CGP reads from there it's version
- rm -r .gitignore doc/LICENSE doc/nginx.conf || die
-
- insinto "${MY_HTDOCSDIR}"
- doins -r .
-
- webapp_src_install
-}
-
-pkg_postinst() {
- webapp_pkg_postinst
-
- einfo "The command shell_exec must not be disabled"
- einfo "through the disable_functions php.ini directive."
- einfo "It must allow execution of the rrdtool program."
- einfo ""
- einfo "An configuration file for www-servers/nginx"
- einfo "has been installed as an example."
-}