diff options
author | Matthew Kennedy <mkennedy@gentoo.org> | 2006-08-21 05:05:39 +0000 |
---|---|---|
committer | Matthew Kennedy <mkennedy@gentoo.org> | 2006-08-21 05:05:39 +0000 |
commit | c3ca2a03b4409973385a42fdb27c0aa92643c1c3 (patch) | |
tree | a167cb5426f31592ccf0e42243ef22f0363f4ca5 /app-editors | |
parent | Cleaning out very old versions of oxine (diff) | |
download | gentoo-2-c3ca2a03b4409973385a42fdb27c0aa92643c1c3.tar.gz gentoo-2-c3ca2a03b4409973385a42fdb27c0aa92643c1c3.tar.bz2 gentoo-2-c3ca2a03b4409973385a42fdb27c0aa92643c1c3.zip |
Add note to pkg_postinst that Emacs needs fonts; Resolves Bug #137598.
(Portage version: 2.1.1_pre5-r1)
Diffstat (limited to 'app-editors')
-rw-r--r-- | app-editors/emacs/ChangeLog | 5 | ||||
-rw-r--r-- | app-editors/emacs/emacs-21.4-r5.ebuild | 28 |
2 files changed, 26 insertions, 7 deletions
diff --git a/app-editors/emacs/ChangeLog b/app-editors/emacs/ChangeLog index 385211cbec3f..80b418649823 100644 --- a/app-editors/emacs/ChangeLog +++ b/app-editors/emacs/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-editors/emacs # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/ChangeLog,v 1.101 2006/08/18 05:03:12 tsunam Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/ChangeLog,v 1.102 2006/08/21 05:05:39 mkennedy Exp $ + + 21 Aug 2006; Matthew Kennedy <mkennedy@gentoo.org> emacs-21.4-r5.ebuild: + Add note to pkg_postinst that Emacs needs fonts; Resolves Bug #137598. 18 Aug 2006; Joshua Jackson <tsunam@gentoo.org> emacs-21.4-r4.ebuild: Stable x86; following the others diff --git a/app-editors/emacs/emacs-21.4-r5.ebuild b/app-editors/emacs/emacs-21.4-r5.ebuild index 9939c38f3591..60bff59ceb89 100644 --- a/app-editors/emacs/emacs-21.4-r5.ebuild +++ b/app-editors/emacs/emacs-21.4-r5.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/emacs-21.4-r5.ebuild,v 1.1 2006/08/12 22:51:19 mkennedy Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/emacs-21.4-r5.ebuild,v 1.2 2006/08/21 05:05:39 mkennedy Exp $ inherit flag-o-matic eutils alternatives toolchain-funcs @@ -164,12 +164,28 @@ update-alternatives() { pkg_postinst() { update-alternatives - if use nosendmail ; then - ewarn - ewarn "You disabled sendmail support for Emacs. If you will install any MTA" - ewarn "you need to recompile Emacs after that. See bug #11104." - ewarn + if use nosendmail; then + while read line; do einfo "${line}"; done<<'EOF' + +You disabled sendmail support for Emacs. If you later install a MTA +then you will need to recompile Emacs. See Bug #11104. + +EOF + fi + if use X; then + while read line; do einfo "${line}"; done<<'EOF' + +You need to install some fonts for Emacs. Under monolithic +XFree86/Xorg you typically had such fonts installed by default. With +modular Xorg, you will have to perform this step yourself. + +Installing media-fonts/font-adobe-{75,100}dpi would satisfy basic +Emacs requirements under X11. + +EOF fi + + } pkg_postrm() { |