summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Huber <johu@gentoo.org>2012-03-27 15:29:31 +0000
committerJohannes Huber <johu@gentoo.org>2012-03-27 15:29:31 +0000
commit829b2b49f73a3860abae661128e7e2ae46d8020a (patch)
tree07a2d7c60668f7cd58ed7471d4fe6b8ea23d8424 /x11-misc
parentVersion bump alpha and remove older (diff)
downloadgentoo-2-829b2b49f73a3860abae661128e7e2ae46d8020a.tar.gz
gentoo-2-829b2b49f73a3860abae661128e7e2ae46d8020a.tar.bz2
gentoo-2-829b2b49f73a3860abae661128e7e2ae46d8020a.zip
Remove old with deprecated eclass usage.
(Portage version: 2.2.0_alpha95/cvs/Linux i686)
Diffstat (limited to 'x11-misc')
-rw-r--r--x11-misc/okindd/ChangeLog6
-rw-r--r--x11-misc/okindd/files/okindd_home_and_naming.patch18
-rw-r--r--x11-misc/okindd/okindd-0.5.8-r1.ebuild54
3 files changed, 5 insertions, 73 deletions
diff --git a/x11-misc/okindd/ChangeLog b/x11-misc/okindd/ChangeLog
index b1eade24d8c2..b4ca057cf3e8 100644
--- a/x11-misc/okindd/ChangeLog
+++ b/x11-misc/okindd/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for x11-misc/okindd
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/okindd/ChangeLog,v 1.5 2012/02/14 17:20:36 tove Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/okindd/ChangeLog,v 1.6 2012/03/27 15:29:31 johu Exp $
+
+ 27 Mar 2012; Johannes Huber <johu@gentoo.org>
+ -files/okindd_home_and_naming.patch, -okindd-0.5.8-r1.ebuild:
+ Remove old with deprecated eclass usage.
14 Feb 2012; Torsten Veller <tove@gentoo.org> okindd-0.6.0.ebuild:
Fix ebuild header (#398773)
diff --git a/x11-misc/okindd/files/okindd_home_and_naming.patch b/x11-misc/okindd/files/okindd_home_and_naming.patch
deleted file mode 100644
index 59a446235c79..000000000000
--- a/x11-misc/okindd/files/okindd_home_and_naming.patch
+++ /dev/null
@@ -1,18 +0,0 @@
---- src/src.pro.old 2009-05-25 00:55:37.369064692 +0300
-+++ src/src.pro 2009-05-25 00:56:10.167178104 +0300
-@@ -6,7 +6,7 @@
- TARGET = okindd
- DESTDIR = ../bin
- HEADERS += okindadapter.h
--INSTALLS += target pics examples shortcut
-+INSTALLS += target pics examples
-
- target.path = /usr/bin/
-
-@@ -16,6 +16,3 @@
- examples.path = /usr/share/doc/okindd/examples/
- examples.files += ../scripts/* ../conf/okinddrc.example
-
--shortcut.path = ~/.kde/Autostart/
--shortcut.files += ../okindd.desktop
--
diff --git a/x11-misc/okindd/okindd-0.5.8-r1.ebuild b/x11-misc/okindd/okindd-0.5.8-r1.ebuild
deleted file mode 100644
index 5937cde87b55..000000000000
--- a/x11-misc/okindd/okindd-0.5.8-r1.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/okindd/okindd-0.5.8-r1.ebuild,v 1.1 2009/12/26 14:13:28 wired Exp $
-
-EAPI="2"
-
-inherit qt4
-
-MY_P="${P}-20090410"
-
-DESCRIPTION="On Screen Display (OSD) for KDE 4.x - works on any qt desktop"
-HOMEPAGE="http://sites.kochkin.org/okindd/Home"
-SRC_URI="http://sites.kochkin.org/okindd/Home/source-code/${MY_P}.tar.bz2"
-
-LICENSE="GPL-3"
-KEYWORDS="~amd64 ~x86"
-SLOT="0"
-IUSE="debug"
-
-DEPEND="x11-libs/qt-gui:4
- x11-libs/qt-dbus:4"
-RDEPEND="${DEPEND}"
-
-PATCHES=( "${FILESDIR}/okindd_home_and_naming.patch" )
-
-S="${WORKDIR}/${PN}"
-
-src_prepare() {
- sed -i "s:okind/:okindd/:g" "${S}"/conf/okinddrc.example ||
- die "sed: fixing example paths failed"
-
- sed -i "/^examples/d" "${S}"/src/src.pro ||
- die "sed: doc patch failed"
-
- qt4_src_prepare
-}
-
-src_configure() {
- eqmake4 okindd.pro || die "configure failed"
-}
-
-src_install() {
- emake INSTALL_ROOT="${D}" install || die "emake install failed"
- domenu "${S}"/okindd.desktop || die "domenu failed"
-
- dodoc changelog INSTALL || die "dodoc failed"
- docinto examples
- dodoc scripts/* || die "dodoc failed"
- dodoc conf/okinddrc.example || die "dodoc failed"
-
- elog "You can find an example configuration file at"
- elog " /usr/share/doc/okindd/examples/okinddrc.example"
- elog "It should be placed in \${HOME}/.okindd/"
-}