diff options
author | 2009-10-12 13:07:31 +0000 | |
---|---|---|
committer | 2009-10-12 13:07:31 +0000 | |
commit | c6b79eeef48bf4c6e9bd0409e9ffe3a6ed576493 (patch) | |
tree | 3f5ea1280b56f1073fbf1425614efbb21007f06f /x11-themes | |
parent | Version bump. (diff) | |
download | gentoo-2-c6b79eeef48bf4c6e9bd0409e9ffe3a6ed576493.tar.gz gentoo-2-c6b79eeef48bf4c6e9bd0409e9ffe3a6ed576493.tar.bz2 gentoo-2-c6b79eeef48bf4c6e9bd0409e9ffe3a6ed576493.zip |
Fix gnome2-utils.eclass handling also for 0.10.
(Portage version: 2.2_rc46/cvs/Linux x86_64)
Diffstat (limited to 'x11-themes')
-rw-r--r-- | x11-themes/hicolor-icon-theme/hicolor-icon-theme-0.10.ebuild | 22 |
1 files changed, 8 insertions, 14 deletions
diff --git a/x11-themes/hicolor-icon-theme/hicolor-icon-theme-0.10.ebuild b/x11-themes/hicolor-icon-theme/hicolor-icon-theme-0.10.ebuild index 916dd61a6f24..dd9a9be35a04 100644 --- a/x11-themes/hicolor-icon-theme/hicolor-icon-theme-0.10.ebuild +++ b/x11-themes/hicolor-icon-theme/hicolor-icon-theme-0.10.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-themes/hicolor-icon-theme/hicolor-icon-theme-0.10.ebuild,v 1.11 2007/06/24 23:08:15 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-themes/hicolor-icon-theme/hicolor-icon-theme-0.10.ebuild,v 1.12 2009/10/12 13:07:31 ssuominen Exp $ -inherit eutils gnome2-utils +inherit gnome2-utils DESCRIPTION="Fallback theme for the freedesktop icon theme specification" HOMEPAGE="http://icon-theme.freedesktop.org/wiki/HicolorTheme" @@ -10,22 +10,16 @@ SRC_URI="http://icon-theme.freedesktop.org/releases/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 mips ppc ppc64 sh sparc x86 ~x86-fbsd" +KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86 ~x86-fbsd" IUSE="" -DEPEND="" -RDEPEND="" RESTRICT="binchecks strip" src_install() { - emake DESTDIR="${D}" install || die "emake install failed." + emake DESTDIR="${D}" install || die dodoc ChangeLog README } -pkg_postinst() { - gnome2_icon_cache_update -} - -pkg_postrm() { - gnome2_icon_cache_update -} +pkg_preinst() { gnome2_icon_savelist; } +pkg_postinst() { gnome2_icon_cache_update; } +pkg_postrm() { gnome2_icon_cache_update; } |