| 1 | # Copyright 1999-2010 Gentoo Foundation |
1 | # Copyright 1999-2011 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/font.eclass,v 1.52 2010/09/30 03:46:11 dirtyepic Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/font.eclass,v 1.53 2011/08/22 04:46:31 vapier Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: font.eclass |
5 | # @ECLASS: font.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # fonts@gentoo.org |
7 | # fonts@gentoo.org |
| 8 | # @BLURB: Eclass to make font installation uniform |
8 | # @BLURB: Eclass to make font installation uniform |
| 9 | |
9 | |
| 10 | inherit eutils |
10 | inherit eutils |
| 11 | |
11 | |
| 12 | EXPORT_FUNCTIONS pkg_setup src_install pkg_postinst pkg_postrm |
12 | EXPORT_FUNCTIONS pkg_setup src_install pkg_postinst pkg_postrm |
| … | |
… | |
| 43 | |
43 | |
| 44 | # @ECLASS-VARIABLE: DOCS |
44 | # @ECLASS-VARIABLE: DOCS |
| 45 | # @DEFAULT_UNSET |
45 | # @DEFAULT_UNSET |
| 46 | # @DESCRIPTION: |
46 | # @DESCRIPTION: |
| 47 | # Space delimited list of docs to install. |
47 | # Space delimited list of docs to install. |
| 48 | # We always install these: |
48 | # We always install these: |
| 49 | # COPYRIGHT README{,.txt} NEWS AUTHORS BUGS ChangeLog FONTLOG.txt |
49 | # COPYRIGHT README{,.txt} NEWS AUTHORS BUGS ChangeLog FONTLOG.txt |
| 50 | DOCS=${DOCS:-} |
50 | DOCS=${DOCS:-} |
| 51 | |
51 | |
| 52 | IUSE="X" |
52 | IUSE="X" |
| 53 | |
53 | |