diff options
author | Marinus Schraal <foser@gentoo.org> | 2005-05-28 19:01:24 +0000 |
---|---|---|
committer | Marinus Schraal <foser@gentoo.org> | 2005-05-28 19:01:24 +0000 |
commit | 67fdb43a985a2632b7900c18e99dd441e8acbcb9 (patch) | |
tree | 850d6b52fc29b2a6182bd790d8a7e56016f34f41 /eclass/font.eclass | |
parent | Dont make use of the deprecated oggvorbis useflag any longer, see #94254. (diff) | |
download | gentoo-2-67fdb43a985a2632b7900c18e99dd441e8acbcb9.tar.gz gentoo-2-67fdb43a985a2632b7900c18e99dd441e8acbcb9.tar.bz2 gentoo-2-67fdb43a985a2632b7900c18e99dd441e8acbcb9.zip |
more fixes
Diffstat (limited to 'eclass/font.eclass')
-rw-r--r-- | eclass/font.eclass | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/eclass/font.eclass b/eclass/font.eclass index d2246296ad78..03252365e903 100644 --- a/eclass/font.eclass +++ b/eclass/font.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/font.eclass,v 1.11 2005/05/28 18:38:17 foser Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/font.eclass,v 1.12 2005/05/28 19:01:24 foser Exp $ # Author: foser <foser@gentoo.org> @@ -88,4 +88,12 @@ font_src_install() { } -EXPORT_FUNCTIONS src_install +font_pkg_setup() { + + # make sure we get no colissions + # setup is not the nicest place, but preinst doesn't cut it + rm "/usr/share/fonts/${PN}/fonts.cache-1" + +} + +EXPORT_FUNCTIONS src_install pkg_setup |