summaryrefslogtreecommitdiff
path: root/devel/tavrasm
diff options
context:
space:
mode:
authordillo <dillo>2002-08-20 08:30:45 +0000
committerdillo <dillo>2002-08-20 08:30:45 +0000
commit0fa00776da1cb96592d607c62e4bbab4aa7e2800 (patch)
tree07169c2513f49e381e4b5bfde4e5036d27f67553 /devel/tavrasm
parentd10ad34ca5b6a5f41c0a0fd3943095b03866b177 (diff)
downloadpkgsrc-0fa00776da1cb96592d607c62e4bbab4aa7e2800.tar.gz
update to 1.17 (old distfile no longer available)
changes since last pkgsrc version (1.15): 1.17 - Added support for the BYTE1 (same as LOW) function. Thanks to Timothy Lee for supplying this patch. - Fixed path delimiter problem in include path. I used DOS style '\' causing problems on *NIX. Thanks to Timothy Lee for reporting this. 1.16 - Fixed problem with long macro names. Thanks to Richard Gerrits for reporting this. - Increased maximum identifier length to 64 (and no, this was not the fix to the problem above :). - Added support for using DOS (\13\10) files on *NIX systems. - Change URL to www.tavrasm.org in help/README/...
Diffstat (limited to 'devel/tavrasm')
-rw-r--r--devel/tavrasm/Makefile6
-rw-r--r--devel/tavrasm/distinfo8
-rw-r--r--devel/tavrasm/patches/patch-aa18
3 files changed, 13 insertions, 19 deletions
diff --git a/devel/tavrasm/Makefile b/devel/tavrasm/Makefile
index e4adeac79f7..301db75e7c7 100644
--- a/devel/tavrasm/Makefile
+++ b/devel/tavrasm/Makefile
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.5 2001/09/27 23:17:58 jlam Exp $
+# $NetBSD: Makefile,v 1.6 2002/08/20 08:30:45 dillo Exp $
#
DISTNAME= tavrasm
-PKGNAME= ${DISTNAME}-1.15
+PKGNAME= ${DISTNAME}-1.17
CATEGORIES= devel
MASTER_SITES= http://www.tavrasm.org/
@@ -12,7 +12,7 @@ COMMENT= assembler for the Atmel AVR series of microcontrollers
BUILD_DEPENDS+= bison-[0-9]*:../../devel/bison
-WRKSRCTOP= ${WRKDIR}/tavrasm.115
+WRKSRCTOP= ${WRKDIR}/tavrasm.117
WRKSRC= ${WRKSRCTOP}/src
MAKEFILE= makefile
diff --git a/devel/tavrasm/distinfo b/devel/tavrasm/distinfo
index e2982061931..c686f09db5b 100644
--- a/devel/tavrasm/distinfo
+++ b/devel/tavrasm/distinfo
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.2 2001/04/21 00:44:48 wiz Exp $
+$NetBSD: distinfo,v 1.3 2002/08/20 08:30:46 dillo Exp $
-SHA1 (tavrasm-1.15/tavrasm.tar.gz) = 94ef02c1d317fb3f616d06580f08d16b78812dd7
-Size (tavrasm-1.15/tavrasm.tar.gz) = 60729 bytes
-SHA1 (patch-aa) = e6844196e0a55b6a969a811ee1325d2c975ffe4c
+SHA1 (tavrasm-1.17/tavrasm.tar.gz) = 08b1a789d6cbcabd3d4aa04dd2376fa9bf7a5dee
+Size (tavrasm-1.17/tavrasm.tar.gz) = 61047 bytes
+SHA1 (patch-aa) = 610a9d14c1ca7ae245cebd72b326fb6ad8f3ef4f
diff --git a/devel/tavrasm/patches/patch-aa b/devel/tavrasm/patches/patch-aa
index f1ffd7ef677..a907758391f 100644
--- a/devel/tavrasm/patches/patch-aa
+++ b/devel/tavrasm/patches/patch-aa
@@ -1,14 +1,8 @@
-$NetBSD: patch-aa,v 1.1.1.1 2000/12/16 16:53:14 wiz Exp $
+$NetBSD: patch-aa,v 1.2 2002/08/20 08:30:46 dillo Exp $
---- makefile.orig Thu Nov 2 11:44:48 2000
-+++ makefile Fri Dec 15 16:36:50 2000
-@@ -26,11 +26,13 @@
-
- #CC = egcs
- CC = gcc
--CFLAGS = -O2 -m486 -Wall -DAVRLANG=LANGUAGE_$(LANGUAGE)
-+CFLAGS = -O2 -Wall -DAVRLANG=LANGUAGE_$(LANGUAGE)
- CPPFLAGS =
+--- makefile.orig Tue Apr 3 10:27:39 2001
++++ makefile
+@@ -30,6 +30,8 @@ CPPFLAGS =
CCFLAGS = $(CFLAGS) $(CPPFLAGS)
LINK = -lm
OBJS = avrparse.o avrlex.o avrasm.o symbol.o semantic.o utils.o
@@ -17,7 +11,7 @@ $NetBSD: patch-aa,v 1.1.1.1 2000/12/16 16:53:14 wiz Exp $
### Defaul CC files #########################################################
-@@ -39,13 +41,15 @@
+@@ -38,13 +40,15 @@ OBJS = avrparse.o avrlex.o avrasm.o sym
### Executable ##############################################################
@@ -34,7 +28,7 @@ $NetBSD: patch-aa,v 1.1.1.1 2000/12/16 16:53:14 wiz Exp $
mv avrparse avrparse.cc
mv avrparse.h avrparse.hh
-@@ -53,12 +57,12 @@
+@@ -52,12 +56,12 @@ avrparse.cc: avrparse.y avrasm.hh symbol
avrlex.cc: avrparse.cc avrlex.l symbol.hh semantic.hh avrparse.hh \
opcodes.hh avrasm.hh messages.hh