public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/betagarden:master commit in: net-analyzer/splunk/, net-analyzer/splunk/files/
@ 2011-03-29 16:37 Benedikt Boehm
  0 siblings, 0 replies; only message in thread
From: Benedikt Boehm @ 2011-03-29 16:37 UTC (permalink / raw
  To: gentoo-commits

commit:     5106b3d2a9a02c8a4ef9d9b5ecb8fccacb7d15bc
Author:     Benedikt Böhm <bb <AT> xnull <DOT> de>
AuthorDate: Tue Mar 29 16:37:22 2011 +0000
Commit:     Benedikt Boehm <hollow <AT> gentoo <DOT> org>
CommitDate: Tue Mar 29 16:37:22 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/betagarden.git;a=commit;h=5106b3d2

remove broken net-analyzer/splunk ebuild

---
 net-analyzer/splunk/files/splunk.initd        |   21 --------
 net-analyzer/splunk/splunk-4.1.5.85165.ebuild |   57 ----------------------
 net-analyzer/splunk/splunk-4.2.ebuild         |   63 -------------------------
 3 files changed, 0 insertions(+), 141 deletions(-)

diff --git a/net-analyzer/splunk/files/splunk.initd b/net-analyzer/splunk/files/splunk.initd
deleted file mode 100644
index d654c0b..0000000
--- a/net-analyzer/splunk/files/splunk.initd
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-depend() {
-	after logger
-	use net
-}
-
-start() {
-	ebegin "Starting splunk"
-	/opt/splunk/bin/splunk start
-	eend $?
-}
-
-stop() {
-	ebegin "Stopping splunk"
-	/opt/splunk/bin/splunk stop
-	eend $?
-}

diff --git a/net-analyzer/splunk/splunk-4.1.5.85165.ebuild b/net-analyzer/splunk/splunk-4.1.5.85165.ebuild
deleted file mode 100644
index 71ad5cf..0000000
--- a/net-analyzer/splunk/splunk-4.1.5.85165.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=3
-
-inherit versionator
-
-MY_RELEASE=$(get_version_component_range 1-3)
-MY_FILE=${PN}-${MY_RELEASE}-$(get_version_component_range 4)-Linux
-
-DESCRIPTION="The search engine for IT data"
-HOMEPAGE="http://www.splunk.com"
-REL_URI="http://download.splunk.com/releases/${MY_RELEASE}/"
-SRC_URI="x86? ( ${REL_URI}/linux/${MY_FILE}-i686.tgz )
-    amd64? ( ${REL_URI}/linux/${MY_FILE}-x86_64.tgz )"
-
-LICENSE="splunk-eula"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-src_prepare() {
-	chown root:root -R "${S}"
-}
-
-src_install() {
-	insinto /opt/${PN}
-	doins -r ${PN}/.
-
-	find "${D}/opt/${PN}/bin" -print0 | xargs -0 chmod 755
-	dosym /opt/${PN}/bin/splunk /opt/bin/splunk
-
-	keepdir /var/lib/splunk
-	echo "SPLUNK_DB=/var/lib/splunk" >> "${D}/opt/${PN}/etc/splunk-launch.conf"
-
-	newinitd "${FILESDIR}"/splunk.initd splunk
-}
-
-pkg_postinst() {
-	elog "To create a default configuration run the following command:"
-	elog ""
-	elog "  emerge --config =${CATEGORY}/${P}"
-	elog ""
-	elog "For more information about Splunk, please visit"
-	elog "${HOMEPAGE}/doc/latest"
-	elog ""
-	elog "To add splunk to your startup scripts"
-	elog "run 'rc-update add splunk default'"
-}
-
-pkg_config() {
-	einfo "Creating default configuration to monitor /var/log ..."
-	# Need to start splunk to accept the license and build database
-	/opt/${PN}/bin/splunk start --accept-license
-	/opt/${PN}/bin/splunk stop
-}

diff --git a/net-analyzer/splunk/splunk-4.2.ebuild b/net-analyzer/splunk/splunk-4.2.ebuild
deleted file mode 100644
index 2190f08..0000000
--- a/net-analyzer/splunk/splunk-4.2.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=3
-
-RESTRICT="strip mirror"
-QA_PREBUILT=/
-
-inherit versionator
-
-MY_REVISION=96430
-MY_FILE=${P}-${MY_REVISION}
-
-DESCRIPTION="The search engine for IT data"
-HOMEPAGE="http://www.splunk.com"
-
-LICENSE="splunk-eula"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-splunk_url() {
-	echo "http://www.splunk.com/index.php/download_track?file=${PV}/${PN}/linux/${1}&ac=&wget=true&name=wget&typed=releases -> ${1}"
-}
-
-SRC_URI="
-	x86?   ( $(splunk_url ${MY_FILE}-Linux-i686.tgz) )
-	amd64? ( $(splunk_url ${MY_FILE}-Linux-x86_64.tgz) )
-"
-
-S="${WORKDIR}"/${PN}
-
-src_install() {
-	mkdir "${D}"/opt
-	mv "${S}" "${D}"/opt/${PN}
-
-	dosym /opt/${PN}/bin/splunk /opt/bin/splunk
-
-	keepdir /var/lib/splunk
-	echo "SPLUNK_DB=/var/lib/splunk" >> "${D}/opt/${PN}/etc/splunk-launch.conf"
-
-	newinitd "${FILESDIR}"/splunk.initd splunk
-}
-
-pkg_postinst() {
-	elog "To create a default configuration run the following command:"
-	elog ""
-	elog "  emerge --config =${CATEGORY}/${P}"
-	elog ""
-	elog "For more information about Splunk, please visit"
-	elog "${HOMEPAGE}/doc/latest"
-	elog ""
-	elog "To add splunk to your startup scripts"
-	elog "run 'rc-update add splunk default'"
-}
-
-pkg_config() {
-	einfo "Creating default configuration to monitor /var/log ..."
-	# Need to start splunk to accept the license and build database
-	/opt/${PN}/bin/splunk start --accept-license
-	/opt/${PN}/bin/splunk stop
-}



^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2011-03-29 16:38 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-29 16:37 [gentoo-commits] proj/betagarden:master commit in: net-analyzer/splunk/, net-analyzer/splunk/files/ Benedikt Boehm

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox