diff options
author | dholland <dholland@pkgsrc.org> | 2013-04-28 03:31:22 +0000 |
---|---|---|
committer | dholland <dholland@pkgsrc.org> | 2013-04-28 03:31:22 +0000 |
commit | 54bc6378bb8439d3e90c24be53e03ee526bf439e (patch) | |
tree | 54a7857e7515c2dc09b34783b50817856be7b38d /lang | |
parent | 625925a33baec2bb860738b3e8a7260c7334b093 (diff) | |
download | pkgsrc-54bc6378bb8439d3e90c24be53e03ee526bf439e.tar.gz |
Work around linux's broken sort(1).
Diffstat (limited to 'lang')
-rw-r--r-- | lang/japhar/distinfo | 4 | ||||
-rw-r--r-- | lang/japhar/patches/patch-am | 13 |
2 files changed, 13 insertions, 4 deletions
diff --git a/lang/japhar/distinfo b/lang/japhar/distinfo index 0fdfc14d282..6f1f6301ed5 100644 --- a/lang/japhar/distinfo +++ b/lang/japhar/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.8 2013/02/26 11:09:09 joerg Exp $ +$NetBSD: distinfo,v 1.9 2013/04/28 03:31:22 dholland Exp $ SHA1 (japhar-0.08.tar.gz) = 3f450610ca31061c1c183c8e86d1fcd47660f86d RMD160 (japhar-0.08.tar.gz) = 283f47db3a54f8f51d755a61fab94c611de13988 @@ -14,5 +14,5 @@ SHA1 (patch-ai) = c1ec2114b2fdaa00e4d8b5c5bcafc042b50ea077 SHA1 (patch-aj) = 592306809df6b5f0dd00bf8cfe1c73478222f2dc SHA1 (patch-ak) = 0075ab705a19ca055ee3c69d31031efa7091661d SHA1 (patch-al) = 8d94f91ad6ec7ff069dc74f6c6b9bc22c5c6885f -SHA1 (patch-am) = cf3055f178c7f8986e20a73677fde0c2e3a2c12f +SHA1 (patch-am) = a1b75b9a11bac76fc4c8a46a225f10b72534bd54 SHA1 (patch-lib_libnative_java.lang_system.c) = b53fe5ea61d130467a2cf4eff6a0e27dd458f80b diff --git a/lang/japhar/patches/patch-am b/lang/japhar/patches/patch-am index dd7facee4b5..e0e5902b717 100644 --- a/lang/japhar/patches/patch-am +++ b/lang/japhar/patches/patch-am @@ -1,6 +1,6 @@ -$NetBSD: patch-am,v 1.1 2006/06/06 15:40:15 joerg Exp $ +$NetBSD: patch-am,v 1.2 2013/04/28 03:31:22 dholland Exp $ ---- lib/libruntime/Makefile.in.orig 2006-06-06 15:22:19.000000000 +0000 +--- lib/libruntime/Makefile.in.orig 1999-03-16 03:24:42.000000000 +0000 +++ lib/libruntime/Makefile.in @@ -87,8 +87,7 @@ LIBS = @NEED_ZLIB_TRUE@ZLIB_INCLUDES = -I$(top_srcdir)/lib/zlib @@ -22,3 +22,12 @@ $NetBSD: patch-am,v 1.1 2006/06/06 15:40:15 joerg Exp $ objects.lo objects.o : objects.c ../../include/config.h \ ../../lib/libjni/include/jniint.h \ ../../lib/libjni/include/jni.h \ +@@ -527,7 +525,7 @@ mostlyclean distclean maintainer-clean + + # Make lookup table from opcode definitions + interploop.h: interpfunc.c +- grep OPCODE interpfunc.c | grep -v '#define' | sort -n +1 > interploop.h ++ grep OPCODE interpfunc.c | grep -v '#define' | sort -n -k 2 > interploop.h + + interploop.c: interploop.h + |