diff options
author | Christian Weisgerber <naddy@FreeBSD.org> | 2003-01-12 02:03:09 +0000 |
---|---|---|
committer | Christian Weisgerber <naddy@FreeBSD.org> | 2003-01-12 02:03:09 +0000 |
commit | d3eccd2d9965db047f56662f33923e7d0398a9e1 (patch) | |
tree | 4f0538d4bba891e1134090bc71a3b3f749d64176 /textproc | |
parent | a481f4c27ce608cf497c1ee84cd4af0a92cb062e (diff) | |
download | ports-d3eccd2d9965db047f56662f33923e7d0398a9e1.tar.gz ports-d3eccd2d9965db047f56662f33923e7d0398a9e1.zip |
Notes
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/xerces-c2-devel/Makefile | 8 | ||||
-rw-r--r-- | textproc/xerces-c2-devel/Makefile.alpha | 10 | ||||
-rw-r--r-- | textproc/xerces-c2-devel/Makefile.sparc64 | 14 | ||||
-rw-r--r-- | textproc/xerces-c2-devel/files/patch-aa | 12 | ||||
-rw-r--r-- | textproc/xerces-c2/Makefile | 8 | ||||
-rw-r--r-- | textproc/xerces-c2/Makefile.alpha | 10 | ||||
-rw-r--r-- | textproc/xerces-c2/Makefile.sparc64 | 14 | ||||
-rw-r--r-- | textproc/xerces-c2/files/patch-aa | 12 | ||||
-rw-r--r-- | textproc/xerces-c27/Makefile | 8 | ||||
-rw-r--r-- | textproc/xerces-c27/Makefile.alpha | 10 | ||||
-rw-r--r-- | textproc/xerces-c27/Makefile.sparc64 | 14 | ||||
-rw-r--r-- | textproc/xerces-c27/files/patch-aa | 12 |
12 files changed, 123 insertions, 9 deletions
diff --git a/textproc/xerces-c2-devel/Makefile b/textproc/xerces-c2-devel/Makefile index fda5c2cc1c8f..976e31423fb4 100644 --- a/textproc/xerces-c2-devel/Makefile +++ b/textproc/xerces-c2-devel/Makefile @@ -55,10 +55,12 @@ MAKE_ENV+= XERCESCROOT=${WRKSRC} GNU_CONFIGURE= yes CONFIGURE_ENV+= XERCESCROOT=${WRKSRC} TRANSCODER=${TRANSCODER} CONFIGURE_SCRIPT= runConfigure -CONFIGURE_ARGS?= -p freebsd -c ${CC} -x ${CXX} -n socket -P ${PREFIX} +CONFIGURE_ARGS+= -p freebsd -c ${CC} -x ${CXX} -n socket -P ${PREFIX} CONFIGURE_ARGS+= -t ${TRANSCODER} +.include <bsd.port.pre.mk> + .if defined(NO_THREADS) CONFIGURE_ARGS+= -r none .endif @@ -73,7 +75,7 @@ PLIST_SUB+= NO_SAMPLES="" ALL_TARGET?= all samples XERCES_BINS?= CreateDOMDocument DOMCount DOMPrint EnumVal MemParse PParse \ Redirect SAX2Count SAX2Print SAXCount SAXPrint SEnumVal StdInParse -SAMPLES_CONFIG_ARGS?= -p freebsd -x g++ +SAMPLES_CONFIG_ARGS+= -p freebsd -c ${CC} -x ${CXX} .if defined(NO_THREADS) SAMPLES_CONFIG_ARGS+= -r none .endif @@ -143,4 +145,4 @@ post-install: .endfor .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/textproc/xerces-c2-devel/Makefile.alpha b/textproc/xerces-c2-devel/Makefile.alpha new file mode 100644 index 000000000000..874bb0a96fca --- /dev/null +++ b/textproc/xerces-c2-devel/Makefile.alpha @@ -0,0 +1,10 @@ +# Date created: 29 December 2002 +# Whom: "Bjoern A. Zeeb" (bzeeb+freebsdports@zabbadoz.net) +# +# $FreeBSD$ +# + +# set bitsToBuild to 64 +CONFIGURE_ARGS+= -b 64 +SAMPLES_CONFIG_ARGS+= -b 64 + diff --git a/textproc/xerces-c2-devel/Makefile.sparc64 b/textproc/xerces-c2-devel/Makefile.sparc64 new file mode 100644 index 000000000000..f5c5a7e8a47e --- /dev/null +++ b/textproc/xerces-c2-devel/Makefile.sparc64 @@ -0,0 +1,14 @@ +# Date created: 26 December 2002 +# Whom: "Bjoern A. Zeeb" (bzeeb+freebsdports@zabbadoz.net) +# +# $FreeBSD$ +# + +# When there are no probs with libc_r / pthreads on sparc64-freebsd we +# should remove this files or make it conditional on OSVERSION +NO_THREADS= yes + +# set bitsToBuild to 64 +CONFIGURE_ARGS+= -b 64 +SAMPLES_CONFIG_ARGS+= -b 64 + diff --git a/textproc/xerces-c2-devel/files/patch-aa b/textproc/xerces-c2-devel/files/patch-aa new file mode 100644 index 000000000000..1e3aad521e00 --- /dev/null +++ b/textproc/xerces-c2-devel/files/patch-aa @@ -0,0 +1,12 @@ +--- src/xercesc/util/Transcoders/IconvFBSD/IconvFBSDTransService.cpp.orig Tue Aug 27 09:24:38 2002 ++++ src/xercesc/util/Transcoders/IconvFBSD/IconvFBSDTransService.cpp Sun Jan 12 01:44:04 2003 +@@ -1091,7 +1091,8 @@ + // perform conversion + wLent *= uChSize(); + char *ptr = retVal; +- size_t rc = iconvTo(wideCharBuf, &wLent, &ptr, neededLen); ++ size_t tmpwLent = wLent; ++ size_t rc = iconvTo(wideCharBuf, &tmpwLent, &ptr, neededLen); + if (rc == (size_t)-1) { + if (wBufPtr) + delete [] wBufPtr; diff --git a/textproc/xerces-c2/Makefile b/textproc/xerces-c2/Makefile index fda5c2cc1c8f..976e31423fb4 100644 --- a/textproc/xerces-c2/Makefile +++ b/textproc/xerces-c2/Makefile @@ -55,10 +55,12 @@ MAKE_ENV+= XERCESCROOT=${WRKSRC} GNU_CONFIGURE= yes CONFIGURE_ENV+= XERCESCROOT=${WRKSRC} TRANSCODER=${TRANSCODER} CONFIGURE_SCRIPT= runConfigure -CONFIGURE_ARGS?= -p freebsd -c ${CC} -x ${CXX} -n socket -P ${PREFIX} +CONFIGURE_ARGS+= -p freebsd -c ${CC} -x ${CXX} -n socket -P ${PREFIX} CONFIGURE_ARGS+= -t ${TRANSCODER} +.include <bsd.port.pre.mk> + .if defined(NO_THREADS) CONFIGURE_ARGS+= -r none .endif @@ -73,7 +75,7 @@ PLIST_SUB+= NO_SAMPLES="" ALL_TARGET?= all samples XERCES_BINS?= CreateDOMDocument DOMCount DOMPrint EnumVal MemParse PParse \ Redirect SAX2Count SAX2Print SAXCount SAXPrint SEnumVal StdInParse -SAMPLES_CONFIG_ARGS?= -p freebsd -x g++ +SAMPLES_CONFIG_ARGS+= -p freebsd -c ${CC} -x ${CXX} .if defined(NO_THREADS) SAMPLES_CONFIG_ARGS+= -r none .endif @@ -143,4 +145,4 @@ post-install: .endfor .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/textproc/xerces-c2/Makefile.alpha b/textproc/xerces-c2/Makefile.alpha new file mode 100644 index 000000000000..874bb0a96fca --- /dev/null +++ b/textproc/xerces-c2/Makefile.alpha @@ -0,0 +1,10 @@ +# Date created: 29 December 2002 +# Whom: "Bjoern A. Zeeb" (bzeeb+freebsdports@zabbadoz.net) +# +# $FreeBSD$ +# + +# set bitsToBuild to 64 +CONFIGURE_ARGS+= -b 64 +SAMPLES_CONFIG_ARGS+= -b 64 + diff --git a/textproc/xerces-c2/Makefile.sparc64 b/textproc/xerces-c2/Makefile.sparc64 new file mode 100644 index 000000000000..f5c5a7e8a47e --- /dev/null +++ b/textproc/xerces-c2/Makefile.sparc64 @@ -0,0 +1,14 @@ +# Date created: 26 December 2002 +# Whom: "Bjoern A. Zeeb" (bzeeb+freebsdports@zabbadoz.net) +# +# $FreeBSD$ +# + +# When there are no probs with libc_r / pthreads on sparc64-freebsd we +# should remove this files or make it conditional on OSVERSION +NO_THREADS= yes + +# set bitsToBuild to 64 +CONFIGURE_ARGS+= -b 64 +SAMPLES_CONFIG_ARGS+= -b 64 + diff --git a/textproc/xerces-c2/files/patch-aa b/textproc/xerces-c2/files/patch-aa new file mode 100644 index 000000000000..1e3aad521e00 --- /dev/null +++ b/textproc/xerces-c2/files/patch-aa @@ -0,0 +1,12 @@ +--- src/xercesc/util/Transcoders/IconvFBSD/IconvFBSDTransService.cpp.orig Tue Aug 27 09:24:38 2002 ++++ src/xercesc/util/Transcoders/IconvFBSD/IconvFBSDTransService.cpp Sun Jan 12 01:44:04 2003 +@@ -1091,7 +1091,8 @@ + // perform conversion + wLent *= uChSize(); + char *ptr = retVal; +- size_t rc = iconvTo(wideCharBuf, &wLent, &ptr, neededLen); ++ size_t tmpwLent = wLent; ++ size_t rc = iconvTo(wideCharBuf, &tmpwLent, &ptr, neededLen); + if (rc == (size_t)-1) { + if (wBufPtr) + delete [] wBufPtr; diff --git a/textproc/xerces-c27/Makefile b/textproc/xerces-c27/Makefile index fda5c2cc1c8f..976e31423fb4 100644 --- a/textproc/xerces-c27/Makefile +++ b/textproc/xerces-c27/Makefile @@ -55,10 +55,12 @@ MAKE_ENV+= XERCESCROOT=${WRKSRC} GNU_CONFIGURE= yes CONFIGURE_ENV+= XERCESCROOT=${WRKSRC} TRANSCODER=${TRANSCODER} CONFIGURE_SCRIPT= runConfigure -CONFIGURE_ARGS?= -p freebsd -c ${CC} -x ${CXX} -n socket -P ${PREFIX} +CONFIGURE_ARGS+= -p freebsd -c ${CC} -x ${CXX} -n socket -P ${PREFIX} CONFIGURE_ARGS+= -t ${TRANSCODER} +.include <bsd.port.pre.mk> + .if defined(NO_THREADS) CONFIGURE_ARGS+= -r none .endif @@ -73,7 +75,7 @@ PLIST_SUB+= NO_SAMPLES="" ALL_TARGET?= all samples XERCES_BINS?= CreateDOMDocument DOMCount DOMPrint EnumVal MemParse PParse \ Redirect SAX2Count SAX2Print SAXCount SAXPrint SEnumVal StdInParse -SAMPLES_CONFIG_ARGS?= -p freebsd -x g++ +SAMPLES_CONFIG_ARGS+= -p freebsd -c ${CC} -x ${CXX} .if defined(NO_THREADS) SAMPLES_CONFIG_ARGS+= -r none .endif @@ -143,4 +145,4 @@ post-install: .endfor .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/textproc/xerces-c27/Makefile.alpha b/textproc/xerces-c27/Makefile.alpha new file mode 100644 index 000000000000..874bb0a96fca --- /dev/null +++ b/textproc/xerces-c27/Makefile.alpha @@ -0,0 +1,10 @@ +# Date created: 29 December 2002 +# Whom: "Bjoern A. Zeeb" (bzeeb+freebsdports@zabbadoz.net) +# +# $FreeBSD$ +# + +# set bitsToBuild to 64 +CONFIGURE_ARGS+= -b 64 +SAMPLES_CONFIG_ARGS+= -b 64 + diff --git a/textproc/xerces-c27/Makefile.sparc64 b/textproc/xerces-c27/Makefile.sparc64 new file mode 100644 index 000000000000..f5c5a7e8a47e --- /dev/null +++ b/textproc/xerces-c27/Makefile.sparc64 @@ -0,0 +1,14 @@ +# Date created: 26 December 2002 +# Whom: "Bjoern A. Zeeb" (bzeeb+freebsdports@zabbadoz.net) +# +# $FreeBSD$ +# + +# When there are no probs with libc_r / pthreads on sparc64-freebsd we +# should remove this files or make it conditional on OSVERSION +NO_THREADS= yes + +# set bitsToBuild to 64 +CONFIGURE_ARGS+= -b 64 +SAMPLES_CONFIG_ARGS+= -b 64 + diff --git a/textproc/xerces-c27/files/patch-aa b/textproc/xerces-c27/files/patch-aa new file mode 100644 index 000000000000..1e3aad521e00 --- /dev/null +++ b/textproc/xerces-c27/files/patch-aa @@ -0,0 +1,12 @@ +--- src/xercesc/util/Transcoders/IconvFBSD/IconvFBSDTransService.cpp.orig Tue Aug 27 09:24:38 2002 ++++ src/xercesc/util/Transcoders/IconvFBSD/IconvFBSDTransService.cpp Sun Jan 12 01:44:04 2003 +@@ -1091,7 +1091,8 @@ + // perform conversion + wLent *= uChSize(); + char *ptr = retVal; +- size_t rc = iconvTo(wideCharBuf, &wLent, &ptr, neededLen); ++ size_t tmpwLent = wLent; ++ size_t rc = iconvTo(wideCharBuf, &tmpwLent, &ptr, neededLen); + if (rc == (size_t)-1) { + if (wBufPtr) + delete [] wBufPtr; |