diff options
author | thierry <thierry@FreeBSD.org> | 2005-11-12 02:29:35 +0800 |
---|---|---|
committer | thierry <thierry@FreeBSD.org> | 2005-11-12 02:29:35 +0800 |
commit | 15638f8252cdfa1a98095a4f150e40467089e606 (patch) | |
tree | 9f080c944be858827ce956add8af31d1295cdb87 | |
parent | 18872cd93bf3637fbf42c847a8b4580c6d1d0009 (diff) | |
download | freebsd-ports-gnome-15638f8252cdfa1a98095a4f150e40467089e606.tar.gz freebsd-ports-gnome-15638f8252cdfa1a98095a4f150e40467089e606.tar.zst freebsd-ports-gnome-15638f8252cdfa1a98095a4f150e40467089e606.zip |
Fix a size mismatch and unbreak.
According to the author:
-----
From: Charles Rapp
Subject: RE: Was 4.2.2 rerolled?
Boris,
I realized after the initial release that the build missed 1 line change of the C# bug fix due to a CVS problem. SmcCSharpGenerator.java, line 1456 was built as:
if (loopbackFlag == false || hasActions == false)
and was corrected to:
if (loopbackFlag == false || hasActions == true)
So I corrected the CVS problem, rebuilt and re-released the tarball without modifying the release.
I apologize for any inconvience this has caused.
Charles Rapp
-----
PR: 88291
Submitted by: Boris B. Samorodov
-rw-r--r-- | devel/smc/Makefile | 3 | ||||
-rw-r--r-- | devel/smc/distinfo | 5 |
2 files changed, 4 insertions, 4 deletions
diff --git a/devel/smc/Makefile b/devel/smc/Makefile index 1feab89e7d71..abace2f95354 100644 --- a/devel/smc/Makefile +++ b/devel/smc/Makefile @@ -8,6 +8,7 @@ PORTNAME= smc PORTVERSION= 4.2.2 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -17,8 +18,6 @@ EXTRACT_SUFX= .tgz MAINTAINER= ports@FreeBSD.org COMMENT= The State Machine Compiler -BROKEN= Size mismatch - USE_JAVA= yes JAVA_VERSION= 1.4+ NO_BUILD= yes diff --git a/devel/smc/distinfo b/devel/smc/distinfo index d599a405f552..ed1b98f70872 100644 --- a/devel/smc/distinfo +++ b/devel/smc/distinfo @@ -1,2 +1,3 @@ -MD5 (smc_4_2_2.tgz) = fea96ea79177b95f41040c6a30458e08 -SIZE (smc_4_2_2.tgz) = 1495281 +MD5 (smc_4_2_2.tgz) = 7c3caa8fcbac722272abb1803a5744b0 +SHA256 (smc_4_2_2.tgz) = 44bb2c50eb0fa7a48b19519b63aa72eb614064adf12a0cc6875ae631dd4202b5 +SIZE (smc_4_2_2.tgz) = 1493354 |