diff options
author | Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2018-11-04 18:58:27 +0000 |
---|---|---|
committer | Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2018-11-04 18:58:27 +0000 |
commit | 29439ee094406379a3bf20855d95ae8c42f20200 (patch) | |
tree | aa2d7cd1df41871c114043a055bef6e036a983cd | |
parent | 0ffd87884b013dbac2bb93d12f097f7b3a977273 (diff) | |
download | freebsd-ports-29439ee094406379a3bf20855d95ae8c42f20200.zip |
Fix PLIST on powerpc*
PR: 232909 (based on)
Submitted by: Piotr Kubaj <pkubaj@anongoth.pl>
-rw-r--r-- | textproc/xerces-c3/Makefile | 12 | ||||
-rw-r--r-- | textproc/xerces-c3/pkg-plist | 2 |
2 files changed, 11 insertions, 3 deletions
diff --git a/textproc/xerces-c3/Makefile b/textproc/xerces-c3/Makefile index 7e778af110fa..1223fb4fcddf 100644 --- a/textproc/xerces-c3/Makefile +++ b/textproc/xerces-c3/Makefile @@ -13,7 +13,7 @@ COMMENT= Validating XML parser from the Apache XML Project LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE -USES= cpe gmake iconv libtool pathfix +USES= cpe iconv libtool pathfix CONFIGURE_ARGS= --enable-netaccessor-socket \ --enable-transcoder-iconv \ @@ -29,10 +29,18 @@ PLIST_SUB= MAJOR_VER=${PORTVERSION:R} CPE_PRODUCT= xerces-c++ CPE_VENDOR= apache +.include <bsd.port.pre.mk> + +.if ${ARCH:Mpowerpc*} +PLIST_SUB+= MUTEXMGR="PosixMutexMgr" +.else +PLIST_SUB+= MUTEXMGR="StdMutexMgr" +.endif + post-patch: @${REINPLACE_CMD} -e "s,@DEFS@,& -D__STDC_LIMIT_MACROS," ${WRKSRC}/src/Makefile.in post-install: ${LN} -s libxerces-c-${PORTVERSION:R}.so ${STAGEDIR}${PREFIX}/lib/libxerces-c.so.${PORTVERSION:R:R} -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/textproc/xerces-c3/pkg-plist b/textproc/xerces-c3/pkg-plist index 4f0eae9b5a41..bfaeba448512 100644 --- a/textproc/xerces-c3/pkg-plist +++ b/textproc/xerces-c3/pkg-plist @@ -264,7 +264,7 @@ include/xercesc/util/KeyValuePair.hpp include/xercesc/util/LogicalPath.c include/xercesc/util/MsgLoaders/InMemory/InMemMsgLoader.hpp include/xercesc/util/MsgLoaders/InMemory/XercesMessages_en_US.hpp -include/xercesc/util/MutexManagers/StdMutexMgr.hpp +include/xercesc/util/MutexManagers/%%MUTEXMGR%%.hpp include/xercesc/util/Mutexes.hpp include/xercesc/util/NameIdPool.c include/xercesc/util/NameIdPool.hpp |