diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2010-08-24 03:05:39 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2010-08-24 03:05:39 +0000 |
commit | 5a0b66b82841cd6792d740b08cf16bde637b6dec (patch) | |
tree | fdafc5ee8a9293e21b744e811f27691fd6b0c0bf /xfce-extra/xfce4-datetime-plugin | |
parent | Use append-lfs-flags. USE static-libs and punt .la files. (diff) | |
download | gentoo-2-5a0b66b82841cd6792d740b08cf16bde637b6dec.tar.gz gentoo-2-5a0b66b82841cd6792d740b08cf16bde637b6dec.tar.bz2 gentoo-2-5a0b66b82841cd6792d740b08cf16bde637b6dec.zip |
Fix deprecated entry in .desktop file.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'xfce-extra/xfce4-datetime-plugin')
-rw-r--r-- | xfce-extra/xfce4-datetime-plugin/ChangeLog | 6 | ||||
-rw-r--r-- | xfce-extra/xfce4-datetime-plugin/xfce4-datetime-plugin-0.6.1.ebuild | 14 |
2 files changed, 17 insertions, 3 deletions
diff --git a/xfce-extra/xfce4-datetime-plugin/ChangeLog b/xfce-extra/xfce4-datetime-plugin/ChangeLog index 16c74e4ecfc5..f476767714fd 100644 --- a/xfce-extra/xfce4-datetime-plugin/ChangeLog +++ b/xfce-extra/xfce4-datetime-plugin/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for xfce-extra/xfce4-datetime-plugin # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-datetime-plugin/ChangeLog,v 1.3 2010/08/05 23:05:49 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-datetime-plugin/ChangeLog,v 1.4 2010/08/24 03:05:39 ssuominen Exp $ + + 24 Aug 2010; Samuli Suominen <ssuominen@gentoo.org> + xfce4-datetime-plugin-0.6.1.ebuild: + Fix deprecated entry in .desktop file. 05 Aug 2010; Samuli Suominen <ssuominen@gentoo.org> xfce4-datetime-plugin-0.6.1.ebuild: diff --git a/xfce-extra/xfce4-datetime-plugin/xfce4-datetime-plugin-0.6.1.ebuild b/xfce-extra/xfce4-datetime-plugin/xfce4-datetime-plugin-0.6.1.ebuild index 3ccc2a6a2d2b..a104a0236d59 100644 --- a/xfce-extra/xfce4-datetime-plugin/xfce4-datetime-plugin-0.6.1.ebuild +++ b/xfce-extra/xfce4-datetime-plugin/xfce4-datetime-plugin-0.6.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-datetime-plugin/xfce4-datetime-plugin-0.6.1.ebuild,v 1.3 2010/08/05 23:05:49 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-datetime-plugin/xfce4-datetime-plugin-0.6.1.ebuild,v 1.4 2010/08/24 03:05:39 ssuominen Exp $ EAPI=2 inherit xfconf @@ -23,8 +23,18 @@ DEPEND="${RDEPEND} dev-util/intltool" pkg_setup() { - DOCS="AUTHORS ChangeLog NEWS THANKS" + # static, http://bugzilla.xfce.org/show_bug.cgi?id=6659 XFCONF="--disable-dependency-tracking --disable-static $(xfconf_use_debug)" + DOCS="AUTHORS ChangeLog NEWS THANKS" +} + +src_prepare() { + # Encoding, http://bugzilla.xfce.org/show_bug.cgi?id=6660 + sed -i \ + -e '/Encoding/d' \ + panel-plugin/datetime.desktop.in.in || die + + xfconf_src_prepare } |