pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/emulators/DatLib The archives are now unzipped with -L...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/0c1bcfe35d4c
branches:  trunk
changeset: 490533:0c1bcfe35d4c
user:      rillig <rillig%pkgsrc.org@localhost>
date:      Mon Mar 14 16:11:42 2005 +0000

description:
The archives are now unzipped with -Laaqo, forcing all files to be
interpreted as text files. Removed the DOS line endings from patch-aa.
Approved by wiz.

diffstat:

 emulators/DatLib/Makefile         |   3 +-
 emulators/DatLib/distinfo         |   4 +-
 emulators/DatLib/patches/patch-aa |  88 +++++++++++++++++++-------------------
 3 files changed, 48 insertions(+), 47 deletions(-)

diffs (125 lines):

diff -r 909458789bff -r 0c1bcfe35d4c emulators/DatLib/Makefile
--- a/emulators/DatLib/Makefile Mon Mar 14 16:06:46 2005 +0000
+++ b/emulators/DatLib/Makefile Mon Mar 14 16:11:42 2005 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.1.1.1 2005/03/04 12:05:12 wiz Exp $
+# $NetBSD: Makefile,v 1.2 2005/03/14 16:11:42 rillig Exp $
 #
 
 DISTNAME=              datlib22
@@ -16,6 +16,7 @@
 WRKSRC=                        ${WRKDIR}
 MAKEFILE=              makefile
 BUILD_TARGET=          datlib
+EXTRACT_CMD_OPTS.zip=  -Laaqo
 
 MAKE_ENV+=             RANLIB=${RANLIB:Q}
 
diff -r 909458789bff -r 0c1bcfe35d4c emulators/DatLib/distinfo
--- a/emulators/DatLib/distinfo Mon Mar 14 16:06:46 2005 +0000
+++ b/emulators/DatLib/distinfo Mon Mar 14 16:11:42 2005 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.1.1.1 2005/03/04 12:05:12 wiz Exp $
+$NetBSD: distinfo,v 1.2 2005/03/14 16:11:42 rillig Exp $
 
 SHA1 (datlib22.zip) = 422b88786d86325f1b5ac29c46fb1ef3c8dcf5e4
 RMD160 (datlib22.zip) = 527302e7b035dad554127c4adafce533ca03e034
 Size (datlib22.zip) = 80830 bytes
-SHA1 (patch-aa) = c3babe4b2843c0ff362aaa5f08b4278bbcd9340c
+SHA1 (patch-aa) = c589d437d71f9342cb15b1b0e731169b274bd6b0
diff -r 909458789bff -r 0c1bcfe35d4c emulators/DatLib/patches/patch-aa
--- a/emulators/DatLib/patches/patch-aa Mon Mar 14 16:06:46 2005 +0000
+++ b/emulators/DatLib/patches/patch-aa Mon Mar 14 16:11:42 2005 +0000
@@ -1,48 +1,48 @@
-$NetBSD: patch-aa,v 1.1.1.1 2005/03/04 12:05:13 wiz Exp $
+$NetBSD: patch-aa,v 1.2 2005/03/14 16:11:42 rillig Exp $
 
 --- makefile.orig      2005-02-24 23:39:10.000000000 +0100
 +++ makefile
 @@ -5,20 +5,20 @@
- MD=mkdir
- 
- CC=@gcc
--CFLAGS+=-Wall -O2 -I $(LOGIQX)/dev
-+CFLAGS+=-Wall -O2 -I .
- 
- LD=@gcc
- LIBS+=-lz -lm
- 
- UPX=@upx -9
- 
--DLSRC=$(LOGIQX)/dev/datlib/src
-+DLSRC=./src
- 
- DLINCS=       $(DLSRC)/macro.h \
-       $(DLSRC)/type.h \
-       $(DLSRC)/token.h \
- 
--DLOBJ=$(LOGIQX)/dev/datlib/obj
-+DLOBJ=./obj
- 
- DLOBJDIRS=$(DLOBJ) \
-       $(DLOBJ)/drv \
-@@ -42,7 +42,7 @@ DLOBJS=      $(DLOBJ)/datlib.o \
- # Build the obj tree then build the EXE
- #
- 
--datlib: dlmaketree $(DLOBJS)
-+datlib: dlmaketree $(DLOBJS) $(DLOBJ)/libdatlib.a
- 
- #
- # Creating obj directory tree
-@@ -53,6 +53,10 @@ dlmaketree: $(sort $(DLOBJDIRS))
- $(sort $(DLOBJDIRS)):
-       $(MD) $@
- 
-+$(DLOBJ)/libdatlib.a: $(DLOBJS)
-+      @echo Creating $@...
-+      $(AR) r $@ $(DLOBJS)
-+      $(RANLIB) $@
- #
- # Compiling of separate modules
- #
+ MD=mkdir
+ 
+ CC=@gcc
+-CFLAGS+=-Wall -O2 -I $(LOGIQX)/dev
++CFLAGS+=-Wall -O2 -I .
+ 
+ LD=@gcc
+ LIBS+=-lz -lm
+ 
+ UPX=@upx -9
+ 
+-DLSRC=$(LOGIQX)/dev/datlib/src
++DLSRC=./src
+ 
+ DLINCS=       $(DLSRC)/macro.h \
+       $(DLSRC)/type.h \
+       $(DLSRC)/token.h \
+ 
+-DLOBJ=$(LOGIQX)/dev/datlib/obj
++DLOBJ=./obj
+ 
+ DLOBJDIRS=$(DLOBJ) \
+       $(DLOBJ)/drv \
+@@ -42,7 +42,7 @@ DLOBJS=      $(DLOBJ)/datlib.o \
+ # Build the obj tree then build the EXE
+ #
+ 
+-datlib: dlmaketree $(DLOBJS)
++datlib: dlmaketree $(DLOBJS) $(DLOBJ)/libdatlib.a
+ 
+ #
+ # Creating obj directory tree
+@@ -53,6 +53,10 @@ dlmaketree: $(sort $(DLOBJDIRS))
+ $(sort $(DLOBJDIRS)):
+       $(MD) $@
+ 
++$(DLOBJ)/libdatlib.a: $(DLOBJS)
++      @echo Creating $@...
++      $(AR) r $@ $(DLOBJS)
++      $(RANLIB) $@
+ #
+ # Compiling of separate modules
+ #



Home | Main Index | Thread Index | Old Index