diff options
author | Christian Faulhammer <opfer@gentoo.org> | 2007-02-04 14:57:58 +0000 |
---|---|---|
committer | Christian Faulhammer <opfer@gentoo.org> | 2007-02-04 14:57:58 +0000 |
commit | 2e6eb6a752c7429dd2b2c81f6fcf0f686883d7f5 (patch) | |
tree | 8f2c14c3f5a380b4946d827005cf5c2c4265ec9d /app-editors | |
parent | Stable on ppc wrt bug 165206 (diff) | |
download | gentoo-2-2e6eb6a752c7429dd2b2c81f6fcf0f686883d7f5.tar.gz gentoo-2-2e6eb6a752c7429dd2b2c81f6fcf0f686883d7f5.tar.bz2 gentoo-2-2e6eb6a752c7429dd2b2c81f6fcf0f686883d7f5.zip |
add a check for uncompressed man pages and clean up
(Portage version: 2.1.1-r2)
Diffstat (limited to 'app-editors')
-rw-r--r-- | app-editors/emacs-cvs/ChangeLog | 7 | ||||
-rw-r--r-- | app-editors/emacs-cvs/emacs-cvs-22.0.93-r2.ebuild | 5 | ||||
-rw-r--r-- | app-editors/emacs-cvs/emacs-cvs-22.0.9999-r2.ebuild | 5 |
3 files changed, 14 insertions, 3 deletions
diff --git a/app-editors/emacs-cvs/ChangeLog b/app-editors/emacs-cvs/ChangeLog index 5f16a773d39a..0901704b81e2 100644 --- a/app-editors/emacs-cvs/ChangeLog +++ b/app-editors/emacs-cvs/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-editors/emacs-cvs # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs-cvs/ChangeLog,v 1.78 2007/02/03 11:21:02 opfer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs-cvs/ChangeLog,v 1.79 2007/02/04 14:57:58 opfer Exp $ + + 04 Feb 2007; Christian Faulhammer <opfer@gentoo.org> + -emacs-cvs-22.0.93-r1.ebuild, emacs-cvs-22.0.93-r2.ebuild, + -emacs-cvs-22.0.9999-r1.ebuild, emacs-cvs-22.0.9999-r2.ebuild: + add a check for uncompressed man pages and clean up 03 Feb 2007; Christian Faulhammer <opfer@gentoo.org> emacs-cvs-22.0.93-r2.ebuild, emacs-cvs-22.0.9999-r2.ebuild: diff --git a/app-editors/emacs-cvs/emacs-cvs-22.0.93-r2.ebuild b/app-editors/emacs-cvs/emacs-cvs-22.0.93-r2.ebuild index f1452dd5a83d..332fadd1b0da 100644 --- a/app-editors/emacs-cvs/emacs-cvs-22.0.93-r2.ebuild +++ b/app-editors/emacs-cvs/emacs-cvs-22.0.93-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/app-editors/emacs-cvs/emacs-cvs-22.0.93-r2.ebuild,v 1.4 2007/02/03 11:21:02 opfer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs-cvs/emacs-cvs-22.0.93-r2.ebuild,v 1.5 2007/02/04 14:57:58 opfer Exp $ WANT_AUTOCONF="latest" WANT_AUTOMAKE="latest" @@ -169,6 +169,9 @@ EOF update-alternatives() { # extract the suffix of the manpages to determine the correct compression program local suffix=`ls /usr/share/man/man1/emacs.emacs-* |sed s/".*\."//g|tail -n 1` + if [ suffix = 1 ]; then + suffix="" + fi # this creates symlinks for binaries and man pages, so the correct ones in a slotted # environment can be accessed diff --git a/app-editors/emacs-cvs/emacs-cvs-22.0.9999-r2.ebuild b/app-editors/emacs-cvs/emacs-cvs-22.0.9999-r2.ebuild index 95ccbb49aaea..3a8bbe822d1f 100644 --- a/app-editors/emacs-cvs/emacs-cvs-22.0.9999-r2.ebuild +++ b/app-editors/emacs-cvs/emacs-cvs-22.0.9999-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/app-editors/emacs-cvs/emacs-cvs-22.0.9999-r2.ebuild,v 1.4 2007/02/03 11:21:02 opfer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs-cvs/emacs-cvs-22.0.9999-r2.ebuild,v 1.5 2007/02/04 14:57:58 opfer Exp $ ECVS_AUTH="pserver" ECVS_SERVER="cvs.savannah.gnu.org:/sources/emacs" @@ -174,6 +174,9 @@ EOF update-alternatives() { # extract the suffix of the manpages to determine the correct compression program local suffix=`ls /usr/share/man/man1/emacs.emacs-* |sed s/".*\."//g|tail -n 1` + if [ suffix = 1 ]; then + suffix="" + fi # this creates symlinks for binaries and man pages, so the correct ones in a slotted # environment can be accessed |