diff options
author | Ryan Phillips <rphillips@gentoo.org> | 2002-09-25 20:09:16 +0000 |
---|---|---|
committer | Ryan Phillips <rphillips@gentoo.org> | 2002-09-25 20:09:16 +0000 |
commit | 86babf5484663355d5b0f63fe9dec1b0815d0623 (patch) | |
tree | 74bd31488802443d49e3bb5961d86ed42fdd8f30 /app-editors/e3 | |
parent | Patched for compile and install problems. Added X and alsa USE variable (diff) | |
download | gentoo-2-86babf5484663355d5b0f63fe9dec1b0815d0623.tar.gz gentoo-2-86babf5484663355d5b0f63fe9dec1b0815d0623.tar.bz2 gentoo-2-86babf5484663355d5b0f63fe9dec1b0815d0623.zip |
Added nostrip option and added patch... Fixes #2937
Diffstat (limited to 'app-editors/e3')
-rw-r--r-- | app-editors/e3/ChangeLog | 6 | ||||
-rw-r--r-- | app-editors/e3/e3-2.33.ebuild | 3 | ||||
-rw-r--r-- | app-editors/e3/files/e3-2.33-gentoo.diff | 32 |
3 files changed, 39 insertions, 2 deletions
diff --git a/app-editors/e3/ChangeLog b/app-editors/e3/ChangeLog index ea4fad46508b..9186f0ea4e94 100644 --- a/app-editors/e3/ChangeLog +++ b/app-editors/e3/ChangeLog @@ -1,9 +1,13 @@ # ChangeLog for app-editors/e3 # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/app-editors/e3/ChangeLog,v 1.2 2002/05/24 06:59:27 rphillips Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/e3/ChangeLog,v 1.3 2002/09/25 20:09:16 rphillips Exp $ *e3-2.33 (23 May 2002) + 26 Sep 2002; Ryan Phillips <rphillips@gentoo.org> e3-2.33.ebuild : + + Added nostrip option and added patch.. Fixes #2937 + 23 May 2002; Ryan Phillips <rphillips@gentoo.org> e3-2.33.ebuild : Updated Package. Fixes #2937 diff --git a/app-editors/e3/e3-2.33.ebuild b/app-editors/e3/e3-2.33.ebuild index 627fe1f8189e..3910b15ddcf1 100644 --- a/app-editors/e3/e3-2.33.ebuild +++ b/app-editors/e3/e3-2.33.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # -# $Header: /var/cvsroot/gentoo-x86/app-editors/e3/e3-2.33.ebuild,v 1.5 2002/09/21 23:28:31 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/e3/e3-2.33.ebuild,v 1.6 2002/09/25 20:09:16 rphillips Exp $ S=${WORKDIR}/${P} DESCRIPTION="Super Tiny Editor with wordstar, vi, and emacs key bindings" @@ -10,6 +10,7 @@ HOMEPAGE="http://www.sax.de/~adlibit" DEPEND="dev-lang/nasm" RDEPEND="sys-apps/sed" +RESTRICT="nostrip" SLOT="0" LICENSE="GPL-2" KEYWORDS="x86 -ppc -sparc -sparc64" diff --git a/app-editors/e3/files/e3-2.33-gentoo.diff b/app-editors/e3/files/e3-2.33-gentoo.diff new file mode 100644 index 000000000000..085df6178c44 --- /dev/null +++ b/app-editors/e3/files/e3-2.33-gentoo.diff @@ -0,0 +1,32 @@ +diff -r -C2 e3-2.33.orig/Makefile e3-2.33/Makefile +*** e3-2.33.orig/Makefile Sun Apr 22 07:40:34 2001 +--- e3-2.33/Makefile Sat Aug 18 14:25:35 2001 +*************** +*** 39,43 **** + # upx -q -q -q -k -9 e3 ; \ + # fi ; +! if which gzexe > /dev/null 2>&1 ; then gzexe e3; fi; + else + nasm $(AFLAGS) -o e3.o $(ASOURCES) -l e3.lst -D$(OS) -D$(EXMODE) +--- 39,43 ---- + # upx -q -q -q -k -9 e3 ; \ + # fi ; +! # if which gzexe > /dev/null 2>&1 ; then gzexe e3; fi; + else + nasm $(AFLAGS) -o e3.o $(ASOURCES) -l e3.lst -D$(OS) -D$(EXMODE) +diff -r -C2 e3-2.33.orig/e3.asm e3-2.33/e3.asm +*** e3-2.33.orig/e3.asm Sun Jul 8 12:31:25 2001 +--- e3-2.33/e3.asm Sat Aug 18 14:25:47 2001 +*************** +*** 23,27 **** + %define VI 8 + %define NE 16 +! %define DEFAULT_MODE WS ;<---- select one of WS, EM, NE, PI, VI + %define MAKE_BACKUP + %define LESSWRITEOPS +--- 23,27 ---- + %define VI 8 + %define NE 16 +! %define DEFAULT_MODE PI ;<---- select one of WS, EM, NE, PI, VI + %define MAKE_BACKUP + %define LESSWRITEOPS |