diff options
author | Markos Chandras <hwoarang@gentoo.org> | 2009-11-11 11:44:15 +0000 |
---|---|---|
committer | Markos Chandras <hwoarang@gentoo.org> | 2009-11-11 11:44:15 +0000 |
commit | 56a1a65ef3f131b684295de603cb2362d6b62159 (patch) | |
tree | 3aca931afc26dddbf8e47511e7fae536ca1e9663 /media-gfx/wally | |
parent | ARTS_REQUIRED=never (diff) | |
download | gentoo-2-56a1a65ef3f131b684295de603cb2362d6b62159.tar.gz gentoo-2-56a1a65ef3f131b684295de603cb2362d6b62159.tar.bz2 gentoo-2-56a1a65ef3f131b684295de603cb2362d6b62159.zip |
Version bump
(Portage version: 2.2_rc49/cvs/Linux x86_64)
Diffstat (limited to 'media-gfx/wally')
-rw-r--r-- | media-gfx/wally/ChangeLog | 7 | ||||
-rw-r--r-- | media-gfx/wally/wally-2.3.0.ebuild | 47 |
2 files changed, 53 insertions, 1 deletions
diff --git a/media-gfx/wally/ChangeLog b/media-gfx/wally/ChangeLog index 1f1530cd377d..be7f11a38c3c 100644 --- a/media-gfx/wally/ChangeLog +++ b/media-gfx/wally/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-gfx/wally # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/wally/ChangeLog,v 1.19 2009/10/18 10:19:09 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/wally/ChangeLog,v 1.20 2009/11/11 11:44:15 hwoarang Exp $ + +*wally-2.3.0 (11 Nov 2009) + + 11 Nov 2009; <hwoarang@gentoo.org> +wally-2.3.0.ebuild: + Version bump 18 Oct 2009; Markos Chandras <hwoarang@gentoo.org> -wally-2.0.3.ebuild: Remove old ebuild diff --git a/media-gfx/wally/wally-2.3.0.ebuild b/media-gfx/wally/wally-2.3.0.ebuild new file mode 100644 index 000000000000..26d731189782 --- /dev/null +++ b/media-gfx/wally/wally-2.3.0.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/wally/wally-2.3.0.ebuild,v 1.1 2009/11/11 11:44:15 hwoarang Exp $ + +EAPI="2" + +KDE_REQUIRED="optional" +inherit kde4-base + +DESCRIPTION="A Qt4 wallpaper changer" +HOMEPAGE="http://wally.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" +LICENSE="GPL-2" + +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="debug" + +DEPEND="media-libs/libexif + x11-libs/qt-svg:4 + kde? ( >=kde-base/kdelibs-4.2.0 )" + +RDEPEND="${DEPEND}" + +PATCHES=( + "${FILESDIR}/${PN}-2.2.0-disable_popup.patch" + ) + +src_prepare() { + kde4-base_src_prepare + ! use kde && epatch "${FILESDIR}/${PN}-2.2.0-disable-kde4.patch" +} + +src_install() { + cmake-utils_src_install + newicon "${S}"/res/images/idle.png wally.png + make_desktop_entry wally Wally wally "Graphics;Qt" +} + +pkg_postinst() { + if use kde;then + elog + elog "In order to use wallyplugin you need to" + elog "restart plasma on your KDE4 enviroment." + elog + fi +} |