diff options
author | Andreas K. Hüttel <dilfridge@gentoo.org> | 2011-06-19 09:00:04 +0000 |
---|---|---|
committer | Andreas K. Hüttel <dilfridge@gentoo.org> | 2011-06-19 09:00:04 +0000 |
commit | 1af9b5d86ac83d918ef3729bbded98e2461fa87a (patch) | |
tree | 5a095479843c5c2adb701b3572a538dd8315125b /kde-misc/kdocker | |
parent | Stable on amd64 wrt bug #371811 (diff) | |
download | gentoo-2-1af9b5d86ac83d918ef3729bbded98e2461fa87a.tar.gz gentoo-2-1af9b5d86ac83d918ef3729bbded98e2461fa87a.tar.bz2 gentoo-2-1af9b5d86ac83d918ef3729bbded98e2461fa87a.zip |
Fix icon file location, bug 357097.
(Portage version: 2.1.10.3/cvs/Linux x86_64)
Diffstat (limited to 'kde-misc/kdocker')
-rw-r--r-- | kde-misc/kdocker/ChangeLog | 8 | ||||
-rw-r--r-- | kde-misc/kdocker/files/kdocker-4.6-icon.patch | 12 | ||||
-rw-r--r-- | kde-misc/kdocker/kdocker-4.6-r1.ebuild | 26 |
3 files changed, 45 insertions, 1 deletions
diff --git a/kde-misc/kdocker/ChangeLog b/kde-misc/kdocker/ChangeLog index d9eb02c0dcc8..5b749a30cdcc 100644 --- a/kde-misc/kdocker/ChangeLog +++ b/kde-misc/kdocker/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for kde-misc/kdocker # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/kde-misc/kdocker/ChangeLog,v 1.8 2011/06/13 14:04:26 dilfridge Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-misc/kdocker/ChangeLog,v 1.9 2011/06/19 09:00:04 dilfridge Exp $ + +*kdocker-4.6-r1 (19 Jun 2011) + + 19 Jun 2011; Andreas K. Huettel <dilfridge@gentoo.org> + +kdocker-4.6-r1.ebuild, +files/kdocker-4.6-icon.patch: + Fix icon file location, bug 357097. *kdocker-4.6 (13 Jun 2011) diff --git a/kde-misc/kdocker/files/kdocker-4.6-icon.patch b/kde-misc/kdocker/files/kdocker-4.6-icon.patch new file mode 100644 index 000000000000..fc20f21735fd --- /dev/null +++ b/kde-misc/kdocker/files/kdocker-4.6-icon.patch @@ -0,0 +1,12 @@ +--- kdocker.pro 2010-11-07 14:10:59 +0000 ++++ kdocker.pro 2011-05-31 00:45:06 +0000 +@@ -29,8 +29,7 @@ + translations.path = $$TRANSLATIONS_PATH + translations.files = build/i18n + +-ICONS_PATH = $$INSTALL_PATH/icons +-icons.path = $$ICONS_PATH ++icons.path = /usr/share/pixmaps + icons.files = resources/images/kdocker.png + + desktop.path = /usr/share/applications diff --git a/kde-misc/kdocker/kdocker-4.6-r1.ebuild b/kde-misc/kdocker/kdocker-4.6-r1.ebuild new file mode 100644 index 000000000000..219650a052e8 --- /dev/null +++ b/kde-misc/kdocker/kdocker-4.6-r1.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/kde-misc/kdocker/kdocker-4.6-r1.ebuild,v 1.1 2011/06/19 09:00:04 dilfridge Exp $ + +EAPI=3 +inherit base qt4-r2 + +DESCRIPTION="KDocker will help you dock any application into the system tray" +HOMEPAGE="https://launchpad.net/kdocker/" +SRC_URI="http://launchpad.net/kdocker/trunk/${PV:0:3}/+download/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +PATCHES=( "${FILESDIR}/${P}-icon.patch" ) + +src_configure() { + eqmake4 +} + +src_install() { + emake INSTALL_ROOT="${D}" install || die + dodoc AUTHORS BUGS ChangeLog CREDITS README TODO +} |