diff options
author | Ryan Hill <dirtyepic@gentoo.org> | 2010-07-04 20:42:22 +0000 |
---|---|---|
committer | Ryan Hill <dirtyepic@gentoo.org> | 2010-07-04 20:42:22 +0000 |
commit | 5ac80a145ed61efbb814f1dd53545785fc29a397 (patch) | |
tree | 494c45014ebb6ffb1c7a61c24c25bd4fca266fbf /eclass/x-modular.eclass | |
parent | Support multiple python ABIs. (bug #326125) (diff) | |
download | gentoo-2-5ac80a145ed61efbb814f1dd53545785fc29a397.tar.gz gentoo-2-5ac80a145ed61efbb814f1dd53545785fc29a397.tar.bz2 gentoo-2-5ac80a145ed61efbb814f1dd53545785fc29a397.zip |
Drop cleanup_fonts from xorg eclasses as it's now handled by font.eclass. (bug #315369)
Diffstat (limited to 'eclass/x-modular.eclass')
-rw-r--r-- | eclass/x-modular.eclass | 42 |
1 files changed, 1 insertions, 41 deletions
diff --git a/eclass/x-modular.eclass b/eclass/x-modular.eclass index b7ba3f0c49f9..e404d332e92c 100644 --- a/eclass/x-modular.eclass +++ b/eclass/x-modular.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.118 2009/12/09 10:21:49 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.119 2010/07/04 20:42:22 dirtyepic Exp $ # # @ECLASS: x-modular.eclass # @MAINTAINER: @@ -498,50 +498,10 @@ x-modular_pkg_postinst() { # task right now is some cleanup for font packages. x-modular_pkg_postrm() { if [[ -n "${FONT}" ]]; then - cleanup_fonts font_pkg_postrm fi } -# @FUNCTION: cleanup_fonts -# @USAGE: -# @DESCRIPTION: -# Get rid of font directories that only contain generated files -cleanup_fonts() { - local ALLOWED_FILES="encodings.dir fonts.alias fonts.cache-1 fonts.dir fonts.scale" - for DIR in ${FONT_DIR}; do - unset KEEP_FONTDIR - REAL_DIR=${ROOT}usr/share/fonts/${DIR} - - ebegin "Checking ${REAL_DIR} for useless files" - pushd ${REAL_DIR} &> /dev/null - for FILE in *; do - unset MATCH - for ALLOWED_FILE in ${ALLOWED_FILES}; do - if [[ ${FILE} = ${ALLOWED_FILE} ]]; then - # If it's allowed, then move on to the next file - MATCH="yes" - break - fi - done - # If we found a match in allowed files, move on to the next file - if [[ -n ${MATCH} ]]; then - continue - fi - # If we get this far, there wasn't a match in the allowed files - KEEP_FONTDIR="yes" - # We don't need to check more files if we're already keeping it - break - done - popd &> /dev/null - # If there are no files worth keeping, then get rid of the dir - if [[ -z "${KEEP_FONTDIR}" ]]; then - rm -rf ${REAL_DIR} - fi - eend 0 - done -} - # @FUNCTION: setup_fonts # @USAGE: # @DESCRIPTION: |