diff options
author | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2014-07-07 22:52:33 +0000 |
---|---|---|
committer | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2014-07-07 22:52:33 +0000 |
commit | ff1e15097132b3aea2ee7e61c64ce9f31eda1897 (patch) | |
tree | e2f8efc00a5ac7594ff1cd270189c6eb7b494624 | |
parent | a3d3c7adf5add263e1622eda4e1c50ece69d1080 (diff) | |
download | ports-ff1e15097132b3aea2ee7e61c64ce9f31eda1897.tar.gz ports-ff1e15097132b3aea2ee7e61c64ce9f31eda1897.zip |
Notes
-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> |