summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <ssuominen@gentoo.org>2011-01-30 09:29:46 +0000
committerSamuli Suominen <ssuominen@gentoo.org>2011-01-30 09:29:46 +0000
commit662d884890822876fc39ebc97ab3b6fee03ed790 (patch)
treeef5d27f740ff668472647b708b46bc8d0b1b2811 /sys-kernel/kerneloops/kerneloops-0.12.ebuild
parentMove alpha keyword forward, no reason to only keyword an old version. (diff)
downloadgentoo-2-662d884890822876fc39ebc97ab3b6fee03ed790.tar.gz
gentoo-2-662d884890822876fc39ebc97ab3b6fee03ed790.tar.bz2
gentoo-2-662d884890822876fc39ebc97ab3b6fee03ed790.zip
Fix building with x11-libs/libnotify >= 0.7. Fix missing -I and -l flags for dbus-glib-1 in -FLAGS.patch. punt old
(Portage version: 2.2.0_alpha19/cvs/Linux x86_64)
Diffstat (limited to 'sys-kernel/kerneloops/kerneloops-0.12.ebuild')
-rw-r--r--sys-kernel/kerneloops/kerneloops-0.12.ebuild54
1 files changed, 0 insertions, 54 deletions
diff --git a/sys-kernel/kerneloops/kerneloops-0.12.ebuild b/sys-kernel/kerneloops/kerneloops-0.12.ebuild
deleted file mode 100644
index d9913586657c..000000000000
--- a/sys-kernel/kerneloops/kerneloops-0.12.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-kernel/kerneloops/kerneloops-0.12.ebuild,v 1.2 2010/02/07 19:31:52 jlec Exp $
-
-inherit eutils
-
-DESCRIPTION="Tool to automatically collect and submit Linux kernel crash signatures"
-HOMEPAGE="http://www.kerneloops.org/"
-SRC_URI="http://www.kerneloops.org/download/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="net-misc/curl
- sys-apps/dbus
- x11-libs/gtk+
- x11-libs/libnotify
- dev-util/desktop-file-utils"
-RDEPEND="${DEPEND}"
-
-src_unpack() {
- unpack ${A}
- cd "${WORKDIR}"
-}
-
-src_compile() {
- emake kerneloops || die "Compile deamon failed"
- emake kerneloops-applet || die "Compile applet failed"
-}
-
-src_install() {
- emake DESTDIR="${D}" install-system || die "Install of system failed"
- emake DESTDIR="${D}" install-kerneloops || die "Install of deamon failed"
- emake DESTDIR="${D}" install-applet || die "Install of applet failed"
-
- doinitd "${FILESDIR}"/kerneloops || die "doinitd failed"
-
-}
-
-pkg_postinst() {
- ewarn "PRIVACY NOTE"
- ewarn "You must allow the kerneloops program to send the oops messages"
- ewarn "by either editing the /etc/kerneloops.conf file, or by running the"
- ewarn "kerneloops-applet program first."
- ewarn "Enabling this option will cause your system to submit certain kernel"
- ewarn "output to the kerneloops.org website, where it will be available via"
- ewarn "this website to developers and everyone else."
- ewarn "The submitted info are so-called \"oopses\", kernel crash signature."
- ewarn "However, due to the nature of oopses, it may happen that a few"
- ewarn "surrounding lines of the oops in the \"dmesg\" are being sent together"
- ewarn "with the oops."
-}