pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/devel/sdcc Patch up broken makefiles hidden by failure...
details: https://anonhg.NetBSD.org/pkgsrc/rev/0bd6ac86cda7
branches: trunk
changeset: 603414:0bd6ac86cda7
user: dholland <dholland%pkgsrc.org@localhost>
date: Sun May 06 04:14:02 2012 +0000
description:
Patch up broken makefiles hidden by failure to check for error in shell
loops.
diffstat:
devel/sdcc/distinfo | 10 ++++++++--
devel/sdcc/patches/patch-as_Makefile_in | 16 ++++++++++++++++
devel/sdcc/patches/patch-as_link_Makefile_in | 16 ++++++++++++++++
devel/sdcc/patches/patch-doc_Makefile_in | 16 ++++++++++++++++
devel/sdcc/patches/patch-sim_ucsim_doc_Makefile_in | 16 ++++++++++++++++
devel/sdcc/patches/patch-support_cpp2_Makefile_in | 16 ++++++++++++++++
devel/sdcc/patches/patch-support_makebin_Makefile_in | 16 ++++++++++++++++
7 files changed, 104 insertions(+), 2 deletions(-)
diffs (142 lines):
diff -r 7e013bb71895 -r 0bd6ac86cda7 devel/sdcc/distinfo
--- a/devel/sdcc/distinfo Sun May 06 04:13:35 2012 +0000
+++ b/devel/sdcc/distinfo Sun May 06 04:14:02 2012 +0000
@@ -1,10 +1,16 @@
-$NetBSD: distinfo,v 1.17 2012/05/06 03:07:23 dholland Exp $
+$NetBSD: distinfo,v 1.18 2012/05/06 04:14:02 dholland Exp $
SHA1 (sdcc-src-2.8.0.tar.bz2) = 487a9c576130bb1bfb225fe36984f485aac0f513
RMD160 (sdcc-src-2.8.0.tar.bz2) = b91d6ca5642011f0e735c63e0ed4bc6b33128b9f
Size (sdcc-src-2.8.0.tar.bz2) = 3460693 bytes
SHA1 (patch-Makefile_in) = 024ed627a88c2d17ac3981c59ec186a8a8ef48d3
SHA1 (patch-aa) = 7ef1d2d005340b0e18039ff14334b889df5b8b3f
-SHA1 (patch-sim_ucsim_cmd.src_Makefile.in) = e31d041b38fc372ffd513522ec33c12a61c6c67c
+SHA1 (patch-as_Makefile_in) = 1077722b49028e583f1cc82a2a027d09d59c71ad
+SHA1 (patch-as_link_Makefile_in) = 7e7a596ae5f6293669d1c30eab94215d68067670
+SHA1 (patch-doc_Makefile_in) = bfb976234319c3623665da30dbfe40714499a6f1
+SHA1 (patch-sim_ucsim_cmd.src_Makefile.in) = 469680363f2e5b2d7e1e6384b7da5146dcb133ed
SHA1 (patch-sim_ucsim_cmd.src_cmdlex.cc) = e02bdf0d70d060646f6473bad6477687c4360144
SHA1 (patch-sim_ucsim_cmd.src_cmdlex.l) = 4efc91e3c1a0beefded5be5cce256c23e216319f
+SHA1 (patch-sim_ucsim_doc_Makefile_in) = acb451d699535af6d60314eaf0143a873735b228
+SHA1 (patch-support_cpp2_Makefile_in) = 72b9fe08b8c7f26047fa667dd88c64bac45db01c
+SHA1 (patch-support_makebin_Makefile_in) = 226ad246ea6a8d3c0a15799ccfba6a124e611994
diff -r 7e013bb71895 -r 0bd6ac86cda7 devel/sdcc/patches/patch-as_Makefile_in
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/sdcc/patches/patch-as_Makefile_in Sun May 06 04:14:02 2012 +0000
@@ -0,0 +1,16 @@
+$NetBSD: patch-as_Makefile_in,v 1.1 2012/05/06 04:14:02 dholland Exp $
+
+Actually define all the targets used by the package's upper-level
+makefiles.
+
+--- as/Makefile.in~ 2007-01-03 21:19:58.000000000 +0000
++++ as/Makefile.in
+@@ -13,6 +13,8 @@ DOCS = README abstra.doc appendk.txt asm
+ all:
+ $(MAKE) -C z80 _as-z80 _as-gbz80 E=$(E) BUILDDIR=$(BUILDDIR)
+
++dep: ;
++
+ install: all install-doc
+ $(INSTALL) $(top_builddir)/bin/as-z80$(EXEEXT) `echo $(DESTDIR)$(bindir)/as-z80$(EXEEXT)|sed '$(transform)'`
+ $(STRIP) `echo $(DESTDIR)$(bindir)/as-z80$(EXEEXT)|sed '$(transform)'`
diff -r 7e013bb71895 -r 0bd6ac86cda7 devel/sdcc/patches/patch-as_link_Makefile_in
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/sdcc/patches/patch-as_link_Makefile_in Sun May 06 04:14:02 2012 +0000
@@ -0,0 +1,16 @@
+$NetBSD: patch-as_link_Makefile_in,v 1.1 2012/05/06 04:14:02 dholland Exp $
+
+Actually define all the targets used by the package's upper-level
+makefiles.
+
+--- as/link/Makefile.in~ 2007-01-03 21:19:58.000000000 +0000
++++ as/link/Makefile.in
+@@ -9,6 +9,8 @@ PORTS = z80 gbz80
+ all:
+ $(MAKE) -C z80 _link-z80 _link-gbz80 E=$(E) BUILDDIR=../../../bin/
+
++dep: ;
++
+ install: all
+ $(INSTALL) $(top_builddir)/bin/link-z80$(EXEEXT) `echo $(DESTDIR)$(bindir)/link-z80$(EXEEXT)|sed '$(transform)'`
+ $(STRIP) `echo $(DESTDIR)$(bindir)/link-z80$(EXEEXT)|sed '$(transform)'`
diff -r 7e013bb71895 -r 0bd6ac86cda7 devel/sdcc/patches/patch-doc_Makefile_in
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/sdcc/patches/patch-doc_Makefile_in Sun May 06 04:14:02 2012 +0000
@@ -0,0 +1,16 @@
+$NetBSD: patch-doc_Makefile_in,v 1.1 2012/05/06 04:14:02 dholland Exp $
+
+Actually define all the targets used by the package's upper-level
+makefiles.
+
+--- doc/Makefile.in~ 2006-06-17 21:40:28.000000000 +0000
++++ doc/Makefile.in
+@@ -17,6 +17,8 @@ all: $(MANUAL).pdf $(MANUAL).html/index.
+ $(TSS).pdf $(TSS).html/index.html $(TSS).txt \
+ $(CDB).pdf $(CDB).html/index.html $(CDB).txt
+
++dep: ;
++
+ install:
+ $(INSTALL) -d $(DESTDIR)$(docdir)
+ cp -rf $(srcdir)/*.txt $(srcdir)/z80 $(srcdir)/avr $(DESTDIR)$(docdir)
diff -r 7e013bb71895 -r 0bd6ac86cda7 devel/sdcc/patches/patch-sim_ucsim_doc_Makefile_in
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/sdcc/patches/patch-sim_ucsim_doc_Makefile_in Sun May 06 04:14:02 2012 +0000
@@ -0,0 +1,16 @@
+$NetBSD: patch-sim_ucsim_doc_Makefile_in,v 1.1 2012/05/06 04:14:02 dholland Exp $
+
+Actually define all the targets used by the package's upper-level
+makefiles.
+
+--- sim/ucsim/doc/Makefile.in~ 2007-01-03 21:19:58.000000000 +0000
++++ sim/ucsim/doc/Makefile.in
+@@ -70,6 +70,8 @@ installdirs:
+
+ # Creating dependencies
+ # ---------------------
++dep: ;
++
+ include $(srcdir)/clean.mk
+
+ # My rules
diff -r 7e013bb71895 -r 0bd6ac86cda7 devel/sdcc/patches/patch-support_cpp2_Makefile_in
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/sdcc/patches/patch-support_cpp2_Makefile_in Sun May 06 04:14:02 2012 +0000
@@ -0,0 +1,16 @@
+$NetBSD: patch-support_cpp2_Makefile_in,v 1.1 2012/05/06 04:14:02 dholland Exp $
+
+Actually define all the targets used by the package's upper-level
+makefiles.
+
+--- support/cpp2/Makefile.in~ 2007-06-01 16:31:56.000000000 +0000
++++ support/cpp2/Makefile.in
+@@ -114,6 +114,8 @@ OBSTACK=obstack.o
+
+ # End of variables for you to override.
+
++dep: ;
++
+ install: all
+ mkdir -p $(DESTDIR)$(bindir)
+ $(INSTALL) $(TARGET) `echo $(DESTDIR)$(bindir)/sdcpp$(EXEEXT)|sed '$(transform)'`
diff -r 7e013bb71895 -r 0bd6ac86cda7 devel/sdcc/patches/patch-support_makebin_Makefile_in
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/sdcc/patches/patch-support_makebin_Makefile_in Sun May 06 04:14:02 2012 +0000
@@ -0,0 +1,16 @@
+$NetBSD: patch-support_makebin_Makefile_in,v 1.1 2012/05/06 04:14:02 dholland Exp $
+
+Actually define all the targets used by the package's upper-level
+makefiles.
+
+--- support/makebin/Makefile.in~ 2007-01-03 21:19:58.000000000 +0000
++++ support/makebin/Makefile.in
+@@ -14,6 +14,8 @@ $(BIN): $(OBJ)
+ mkdir -p $(top_builddir)/bin
+ $(CC) $(LDFLAGS) -o $(BIN) $(OBJ)
+
++dep: ;
++
+ install: all
+ mkdir -p $(DESTDIR)$(bindir)
+ $(INSTALL) $(BIN) `echo $(DESTDIR)$(bindir)/makebin$(EXEEXT)|sed '$(transform)'`
Home |
Main Index |
Thread Index |
Old Index