diff options
author | Markos Chandras <hwoarang@gentoo.org> | 2012-02-10 23:04:43 +0000 |
---|---|---|
committer | Markos Chandras <hwoarang@gentoo.org> | 2012-02-10 23:04:43 +0000 |
commit | 167719f327d78994eb750949893f7ebda87766a2 (patch) | |
tree | b3723f2f367d53b159bd29357e3a790bb93ea2e0 /x11-misc/okindd | |
parent | Remove old. (diff) | |
download | gentoo-2-167719f327d78994eb750949893f7ebda87766a2.tar.gz gentoo-2-167719f327d78994eb750949893f7ebda87766a2.tar.bz2 gentoo-2-167719f327d78994eb750949893f7ebda87766a2.zip |
Version bump. Bug #360371. Thanks to Henning Schild <henning@wh9.tu-dresden.de>
(Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
Diffstat (limited to 'x11-misc/okindd')
-rw-r--r-- | x11-misc/okindd/ChangeLog | 10 | ||||
-rw-r--r-- | x11-misc/okindd/okindd-0.6.0.ebuild | 39 |
2 files changed, 47 insertions, 2 deletions
diff --git a/x11-misc/okindd/ChangeLog b/x11-misc/okindd/ChangeLog index 96d8e964ff46..988f2b25f451 100644 --- a/x11-misc/okindd/ChangeLog +++ b/x11-misc/okindd/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for x11-misc/okindd -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/okindd/ChangeLog,v 1.3 2009/12/26 14:13:28 wired Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/okindd/ChangeLog,v 1.4 2012/02/10 23:04:43 hwoarang Exp $ + +*okindd-0.6.0 (10 Feb 2012) + + 10 Feb 2012; Markos Chandras <hwoarang@gentoo.org> +okindd-0.6.0.ebuild: + Version bump. Bug #360371. Thanks to Henning Schild <henning@wh9.tu- + dresden.de> *okindd-0.5.8-r1 (26 Dec 2009) diff --git a/x11-misc/okindd/okindd-0.6.0.ebuild b/x11-misc/okindd/okindd-0.6.0.ebuild new file mode 100644 index 000000000000..076346750740 --- /dev/null +++ b/x11-misc/okindd/okindd-0.6.0.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI="4" + +inherit qt4-r2 + +MY_P="${P}-49-20110113" + +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/development/${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}" + +S="${WORKDIR}/${PN}" + +src_configure() { + eqmake4 okindd.pro +} + +DOCS=( changelog ) +src_install() { + qt4-r2_src_install + docinto examples + dodoc scripts/* + dodoc conf/okinddrc.example + + 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/" +} |