diff options
author | Christian Faulhammer <opfer@gentoo.org> | 2007-02-06 06:09:41 +0000 |
---|---|---|
committer | Christian Faulhammer <opfer@gentoo.org> | 2007-02-06 06:09:41 +0000 |
commit | a5332938b4e5da1dee8a669c6c7977767b4b107f (patch) | |
tree | 6b055b14fec83f47d8780d18632d655892bd01ea /app-editors | |
parent | made the definition of suffix variable more elegant (thanks to Ulrich Müller... (diff) | |
download | gentoo-2-a5332938b4e5da1dee8a669c6c7977767b4b107f.tar.gz gentoo-2-a5332938b4e5da1dee8a669c6c7977767b4b107f.tar.bz2 gentoo-2-a5332938b4e5da1dee8a669c6c7977767b4b107f.zip |
made the definition of suffix variable more elegant (thanks to Ulrich Müller <ulm@kph.uni-mainz.de>; removed emacsclient from man page symlinking; added gfdl at the same place
(Portage version: 2.1.1-r2)
Diffstat (limited to 'app-editors')
-rw-r--r-- | app-editors/emacs/ChangeLog | 7 | ||||
-rw-r--r-- | app-editors/emacs/emacs-21.4-r6.ebuild | 9 |
2 files changed, 9 insertions, 7 deletions
diff --git a/app-editors/emacs/ChangeLog b/app-editors/emacs/ChangeLog index 7d7ba6d5ac92..f038c925347f 100644 --- a/app-editors/emacs/ChangeLog +++ b/app-editors/emacs/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-editors/emacs # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/ChangeLog,v 1.117 2007/02/04 14:54:31 opfer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/ChangeLog,v 1.118 2007/02/06 06:09:41 opfer Exp $ + + 06 Feb 2007; Christian Faulhammer <opfer@gentoo.org> emacs-21.4-r6.ebuild: + made the definition of suffix variable more elegant (thanks to Ulrich + Müller <ulm@kph.uni-mainz.de>; removed emacsclient from man page + symlinking; added gfdl at the same place 04 Feb 2007; Christian Faulhammer <opfer@gentoo.org> -emacs-21.4-r5.ebuild, emacs-21.4-r6.ebuild: diff --git a/app-editors/emacs/emacs-21.4-r6.ebuild b/app-editors/emacs/emacs-21.4-r6.ebuild index 2e3e5b532332..38a475557e14 100644 --- a/app-editors/emacs/emacs-21.4-r6.ebuild +++ b/app-editors/emacs/emacs-21.4-r6.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/emacs-21.4-r6.ebuild,v 1.5 2007/02/04 14:54:31 opfer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/emacs-21.4-r6.ebuild,v 1.6 2007/02/06 06:09:41 opfer Exp $ inherit flag-o-matic eutils alternatives toolchain-funcs @@ -160,10 +160,7 @@ src_install() { 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 + local suffix=$(echo /usr/share/man/man1/emacs.emacs-*.1*|sed 's/.*\.1//') # this creates symlinks for binaries and man pages, so the correct ones in a slotted # environment can be accessed @@ -172,7 +169,7 @@ update-alternatives() { alternatives_auto_makesym "/usr/bin/$i" "/usr/bin/${i}.emacs-*" done - for j in emacs emacsclient etags ctags + for j in emacs etags ctags gfdl do alternatives_auto_makesym "/usr/share/man/man1/$j.1${suffix}" "/usr/share/man/man1/$j.emacs-*" done |