diff options
author | amdmi3 <amdmi3@FreeBSD.org> | 2014-07-08 06:52:33 +0800 |
---|---|---|
committer | amdmi3 <amdmi3@FreeBSD.org> | 2014-07-08 06:52:33 +0800 |
commit | 98b0f80d19197a560786c6de6dd3c629688b8ecb (patch) | |
tree | e2f8efc00a5ac7594ff1cd270189c6eb7b494624 /finance | |
parent | 0c7d843017ad90b235534e3aa88436a6636ab35d (diff) | |
download | freebsd-ports-gnome-98b0f80d19197a560786c6de6dd3c629688b8ecb.tar.gz freebsd-ports-gnome-98b0f80d19197a560786c6de6dd3c629688b8ecb.tar.zst freebsd-ports-gnome-98b0f80d19197a560786c6de6dd3c629688b8ecb.zip |
- Fix build on 10.x
Diffstat (limited to 'finance')
-rw-r--r-- | finance/aqmoney/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/finance/aqmoney/Makefile b/finance/aqmoney/Makefile index 70218048369f..50b3b892bac6 100644 --- a/finance/aqmoney/Makefile +++ b/finance/aqmoney/Makefile @@ -12,6 +12,11 @@ COMMENT= Manage your credit institute accounts using openhbci LIB_DEPENDS= libopenhbci.so:${PORTSDIR}/finance/openhbci GNU_CONFIGURE= yes -PLIST_FILES= bin/aqmoney man/man1/aqmoney.1.gz +PLIST_FILES= bin/aqmoney \ + man/man1/aqmoney.1.gz + +post-patch: + ${FIND} ${WRKSRC}/src -name "*.cpp" -o -name "*.h" | ${XARGS} \ + ${REINPLACE_CMD} -e 's|class HBCI::SimpleConfig;|namespace HBCI{class SimpleConfig;}|' .include <bsd.port.mk> |