diff options
author | Ulrich Müller <ulm@gentoo.org> | 2008-09-14 15:47:42 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2008-09-14 15:47:42 +0000 |
commit | 4a0c5dfed1fa71bc05ea9334ee2d5590ea54c123 (patch) | |
tree | 76a5005704f254b5a2ad5cabe1e5360f71d11f3d /app-editors | |
parent | Bump for 0.10.2 (diff) | |
download | gentoo-2-4a0c5dfed1fa71bc05ea9334ee2d5590ea54c123.tar.gz gentoo-2-4a0c5dfed1fa71bc05ea9334ee2d5590ea54c123.tar.bz2 gentoo-2-4a0c5dfed1fa71bc05ea9334ee2d5590ea54c123.zip |
Be less verbose, bug 237546.
(Portage version: 2.2_rc8/cvs/Linux 2.6.26-gentoo-r1 i686)
Diffstat (limited to 'app-editors')
-rw-r--r-- | app-editors/emacs/ChangeLog | 6 | ||||
-rw-r--r-- | app-editors/emacs/emacs-21.4-r17.ebuild | 8 | ||||
-rw-r--r-- | app-editors/emacs/emacs-22.3.ebuild | 4 |
3 files changed, 10 insertions, 8 deletions
diff --git a/app-editors/emacs/ChangeLog b/app-editors/emacs/ChangeLog index cfdcbac09acf..29de5388cf5b 100644 --- a/app-editors/emacs/ChangeLog +++ b/app-editors/emacs/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-editors/emacs # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/ChangeLog,v 1.272 2008/09/06 22:11:51 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/ChangeLog,v 1.273 2008/09/14 15:47:42 ulm Exp $ + + 14 Sep 2008; Ulrich Mueller <ulm@gentoo.org> emacs-21.4-r17.ebuild, + emacs-22.3.ebuild: + Be less verbose, bug 237546. 06 Sep 2008; Ulrich Mueller <ulm@gentoo.org> -emacs-22.2-r2.ebuild: Remove vulnerable revision wrt bug 236498. diff --git a/app-editors/emacs/emacs-21.4-r17.ebuild b/app-editors/emacs/emacs-21.4-r17.ebuild index a8c2e43537be..34a9f12b8873 100644 --- a/app-editors/emacs/emacs-21.4-r17.ebuild +++ b/app-editors/emacs/emacs-21.4-r17.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/emacs-21.4-r17.ebuild,v 1.9 2008/06/04 12:26:51 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/emacs-21.4-r17.ebuild,v 1.10 2008/09/14 15:47:42 ulm Exp $ WANT_AUTOCONF="2.1" @@ -120,7 +120,7 @@ src_install() { mv "${D}"/usr/bin/emacs{-emacs,}-${SLOT} || die "mv emacs failed" rm "${D}"/usr/bin/emacs-${PV}-emacs-${SLOT} - einfo "Fixing info documentation..." + # move info documentation to the correct place mkdir "${T}/emacs-${SLOT}" mv "${D}/usr/share/info/dir" "${T}" for i in "${D}"/usr/share/info/* @@ -130,7 +130,7 @@ src_install() { mv "${T}/emacs-${SLOT}" "${D}/usr/share/info" mv "${T}/dir" "${D}/usr/share/info/emacs-${SLOT}" - einfo "Fixing manpages..." + # move man pages to the correct place for m in "${D}"/usr/share/man/man1/* ; do mv "${m}" "${m%.1}-emacs-${SLOT}.1" || die "mv ${m} failed" done @@ -138,7 +138,7 @@ src_install() { # avoid collision between slots rm "${D}"/usr/share/emacs/site-lisp/subdirs.el - einfo "Fixing permissions..." + # fix permissions find "${D}" -perm 664 |xargs chmod -f 644 2>/dev/null find "${D}" -type d |xargs chmod -f 755 2>/dev/null diff --git a/app-editors/emacs/emacs-22.3.ebuild b/app-editors/emacs/emacs-22.3.ebuild index 19381b58a40f..cb35ebc83900 100644 --- a/app-editors/emacs/emacs-22.3.ebuild +++ b/app-editors/emacs/emacs-22.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/emacs-22.3.ebuild,v 1.2 2008/09/05 18:59:59 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/emacs-22.3.ebuild,v 1.3 2008/09/14 15:47:42 ulm Exp $ inherit autotools elisp-common eutils flag-o-matic @@ -161,13 +161,11 @@ src_install () { || die "moving Emacs executable failed" # move info documentation to the correct place - einfo "Fixing info documentation ..." for i in "${D}"/usr/share/info/emacs-${SLOT}/*; do mv "${i}" "${i}.info" || die "mv info failed" done # move man pages to the correct place - einfo "Fixing manpages ..." for m in "${D}"/usr/share/man/man1/* ; do mv "${m}" "${m%.1}-emacs-${SLOT}.1" || die "mv man failed" done |