diff options
author | Ryan Hill <dirtyepic@gentoo.org> | 2007-09-16 03:45:57 +0000 |
---|---|---|
committer | Ryan Hill <dirtyepic@gentoo.org> | 2007-09-16 03:45:57 +0000 |
commit | 7530c827be5e95e5b6c9894e834699acb68a8a78 (patch) | |
tree | 4b9dee659ecc8a8775bbdead645903b4d53fe59e /media-fonts/jisx0213-fonts | |
parent | Install bdf if USE="-X". (diff) | |
download | gentoo-2-7530c827be5e95e5b6c9894e834699acb68a8a78.tar.gz gentoo-2-7530c827be5e95e5b6c9894e834699acb68a8a78.tar.bz2 gentoo-2-7530c827be5e95e5b6c9894e834699acb68a8a78.zip |
Let eclass handle FONT_SUFFIX.
(Portage version: 2.1.3.9)
Diffstat (limited to 'media-fonts/jisx0213-fonts')
-rw-r--r-- | media-fonts/jisx0213-fonts/ChangeLog | 6 | ||||
-rw-r--r-- | media-fonts/jisx0213-fonts/jisx0213-fonts-20040425-r2.ebuild | 15 |
2 files changed, 13 insertions, 8 deletions
diff --git a/media-fonts/jisx0213-fonts/ChangeLog b/media-fonts/jisx0213-fonts/ChangeLog index 4499815aadf0..01722ce7fea8 100644 --- a/media-fonts/jisx0213-fonts/ChangeLog +++ b/media-fonts/jisx0213-fonts/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-fonts/jisx0213-fonts # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-fonts/jisx0213-fonts/ChangeLog,v 1.18 2007/07/22 07:38:59 dirtyepic Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-fonts/jisx0213-fonts/ChangeLog,v 1.19 2007/09/16 03:45:57 dirtyepic Exp $ + + 16 Sep 2007; Ryan Hill <dirtyepic@gentoo.org> + jisx0213-fonts-20040425-r2.ebuild: + Let eclass handle FONT_SUFFIX. 22 Jul 2007; Ryan Hill <dirtyepic@gentoo.org> -jisx0213-fonts-20040425.ebuild, -jisx0213-fonts-20040425-r1.ebuild: diff --git a/media-fonts/jisx0213-fonts/jisx0213-fonts-20040425-r2.ebuild b/media-fonts/jisx0213-fonts/jisx0213-fonts-20040425-r2.ebuild index 1b49a8cd2840..eb5c50cde654 100644 --- a/media-fonts/jisx0213-fonts/jisx0213-fonts-20040425-r2.ebuild +++ b/media-fonts/jisx0213-fonts/jisx0213-fonts-20040425-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-fonts/jisx0213-fonts/jisx0213-fonts-20040425-r2.ebuild,v 1.9 2007/06/13 16:53:56 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-fonts/jisx0213-fonts/jisx0213-fonts-20040425-r2.ebuild,v 1.10 2007/09/16 03:45:57 dirtyepic Exp $ inherit font font-ebdftopcf @@ -31,15 +31,16 @@ S="${WORKDIR}" FONT_S="${S}" FONT_PN="${PN/-fonts/}" FONTDIR="/usr/share/fonts/${FONT_PN}" -FONT_SUFFIX="pcf.gz" # Only installs fonts RESTRICT="strip binchecks" pkg_postinst(){ - elog "You need you add following line into 'Section \"Files\"' in" - elog "XF86Config and reboot X Window System, to use these fonts." - elog "" - elog "\t FontPath \"${FONTDIR}\"" - elog "" + if use X; then + elog "You need you add following line into 'Section \"Files\"' in" + elog "XF86Config and reboot X Window System, to use these fonts." + elog "" + elog "\t FontPath \"${FONTDIR}\"" + elog "" + fi } |