diff options
Diffstat (limited to 'freebsd/dependencies/tqtinterface/Makefile')
-rw-r--r-- | freebsd/dependencies/tqtinterface/Makefile | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/freebsd/dependencies/tqtinterface/Makefile b/freebsd/dependencies/tqtinterface/Makefile new file mode 100644 index 000000000..4616efe8a --- /dev/null +++ b/freebsd/dependencies/tqtinterface/Makefile @@ -0,0 +1,52 @@ +# -*-mode: makefile-*- +# Created by: slavek.banko@axis.cz +# $FreeBSD$ +# + +.include <../../trinity.port.mk> + +PORTNAME= libtqtinterface +COMMENT= Trinity TQt Interface +TDE_PREVERSION= ~pre3+6056e4a5 +MASTER_SITE_SUBDIR= libt/${PORTNAME} +DISTSRC= tqtinterface-trinity-${TDE_VERSION}${TDE_PREVERSION} +PORTREVISION= 0 +CATEGORIES= devel +DIST_SUBDIR= TDE/dependencies +PREFIX= ${LOCALBASE} + + +BUILD_DEPENDS+= tqmoc:${PORTSDIR}/x11/trinity/dependencies/tqt3 + +RUN_DEPENDS+= gsed:${PORTSDIR}/textproc/gsed \ + bash:${PORTSDIR}/shells/bash \ + +LIB_DEPENDS+= libtqt-mt.so:${PORTSDIR}/x11/trinity/dependencies/tqt3 + +# Build +post-patch: tde-pathfix + +do-configure: tde-cmake-prepare + ${TDE_CMAKE_CONFIGURE} \ + -DCMAKE_INSTALL_PREFIX="${PREFIX}" \ + -DPKGCONFIG_INSTALL_DIR="${PREFIX}/libdata/pkgconfig" \ + \ + -DWITH_QT3="ON" \ + -DQTDIR="${LOCALBASE}/share/qt3" \ + -DQT_PREFIX_DIR="${LOCALBASE}" \ + -DQT_LIBRARY_DIRS="${LOCALBASE}/lib" \ + -DQT_INCLUDE_DIR="${LOCALBASE}/include/tqt3" \ + -DBUILD_ALL="ON" \ + -DUSE_QT3="ON" + +do-build: tde-cmake-build + +do-install: tde-cmake-install + +post-install: + # Fix path to 'bash' + gsed -i ${STAGEDIR}${PREFIX}/bin/* \ + -e "s|/bin/bash|${LOCALBASE}/bin/bash|" \ + -e "s|sed |gsed |g" + +.include <bsd.port.mk> |