Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/cacti/
Date: Mon, 17 May 2021 02:59:33
Message-Id: 1621219731.43305d972e598c817b9038672cd77277166eb0ca.sam@gentoo
1 commit: 43305d972e598c817b9038672cd77277166eb0ca
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 17 02:48:51 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Mon May 17 02:48:51 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43305d97
7
8 net-analyzer/cacti: add 1.2.17
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 net-analyzer/cacti/Manifest | 1 +
13 net-analyzer/cacti/cacti-1.2.17.ebuild | 49 ++++++++++++++++++++++++++++++++++
14 2 files changed, 50 insertions(+)
15
16 diff --git a/net-analyzer/cacti/Manifest b/net-analyzer/cacti/Manifest
17 index 1d34b23f3ee..8d2399500a5 100644
18 --- a/net-analyzer/cacti/Manifest
19 +++ b/net-analyzer/cacti/Manifest
20 @@ -1 +1,2 @@
21 DIST cacti-1.2.16.tar.gz 29197220 BLAKE2B 19939d0ff79c895b481aeb7ffec8331d8b9c10a6b7e0dbda6532e06ef0322f21cf02f4bf53a9522e1f672dd04b343f5550e2f34f08b3af2050e1f72465cffc43 SHA512 fe22acf4dea8ab6ec79825d66a84ad4c43fdce2815e7327536d182bc04400ed7b1d268209bbbca8b307c4779ee5bf7369a617ec1f052d8805757c2ca9b30cc35
22 +DIST cacti-1.2.17.tar.gz 38344112 BLAKE2B e555fc99560d10e94181c38b50e6f839532fb3dc66ff688b36a7efd10c15304e7636c9b4b483763fcea751317bcb283bb2bd8f813d5759c98aed6bbf02fd256a SHA512 94ae75b2494a91c536906c7bbeaa948d16c7ad96ed3a62c1eb21175f92c01787c6849960bbc791e04b3df46edbfd3cd787eb825bb423ce0814c0904edb2c915d
23
24 diff --git a/net-analyzer/cacti/cacti-1.2.17.ebuild b/net-analyzer/cacti/cacti-1.2.17.ebuild
25 new file mode 100644
26 index 00000000000..1dfa8747632
27 --- /dev/null
28 +++ b/net-analyzer/cacti/cacti-1.2.17.ebuild
29 @@ -0,0 +1,49 @@
30 +# Copyright 1999-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +inherit edos2unix webapp
36 +
37 +# Support for _p* in version.
38 +MY_P=${P/_p*/}
39 +
40 +DESCRIPTION="Cacti is a complete frontend to rrdtool"
41 +HOMEPAGE="https://www.cacti.net/"
42 +SRC_URI="https://www.cacti.net/downloads/${MY_P}.tar.gz"
43 +
44 +LICENSE="GPL-2"
45 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86"
46 +IUSE="snmp doc"
47 +
48 +need_httpd
49 +
50 +RDEPEND="
51 + dev-lang/php[cli,mysql,pdo,session,sockets,xml]
52 + dev-php/adodb
53 + net-analyzer/rrdtool[graph]
54 + virtual/cron
55 + snmp? ( >=net-analyzer/net-snmp-5.2.0 )
56 +"
57 +
58 +src_compile() { :; }
59 +
60 +src_install() {
61 + dodoc CHANGELOG
62 + dodoc -r docs
63 + mv docs .. || die
64 +
65 + webapp_src_preinst
66 +
67 + edos2unix `find -type f -name '*.php'`
68 +
69 + dodir ${MY_HTDOCSDIR}
70 + cp -r . "${ED}"${MY_HTDOCSDIR}
71 +
72 + webapp_serverowned ${MY_HTDOCSDIR}/rra
73 + webapp_serverowned ${MY_HTDOCSDIR}/log
74 + webapp_configfile ${MY_HTDOCSDIR}/include/config.php
75 + webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt
76 +
77 + webapp_src_install
78 +}