summaryrefslogtreecommitdiff
path: root/devel
diff options
context:
space:
mode:
authordholland <dholland@pkgsrc.org>2016-12-16 18:30:58 +0000
committerdholland <dholland@pkgsrc.org>2016-12-16 18:30:58 +0000
commite3c3bd8a574610c44da5f842c449841df1b0b0f9 (patch)
tree4e32f9d45a3969969af7150fb92d290f1f3832ff /devel
parent90704ed0b51bf7207adf722d4f597ee290e1ec44 (diff)
downloadpkgsrc-e3c3bd8a574610c44da5f842c449841df1b0b0f9.tar.gz
try again, this time with the patch
Diffstat (limited to 'devel')
-rw-r--r--devel/tradcpp/Makefile4
-rw-r--r--devel/tradcpp/patches/patch-config.h15
2 files changed, 17 insertions, 2 deletions
diff --git a/devel/tradcpp/Makefile b/devel/tradcpp/Makefile
index 7bde4a30ca5..f0b71cebd45 100644
--- a/devel/tradcpp/Makefile
+++ b/devel/tradcpp/Makefile
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.11 2016/12/16 04:56:04 dholland Exp $
+# $NetBSD: Makefile,v 1.12 2016/12/16 18:30:58 dholland Exp $
#
DISTNAME= tradcpp-0.5.2
-PKGREVISION= 1
+PKGREVISION= 2
CATEGORIES= devel
MASTER_SITES= http://ftp.NetBSD.org/pub/NetBSD/misc/dholland/
diff --git a/devel/tradcpp/patches/patch-config.h b/devel/tradcpp/patches/patch-config.h
new file mode 100644
index 00000000000..291b7908a4a
--- /dev/null
+++ b/devel/tradcpp/patches/patch-config.h
@@ -0,0 +1,15 @@
+$NetBSD: patch-config.h,v 1.1 2016/12/16 18:30:58 dholland Exp $
+
+Recognize __ia64__. (from upstream tree)
+
+--- config.h.orig 2016-09-04 21:16:39.000000000 +0000
++++ config.h
+@@ -124,6 +124,8 @@
+ #define CONFIG_CPU "__ppc64__"
+ #elif defined(__ARM__)
+ #define CONFIG_CPU "__ARM__"
++#elif defined(__ia64__)
++#define CONFIG_CPU "__ia64__"
+ #else
+ /* let it go */
+ #endif