aboutsummaryrefslogtreecommitdiff
path: root/devel/mcpp
diff options
context:
space:
mode:
authorRong-En Fan <rafan@FreeBSD.org>2008-03-31 06:24:40 +0000
committerRong-En Fan <rafan@FreeBSD.org>2008-03-31 06:24:40 +0000
commit3c0e6885c54ab7dd39161b7592c69ae61fc47e75 (patch)
tree5f97a51e777868303b3afd429d18dee96958c912 /devel/mcpp
parent38e0ca0a61566a2df5a1b1675d273e94e1dd4b48 (diff)
downloadports-3c0e6885c54ab7dd39161b7592c69ae61fc47e75.tar.gz
ports-3c0e6885c54ab7dd39161b7592c69ae61fc47e75.zip
Notes
Diffstat (limited to 'devel/mcpp')
-rw-r--r--devel/mcpp/Makefile6
-rw-r--r--devel/mcpp/distinfo6
-rw-r--r--devel/mcpp/files/patch-system.h25
3 files changed, 5 insertions, 32 deletions
diff --git a/devel/mcpp/Makefile b/devel/mcpp/Makefile
index c8e59eb133ae..5e88f12162f3 100644
--- a/devel/mcpp/Makefile
+++ b/devel/mcpp/Makefile
@@ -6,11 +6,9 @@
#
PORTNAME= mcpp
-PORTVERSION= 2.6.4
-PORTREVISION= 1
+PORTVERSION= 2.7
CATEGORIES= devel
-MASTER_SITES= http://prdownloads.sourceforge.net/mcpp/ \
- http://jaist.dl.sourceforge.net/sourceforge/mcpp/
+MASTER_SITES= SF
MAINTAINER= kmatsui@t3.rim.or.jp
COMMENT= Alternative C/C++ preprocessor
diff --git a/devel/mcpp/distinfo b/devel/mcpp/distinfo
index 29f990c5d7b0..fc6aa25db388 100644
--- a/devel/mcpp/distinfo
+++ b/devel/mcpp/distinfo
@@ -1,3 +1,3 @@
-MD5 (mcpp-2.6.4.tar.gz) = c0f5aa9b13e36ea0f2ab9358c5d65153
-SHA256 (mcpp-2.6.4.tar.gz) = 498ec0e2ef641e3e24c7f3114821a3219dfa2cf93c670b8cb72c529114f68752
-SIZE (mcpp-2.6.4.tar.gz) = 1302617
+MD5 (mcpp-2.7.tar.gz) = 14f9e4155aeb5812fc3ced6345caee02
+SHA256 (mcpp-2.7.tar.gz) = 92ecb4d83682810cf207d248004d0d9e4e242c0ef0b96111d2eecde6fc6a3902
+SIZE (mcpp-2.7.tar.gz) = 1376480
diff --git a/devel/mcpp/files/patch-system.h b/devel/mcpp/files/patch-system.h
deleted file mode 100644
index f8508f018ebc..000000000000
--- a/devel/mcpp/files/patch-system.h
+++ /dev/null
@@ -1,25 +0,0 @@
-Place this text as ports/devel/mcpp/files/patch-src-system.H.
-I copy and paste the file here, since attaching file does not work somehow.
-TABs are lost in this. Please en-tab in the first two tag-lines.
-
---- src/system.H.orig Wed May 2 21:37:29 2007
-+++ src/system.H Sun Jun 3 16:51:33 2007
-@@ -49,7 +49,16 @@
-
- /* Some system has a wrong definition of UCHAR_MAX. See cpp-test.html#5.1.3 */
- #if UCHARMAX < -255
-+#if __FreeBSD__
-+/*
-+ * This is a temporary patch for FreeBSD on amd64, alpha, ia64 and sparc64.
-+ * limits.h of these systems wrongly define UCHAR_MAX as 255U.
-+ */
-+#undef UCHARMAX
-+#define UCHARMAX 255
-+#else
- #error "The definition of UCHARMAX (possibly UCHAR_MAX too) is wrong. Define it as signed int value as 255, not as unsigned value as 255U."
-+#endif
- #endif
-
- /*
-
-