diff options
author | Max Brazhnikov <makc@FreeBSD.org> | 2013-03-26 12:59:13 +0000 |
---|---|---|
committer | Max Brazhnikov <makc@FreeBSD.org> | 2013-03-26 12:59:13 +0000 |
commit | bb655023d302e58ee6a87bab8f455e40a7b50e77 (patch) | |
tree | 988ca5fe07b1ccbecd12b901db5156f297f0b93b /deskutils/libopensync-plugin-python-devel | |
parent | Do not compile and use bundled libiconv, the converters/iconv from ports. (diff) |
libopensync-plugin-python:
- Fix configure stage [1]
- Mark BROKEN: fails to build with recent libopensync
- Switch to out-of-source build, which is required by upstream
msynctool:
- Fix typo in BROKEN and make it more informative
Reported by: pointyhat (miwi) [1]
Diffstat (limited to 'deskutils/libopensync-plugin-python-devel')
-rw-r--r-- | deskutils/libopensync-plugin-python-devel/Makefile | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/deskutils/libopensync-plugin-python-devel/Makefile b/deskutils/libopensync-plugin-python-devel/Makefile index 636b107678b6..beb235d9ca95 100644 --- a/deskutils/libopensync-plugin-python-devel/Makefile +++ b/deskutils/libopensync-plugin-python-devel/Makefile @@ -19,8 +19,10 @@ LIB_DEPENDS= opensync.1:${PORTSDIR}/devel/libopensync CONFLICTS= libopensync-plugin-python-0.2* +BROKEN= fails to build with recent libopensync + USE_BZIP2= yes -USES= cmake +USES= cmake:outsource USE_PYTHON= yes USE_GNOME= pkgconfig CMAKE_ARGS+= -Wno-dev \ @@ -32,9 +34,10 @@ CMAKE_ARGS+= -Wno-dev \ OS_PLUGIN_DIR= ${PREFIX}/lib/opensync-1.0/plugins OS_PYPLUGIN_DIR=${PREFIX}/lib/opensync-1.0/python-plugins -pre-patch: - @${REINPLACE_CMD} -e "s|MESSAGE|# MESSAGE|" \ - ${WRKSRC}/cmake/modules/MacroEnsureOutOfSourceBuild.cmake +post-patch: +# Help find opensync, which is apparently renamed in ports + ${REINPLACE_CMD} -e "s,opensync-1.0,libopensync,g" \ + ${WRKSRC}/cmake/modules/FindOpenSync.cmake do-install: ${MKDIR} -p ${OS_PLUGIN_DIR} ${OS_PYPLUGIN_DIR} |