diff options
author | Jun Kuriyama <kuriyama@FreeBSD.org> | 2013-05-04 10:48:54 +0000 |
---|---|---|
committer | Jun Kuriyama <kuriyama@FreeBSD.org> | 2013-05-04 10:48:54 +0000 |
commit | 6fa036f18999ae384b77c316c599aab03641cc9e (patch) | |
tree | 1cdfd5b0ee4460cbb0bbee11d1832bf9a733e5e7 | |
parent | Update regripperplugins to 20130429 (diff) |
- Ubreak.
PR: ports/176926
Submitted by: Hiroyuki Iwatsuki <don@na.rim.or.jp>
Notes
Notes:
svn path=/head/; revision=317308
-rw-r--r-- | japanese/ming/Makefile | 3 | ||||
-rw-r--r-- | japanese/ming/files/patch-src_actioncompiler_swf4compiler.flex | 10 | ||||
-rw-r--r-- | japanese/ming/files/patch-src_actioncompiler_swf5compiler.flex | 10 | ||||
-rw-r--r-- | japanese/ming/files/patch-util_gif2dbl.c | 11 | ||||
-rw-r--r-- | japanese/ming/files/patch-util_gif2mask.c | 11 |
5 files changed, 42 insertions, 3 deletions
diff --git a/japanese/ming/Makefile b/japanese/ming/Makefile index 342e235fba29..c93d1115f127 100644 --- a/japanese/ming/Makefile +++ b/japanese/ming/Makefile @@ -1,4 +1,3 @@ -# Created by: kuriyama # $FreeBSD$ PORTNAME= ming @@ -15,8 +14,6 @@ COMMENT= LGPL'ed Flash 4/5 movie output library with Japanese languages support LIB_DEPENDS= png15:${PORTSDIR}/graphics/png \ gif.5:${PORTSDIR}/graphics/giflib -BROKEN= does not compile - CONFLICTS= ming-* WRKSRC= ${WRKDIR}/jaming-${PORTVERSION}/src diff --git a/japanese/ming/files/patch-src_actioncompiler_swf4compiler.flex b/japanese/ming/files/patch-src_actioncompiler_swf4compiler.flex new file mode 100644 index 000000000000..4fc84a49fd9e --- /dev/null +++ b/japanese/ming/files/patch-src_actioncompiler_swf4compiler.flex @@ -0,0 +1,10 @@ +--- actioncompiler/swf4compiler.flex~ 2002-06-24 21:21:54.000000000 +0900 ++++ actioncompiler/swf4compiler.flex 2013-03-14 04:49:15.000000000 +0900 +@@ -5,6 +5,7 @@ + + #include "compile.h" + #include "action.h" ++#define YYPARSE_PARAM buffer + #include "swf4compiler.tab.h" /* defines token types */ + + int swf4debug; diff --git a/japanese/ming/files/patch-src_actioncompiler_swf5compiler.flex b/japanese/ming/files/patch-src_actioncompiler_swf5compiler.flex new file mode 100644 index 000000000000..4a633d31b440 --- /dev/null +++ b/japanese/ming/files/patch-src_actioncompiler_swf5compiler.flex @@ -0,0 +1,10 @@ +--- actioncompiler/swf5compiler.flex~ 2013-03-14 04:53:36.000000000 +0900 ++++ actioncompiler/swf5compiler.flex 2013-03-14 04:52:36.000000000 +0900 +@@ -5,6 +5,7 @@ + + #include "compile.h" + #include "action.h" ++#define YYPARSE_PARAM buffer + #include "swf5compiler.tab.h" /* defines token types */ + + int swf5debug; diff --git a/japanese/ming/files/patch-util_gif2dbl.c b/japanese/ming/files/patch-util_gif2dbl.c new file mode 100644 index 000000000000..e38fe1b82edc --- /dev/null +++ b/japanese/ming/files/patch-util_gif2dbl.c @@ -0,0 +1,11 @@ +--- ../util/gif2dbl.c~ 2002-06-24 21:21:54.000000000 +0900 ++++ ../util/gif2dbl.c 2013-03-14 04:57:51.000000000 +0900 +@@ -16,7 +16,7 @@ + void error(char *msg) + { + printf("%s:\n\n", msg); +- PrintGifError(); ++ GifError(); + exit(-1); + } + diff --git a/japanese/ming/files/patch-util_gif2mask.c b/japanese/ming/files/patch-util_gif2mask.c new file mode 100644 index 000000000000..57fa411601f1 --- /dev/null +++ b/japanese/ming/files/patch-util_gif2mask.c @@ -0,0 +1,11 @@ +--- ../util/gif2mask.c~ 2002-06-24 21:21:54.000000000 +0900 ++++ ../util/gif2mask.c 2013-03-14 04:57:54.000000000 +0900 +@@ -11,7 +11,7 @@ + void error(char *msg) + { + printf("%s:\n\n", msg); +- PrintGifError(); ++ GifError(); + exit(-1); + } + |