Date: Thu, 23 Aug 2012 17:14:29 +0000 (UTC) From: Guido Falsi <madpilot@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r303032 - head/x11-fm/doublecmd Message-ID: <201208231714.q7NHETpW064124@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: madpilot Date: Thu Aug 23 17:14:29 2012 New Revision: 303032 URL: http://svn.freebsd.org/changeset/ports/303032 Log: - Convert to OptionsNG - Remove ABI version from LIB_DEPENDS - Add option to compile with debug symbols PR: ports/170813 Submitted by: bbtruk@users.sourceforge.net (maintainer) Approved by: crees, tabthorpe (mentors, implicit) Modified: head/x11-fm/doublecmd/Makefile (contents, props changed) Modified: head/x11-fm/doublecmd/Makefile ============================================================================== --- head/x11-fm/doublecmd/Makefile Thu Aug 23 16:41:51 2012 (r303031) +++ head/x11-fm/doublecmd/Makefile Thu Aug 23 17:14:29 2012 (r303032) @@ -33,28 +33,37 @@ LAZBUILD_CMD= ${LOCALBASE}/bin/lazbuild WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} DOCSRC= ${WRKDIR}/${PORTNAME}-help-0.5.1 -OPTIONS= GTK2 "Use gtk20 interface" on \ - QT4 "Use qt4 interface" off +OPTIONS_DEFINE= DEBUG +OPTIONS_SINGLE= LCL +OPTIONS_SINGLE_LCL= GTK2 QT4 + +GTK2_DESC= Use gtk20 interface +QT4_DESC= Use qt4 interface +DEBUG_DESC= Build with complete symbolic debug information -.include <bsd.port.pre.mk> +OPTIONS_DEFAULT= GTK2 -.if (defined(WITH_GTK2) && defined(WITH_QT4)) || (!defined(WITH_GTK2) && !defined(WITH_QT4)) -IGNORE= please select one option: QT4 or GTK2 -.endif +.include <bsd.port.pre.mk> -.if defined(WITH_GTK2) +.if ${PORT_OPTIONS:MGTK2} USE_FPC+= gtk2 USE_GNOME= gtk20 gdkpixbuf LCL_PLATFORM= gtk2 BUILD_DEPENDS+= ${LOCALBASE}/share/lazarus/lcl/units/${BUILDNAME}/${LCL_PLATFORM}/interfaces.ppu:${PORTSDIR}/editors/lazarus-lcl-gtk2 .endif -.if defined(WITH_QT4) -LIB_DEPENDS+= Qt4Pas.5:${PORTSDIR}/x11-toolkits/qt4pas +.if ${PORT_OPTIONS:MQT4} +LIB_DEPENDS+= Qt4Pas:${PORTSDIR}/x11-toolkits/qt4pas LCL_PLATFORM= qt BUILD_DEPENDS+= ${LOCALBASE}/share/lazarus/lcl/units/${BUILDNAME}/${LCL_PLATFORM}/interfaces.ppu:${PORTSDIR}/editors/lazarus-lcl-qt .endif +.if ${PORT_OPTIONS:MDEBUG} +BUILD_MODE= Debug +.else +BUILD_MODE= NoDebug Full Optimizations +.endif + post-patch: @${REINPLACE_CMD} -e 's|%%DOCSDIR%%|${DOCSDIR}|g' ${WRKSRC}/src/dmhelpmanager.pas @${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g' -e 's|%%DATADIR%%|${DATADIR}|g' \ @@ -65,7 +74,7 @@ do-build: @cd ${WRKSRC}/components && \ ${FIND} * -name *.lpk -exec ${LAZBUILD_CMD} --ws=${LCL_PLATFORM} "{}" \; @cd ${WRKSRC} && \ - ${LAZBUILD_CMD} --ws=${LCL_PLATFORM} ${PROJECT_FILE} + ${LAZBUILD_CMD} --ws=${LCL_PLATFORM} --bm="${BUILD_MODE}" ${PROJECT_FILE} post-build: @${RM} -rf ${DOCSRC}/*/dev-help @@ -96,7 +105,7 @@ pre-install: @${ECHO_CMD} "@dirrm %%DATADIR%%/sdk" >> ${PLIST} @${ECHO_CMD} "@dirrm %%DATADIR%%" >> ${PLIST} -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} @cd ${DOCSRC} && \ ${FIND} * -type f | ${SORT} | ${SED} -e 's|^|%%DOCSDIR%%/|' >> ${PLIST} && \ ${FIND} * -type d | ${SORT} -r | ${SED} -e 's|^|@dirrm %%DOCSDIR%%/|' >> ${PLIST} @@ -115,7 +124,7 @@ do-install: ${FIND} * -type f -exec ${INSTALL_DATA} "{}" "${DATADIR}/${DIRE}/{}" \; .endfor -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} @cd ${DOCSRC} && \ ${FIND} * -type d -exec ${MKDIR} "${DOCSDIR}/{}" \; && \ ${FIND} * -type f -exec ${INSTALL_DATA} "{}" "${DOCSDIR}/{}" \;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201208231714.q7NHETpW064124>