diff options
author | 2005-05-26 03:27:16 +0000 | |
---|---|---|
committer | 2005-05-26 03:27:16 +0000 | |
commit | 1ca61705539838717558638611f9f70ec7983d7a (patch) | |
tree | 1e3cbd8aded86ad356b7cbd4494b14d002f12a2c /x11-plugins/desklet-scweather/desklet-scweather-0.1-r1.ebuild | |
parent | Initial commit (diff) | |
download | gentoo-2-1ca61705539838717558638611f9f70ec7983d7a.tar.gz gentoo-2-1ca61705539838717558638611f9f70ec7983d7a.tar.bz2 gentoo-2-1ca61705539838717558638611f9f70ec7983d7a.zip |
Fixed the problem with gdesklets-core-0.35rc1
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'x11-plugins/desklet-scweather/desklet-scweather-0.1-r1.ebuild')
-rw-r--r-- | x11-plugins/desklet-scweather/desklet-scweather-0.1-r1.ebuild | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/x11-plugins/desklet-scweather/desklet-scweather-0.1-r1.ebuild b/x11-plugins/desklet-scweather/desklet-scweather-0.1-r1.ebuild new file mode 100644 index 000000000000..654bbd093297 --- /dev/null +++ b/x11-plugins/desklet-scweather/desklet-scweather-0.1-r1.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/desklet-scweather/desklet-scweather-0.1-r1.ebuild,v 1.1 2005/05/26 03:27:16 nixphoeni Exp $ + +inherit gdesklets + +DESKLET_NAME="SC-Weather" + +MY_P="${DESKLET_NAME}-${PV}" +S=${WORKDIR}/${MY_P} + +DESCRIPTION="A weather display using SideCandy for gDesklets" +HOMEPAGE="http://gdesklets.gnomedesktop.org/categories.php?func=gd_show_app&gd_app_id=244" +SRC_URI="http://gdesklets.gnomedesktop.org/files/${MY_P}.tar.bz2" +LICENSE="GPL-2" + +SLOT="0" +IUSE="" +KEYWORDS="~x86" + +RDEPEND=">=gnome-extra/gdesklets-core-0.34.3" + +DOCS="README" + +src_unpack () +{ + + unpack ${A} + + mkdir ${S}/controls/IYahooWeather + mv ${S}/controls/*.py ${S}/controls/IYahooWeather/ + + # Fix the SideCandy issue in >0.35 + sed -i -e "s:<group id=\"slider\":<group id=\"slider\" width=\"5cm\":" ${S}/${DESKLET_NAME}/sc-weather.display + +} |