summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Palimaka <kensington@gentoo.org>2014-03-22 19:25:13 +0000
committerMichael Palimaka <kensington@gentoo.org>2014-03-22 19:25:13 +0000
commit3ca0ccd0a3342acd46b37f16cee9efa880ca07c0 (patch)
treee87d1318cd42a97cc5c2ff2927686515c2e5cb80 /net-analyzer
parentRemove old. (diff)
downloadgentoo-2-3ca0ccd0a3342acd46b37f16cee9efa880ca07c0.tar.gz
gentoo-2-3ca0ccd0a3342acd46b37f16cee9efa880ca07c0.tar.bz2
gentoo-2-3ca0ccd0a3342acd46b37f16cee9efa880ca07c0.zip
Remove old.
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0x06B1F38DCA45A1EC!)
Diffstat (limited to 'net-analyzer')
-rw-r--r--net-analyzer/mk-livestatus/ChangeLog6
-rw-r--r--net-analyzer/mk-livestatus/mk-livestatus-1.2.0_p2.ebuild119
2 files changed, 5 insertions, 120 deletions
diff --git a/net-analyzer/mk-livestatus/ChangeLog b/net-analyzer/mk-livestatus/ChangeLog
index 5265050a394a..63ec1cd0194f 100644
--- a/net-analyzer/mk-livestatus/ChangeLog
+++ b/net-analyzer/mk-livestatus/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-analyzer/mk-livestatus
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/mk-livestatus/ChangeLog,v 1.9 2014/02/22 14:29:48 idl0r Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/mk-livestatus/ChangeLog,v 1.10 2014/03/22 19:25:13 kensington Exp $
+
+ 22 Mar 2014; Michael Palimaka <kensington@gentoo.org>
+ -mk-livestatus-1.2.0_p2.ebuild:
+ Remove old.
22 Feb 2014; Christian Ruppert <idl0r@gentoo.org> metadata.xml:
Remove myself as maintainer
diff --git a/net-analyzer/mk-livestatus/mk-livestatus-1.2.0_p2.ebuild b/net-analyzer/mk-livestatus/mk-livestatus-1.2.0_p2.ebuild
deleted file mode 100644
index 6e2fb6f5600b..000000000000
--- a/net-analyzer/mk-livestatus/mk-livestatus-1.2.0_p2.ebuild
+++ /dev/null
@@ -1,119 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/mk-livestatus/mk-livestatus-1.2.0_p2.ebuild,v 1.2 2012/12/22 18:24:19 ago Exp $
-
-EAPI=3
-
-GENTOO_DEPEND_ON_PERL=no
-PERL_EXPORT_PHASE_FUNCTIONS=no
-
-MY_PV="${PV/_p/p}"
-MY_P="${PN}-${MY_PV}"
-
-inherit perl-module python eutils
-
-DESCRIPTION="Nagios/Icinga event broker module that allows quick/direct access to your status data"
-HOMEPAGE="http://mathias-kettner.de/checkmk_livestatus.html"
-SRC_URI="http://mathias-kettner.de/download/${MY_P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="examples perl python test"
-
-RDEPEND="perl? (
- dev-lang/perl
- virtual/perl-Digest-MD5
- virtual/perl-Thread-Queue
- virtual/perl-Time-HiRes
- virtual/perl-Encode
- dev-perl/JSON-XS
- )"
-DEPEND="${RDEPEND}
- perl? (
- dev-perl/Module-Install
- virtual/perl-ExtUtils-MakeMaker
- virtual/perl-File-Path
- virtual/perl-File-Spec
- virtual/perl-File-Temp
- test? (
- dev-perl/File-Copy-Recursive
- dev-perl/Test-Pod
- dev-perl/Test-Perl-Critic
- dev-perl/Test-Pod-Coverage
- dev-perl/Perl-Critic
- dev-perl/Perl-Critic-Policy-Dynamic-NoIndirect
- dev-perl/Perl-Critic-Deprecated
- dev-perl/Perl-Critic-Nits
- )
- )"
-
-# For perl test
-SRC_TEST="parallel"
-
-S="${WORKDIR}/${MY_P}"
-
-src_prepare() {
- # Use system Module::Install instead, it will be copied to $S by
- # Module::install itself.
- rm -rf api/perl/inc
-
- if use perl; then
- perl-module_src_prepare
- fi
-
- sed -i -e 's:$(LDFLAGS) -s:$(LDFLAGS):' src/Makefile.in || die
-}
-
-src_configure() {
- econf
-
- if use perl; then
- cd api/perl/
- perl-module_src_configure
- fi
-}
-
-src_compile() {
- emake || die
-
- if use perl; then
- cd api/perl
- perl-module_src_compile
- fi
-}
-
-src_test() {
- if use perl; then
- cd api/perl
-
- export TEST_AUTHOR="Test Author"
- perl-module_src_test
- fi
-}
-
-src_install() {
- emake -C src/ DESTDIR="${D}" install-binPROGRAMS install-data-local || die
-
- if use perl; then
- cd api/perl
- perl-module_src_install
- cd "${S}"
-
- if use examples; then
- docinto examples/
- dodoc api/perl/examples/dump.pl || die
- fi
- fi
- if use python; then
- insinto $(python_get_sitedir)
- doins api/python/livestatus.py || die
-
- if use examples; then
- newdoc api/python/README README.python || die
-
- docinto examples/
- dodoc api/python/{example,example_multisite,make_nagvis_map}.py || die
- fi
- fi
-}