diff options
author | Jörg Bornkessel <hd_brummy@gentoo.org> | 2011-01-17 20:35:04 +0000 |
---|---|---|
committer | Jörg Bornkessel <hd_brummy@gentoo.org> | 2011-01-17 20:35:04 +0000 |
commit | 5cf48fe37d2cc50145e05e67697dfc67afa57548 (patch) | |
tree | 4aa81595b58dcf2ad07a62d3e4024315ad9ec40c /x11-themes | |
parent | Update to sound files. (diff) | |
download | gentoo-2-5cf48fe37d2cc50145e05e67697dfc67afa57548.tar.gz gentoo-2-5cf48fe37d2cc50145e05e67697dfc67afa57548.tar.bz2 gentoo-2-5cf48fe37d2cc50145e05e67697dfc67afa57548.zip |
fix to support your utf-8 locale settings
(Portage version: 2.1.9.24/cvs/Linux i686)
Diffstat (limited to 'x11-themes')
-rw-r--r-- | x11-themes/vdr-channel-logos/ChangeLog | 10 | ||||
-rw-r--r-- | x11-themes/vdr-channel-logos/vdr-channel-logos-0.2-r1.ebuild | 32 |
2 files changed, 40 insertions, 2 deletions
diff --git a/x11-themes/vdr-channel-logos/ChangeLog b/x11-themes/vdr-channel-logos/ChangeLog index b212ba5ef1b2..237bc94b9a2f 100644 --- a/x11-themes/vdr-channel-logos/ChangeLog +++ b/x11-themes/vdr-channel-logos/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for x11-themes/vdr-channel-logos -# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-themes/vdr-channel-logos/ChangeLog,v 1.4 2006/11/16 10:29:29 zzam Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-themes/vdr-channel-logos/ChangeLog,v 1.5 2011/01/17 20:35:04 hd_brummy Exp $ + +*vdr-channel-logos-0.2-r1 (17 Jan 2011) + + 17 Jan 2011; Joerg Bornkessel <hd_brummy@gentoo.org> + +vdr-channel-logos-0.2-r1.ebuild: + fix to support your utf-8 locale settings 16 Nov 2006; Matthias Schwarzott <zzam@gentoo.org> vdr-channel-logos-0.2.ebuild: diff --git a/x11-themes/vdr-channel-logos/vdr-channel-logos-0.2-r1.ebuild b/x11-themes/vdr-channel-logos/vdr-channel-logos-0.2-r1.ebuild new file mode 100644 index 000000000000..fe4a7323a619 --- /dev/null +++ b/x11-themes/vdr-channel-logos/vdr-channel-logos-0.2-r1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-themes/vdr-channel-logos/vdr-channel-logos-0.2-r1.ebuild,v 1.1 2011/01/17 20:35:04 hd_brummy Exp $ + +EAPI="2" + +inherit eutils + +MY_P=${PN#vdr-channel-}-${PV} + +DESCRIPTION="Logos for vdr-skin*" +HOMEPAGE="http://www.vdrskins.org/" +SRC_URI="http://www.vdrskins.org/vdrskins/albums/userpics/10138/${MY_P}.tar.gz" + +LICENSE="as-is" +SLOT="0" +KEYWORDS="~x86 ~amd64" +IUSE="" + +S=${WORKDIR}/logos + +RDEPEND="app-text/convmv" + +src_prepare() { + + convmv --notest --replace -f iso-8859-1 -t utf-8 -r "${S}"/ +} + +src_install() { + insinto /usr/share/vdr/channel-logos + find -maxdepth 1 -name "*.xpm" -print0|xargs -0 cp -a --target="${D}/usr/share/vdr/channel-logos/" +} |