forked from Lainports/freebsd-ports
lang/spl: Fix build on modern gcc
I don't know why spl builds on clang but fails on gcc due to a flex precedence issue. Rather, I don't know why the flex issue doesn't affect clang. There was a patch provided by a fork nearly four years ago that fixes the gcc build nicely. The bitbucket issue warns that more eyes should review the fix though. Issue 1: roman number II interpreted as I https://bitbucket.org/kcartmell/marlowe/issue/1/
This commit is contained in:
parent
58c07c4937
commit
3f230752a6
2 changed files with 18 additions and 3 deletions
|
|
@ -3,12 +3,12 @@
|
|||
|
||||
PORTNAME= spl
|
||||
PORTVERSION= 1.2.1
|
||||
PORTREVISION= 2
|
||||
PORTREVISION= 3
|
||||
CATEGORIES= lang
|
||||
MASTER_SITES= http://shakespearelang.sourceforge.net/download/
|
||||
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= The Shakespeare programming language
|
||||
COMMENT= Shakespeare programming language
|
||||
|
||||
USES= bison gmake
|
||||
|
||||
|
|
@ -28,6 +28,7 @@ post-patch:
|
|||
do-install:
|
||||
${TAR} -C ${WRKSRC}/spl -cf - . | ${TAR} -C ${STAGEDIR}${PREFIX} -xf -
|
||||
${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
||||
cd ${WRKSRC}/examples && ${INSTALL_DATA} ${ALL_EXAMPLES} ${STAGEDIR}${EXAMPLESDIR}
|
||||
(cd ${WRKSRC}/examples && \
|
||||
${INSTALL_DATA} ${ALL_EXAMPLES} ${STAGEDIR}${EXAMPLESDIR})
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
|||
14
lang/spl/files/patch-include_roman__numbers.metaflex
Normal file
14
lang/spl/files/patch-include_roman__numbers.metaflex
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
Replaced roman numeral regular expression to address precedence issue
|
||||
|
||||
Issue 1: roman number II interpreted as I
|
||||
https://bitbucket.org/kcartmell/marlowe/issue/1/
|
||||
|
||||
--- include/roman_numbers.metaflex.orig 2001-10-18 12:34:31.000000000 +0000
|
||||
+++ include/roman_numbers.metaflex
|
||||
@@ -1,5 +1 @@
|
||||
-ROMAN_THOUSANDS m+
|
||||
-ROMAN_HUNDREDS (c(d|m)|dc{0,3}|c{1,3})
|
||||
-ROMAN_TENS (x(l|c)|lx{0,3}|x{1,3})
|
||||
-ROMAN_ONES (i(v|x)|vi{0,3}|i{1,3})
|
||||
-ROMAN_NUMBER {ROMAN_ONES}|{ROMAN_TENS}{ROMAN_ONES}?|{ROMAN_HUNDREDS}{ROMAN_TENS}?{ROMAN_ONES}?|{ROMAN_THOUSANDS}{ROMAN_HUNDREDS}?{ROMAN_TENS}?{ROMAN_ONES}?
|
||||
+ROMAN_NUMBER M{0,4}(CM|CD|D?C{0,3})(XC|XL|L?X{0,3})(IX|IV|V?I{0,3})
|
||||
Loading…
Add table
Reference in a new issue