diff options
author | obache <obache> | 2009-10-07 10:50:59 +0000 |
---|---|---|
committer | obache <obache> | 2009-10-07 10:50:59 +0000 |
commit | b3b942b598c09e92cc52df5a59c95b52a2b1807f (patch) | |
tree | 3a38a55f7e2880a12fbbdf4070d529035f697144 /editors/emacs22 | |
parent | 80f6915a12904109b1d56b20298e39debadb147f (diff) | |
download | pkgsrc-b3b942b598c09e92cc52df5a59c95b52a2b1807f.tar.gz |
prevent unrequisite warning message on NetBSD-Alpha,
as reported in PR 39027.
Bump PKGREVISION.
Diffstat (limited to 'editors/emacs22')
-rw-r--r-- | editors/emacs22/Makefile | 4 | ||||
-rw-r--r-- | editors/emacs22/distinfo | 3 | ||||
-rw-r--r-- | editors/emacs22/patches/patch-ac | 13 |
3 files changed, 17 insertions, 3 deletions
diff --git a/editors/emacs22/Makefile b/editors/emacs22/Makefile index d1967175407..323fe337b82 100644 --- a/editors/emacs22/Makefile +++ b/editors/emacs22/Makefile @@ -1,10 +1,10 @@ -# $NetBSD: Makefile,v 1.3 2009/09/13 02:12:28 jun Exp $ +# $NetBSD: Makefile,v 1.4 2009/10/07 10:50:59 obache Exp $ PKGNAME?= ${DISTNAME} COMMENT?= GNU editing macros (editor) DISTNAME= emacs-22.3 -PKGREVISION= 4 +PKGREVISION= 5 CATEGORIES= editors MASTER_SITES= ${MASTER_SITE_GNU:=emacs/} diff --git a/editors/emacs22/distinfo b/editors/emacs22/distinfo index 361e00c309c..68b02eb51a5 100644 --- a/editors/emacs22/distinfo +++ b/editors/emacs22/distinfo @@ -1,10 +1,11 @@ -$NetBSD: distinfo,v 1.4 2009/09/21 10:10:58 jun Exp $ +$NetBSD: distinfo,v 1.5 2009/10/07 10:50:59 obache Exp $ SHA1 (emacs-22.3.tar.gz) = 5e9b3e0205099a83be7198fd43ba1c9442a3feb0 RMD160 (emacs-22.3.tar.gz) = a7eed5099d0cab25f34152f1b18b5c1b4e2e0746 Size (emacs-22.3.tar.gz) = 39587396 bytes SHA1 (patch-aa) = e99831448b12ba9cc99b5530dc7de949b44c4337 SHA1 (patch-ab) = 01ef535f7eca86ff325ed2f2a952ac50e9a59492 +SHA1 (patch-ac) = c36626c2639b6aedf9ba6f90962e9a858fdec0a8 SHA1 (patch-ad) = b45adb120cca8fd294cdcefbb706d01319f98131 SHA1 (patch-ae) = 5468981ef9a5ba21460b4549804d49b1c66a968f SHA1 (patch-aj) = 21627a4528d28b666aa0f708359a617bf3253aaa diff --git a/editors/emacs22/patches/patch-ac b/editors/emacs22/patches/patch-ac new file mode 100644 index 00000000000..ed246b72262 --- /dev/null +++ b/editors/emacs22/patches/patch-ac @@ -0,0 +1,13 @@ +$NetBSD: patch-ac,v 1.1 2009/10/07 10:50:59 obache Exp $ + +--- src/m/alpha.h.orig 2008-01-08 13:04:36.000000000 +0900 ++++ src/m/alpha.h +@@ -106,7 +106,7 @@ NOTE-END + #ifdef __ELF__ + #undef UNEXEC + #define UNEXEC unexelf.o +-#ifndef LINUX ++#if !defined(LINUX) && !defined(__NetBSD__) + #define DATA_START 0x140000000 + #endif + #endif |