diff options
author | Matthew Kennedy <mkennedy@gentoo.org> | 2002-12-06 20:20:58 +0000 |
---|---|---|
committer | Matthew Kennedy <mkennedy@gentoo.org> | 2002-12-06 20:20:58 +0000 |
commit | 555ecf839f9f95f435b6e0e0451e658f8604f33a (patch) | |
tree | 506d11fe2019884fdbd319dd655d18e3732c2906 /app-editors | |
parent | app-crypt/heimdal dependencies fix & virtual/krb5 support (diff) | |
download | gentoo-2-555ecf839f9f95f435b6e0e0451e658f8604f33a.tar.gz gentoo-2-555ecf839f9f95f435b6e0e0451e658f8604f33a.tar.bz2 gentoo-2-555ecf839f9f95f435b6e0e0451e658f8604f33a.zip |
put emacs-cvs back into ~x86 as that seems to be the consensus on -core. fixed info documentation problem.
Diffstat (limited to 'app-editors')
-rw-r--r-- | app-editors/emacs-cvs/ChangeLog | 9 | ||||
-rw-r--r-- | app-editors/emacs-cvs/emacs-cvs-21.3.50.ebuild | 14 |
2 files changed, 19 insertions, 4 deletions
diff --git a/app-editors/emacs-cvs/ChangeLog b/app-editors/emacs-cvs/ChangeLog index 5753e842d5e0..26661750dfaf 100644 --- a/app-editors/emacs-cvs/ChangeLog +++ b/app-editors/emacs-cvs/ChangeLog @@ -1,9 +1,16 @@ # ChangeLog for app-editors/emacs-cvs # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs-cvs/ChangeLog,v 1.2 2002/12/02 12:41:56 mkennedy Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs-cvs/ChangeLog,v 1.3 2002/12/06 20:20:58 mkennedy Exp $ *emacs-cvs-21.3.50 (22 Nov 2002) + 06 Dec 2002; Matthew Kennedy <mkennedy@gentoo.org> ChangeLog, + emacs-cvs-21.3.50.ebuild : + + Back out of last ChangeLog entry as consensus on -core seems to be that + -cvs ebuilds should not be in the stable profiles. Added fix for info + documentation file names. + 02 Dev 2002; Matthew Kennedy <mkennedy@gentoo.org> ChangeLog, emacs-cvs-21.3.50.ebuild : diff --git a/app-editors/emacs-cvs/emacs-cvs-21.3.50.ebuild b/app-editors/emacs-cvs/emacs-cvs-21.3.50.ebuild index 39126307764c..a07f70974678 100644 --- a/app-editors/emacs-cvs/emacs-cvs-21.3.50.ebuild +++ b/app-editors/emacs-cvs/emacs-cvs-21.3.50.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs-cvs/emacs-cvs-21.3.50.ebuild,v 1.2 2002/12/02 12:41:56 mkennedy Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs-cvs/emacs-cvs-21.3.50.ebuild,v 1.3 2002/12/06 20:20:58 mkennedy Exp $ ECVS_SERVER="subversions.gnu.org:/cvsroot/emacs" ECVS_MODULE="emacs" @@ -20,7 +20,7 @@ HOMEPAGE="http://www.gnu.org/software/emacs" # Never use the sandbox, it causes Emacs to segfault on startup SANDBOX_DISABLED="1" -DEPEND=">=sys-libs/ncurses-5.2 +DEPEND=">=sys-libs/ncurses-5.3 sys-libs/gdbm dev-util/cvs X? ( virtual/x11 @@ -36,7 +36,7 @@ PROVIDE="virtual/emacs" SLOT="0" LICENSE="GPL-2" -KEYWORDS="x86 ~ppc ~sparc ~sparc64" +KEYWORDS="~x86 ~ppc ~sparc ~sparc64" src_compile() { local myconf @@ -73,5 +73,13 @@ src_install () { infodir=${D}/usr/share/info \ install || die + # fix info documentation + find ${D}/usr/share/info -type f -print |\ + while read i + do + mv ${i} ${i}.info + done + + dodoc BUGS ChangeLog README } |