diff options
author | amdmi3 <amdmi3@FreeBSD.org> | 2016-12-29 20:29:31 +0800 |
---|---|---|
committer | amdmi3 <amdmi3@FreeBSD.org> | 2016-12-29 20:29:31 +0800 |
commit | 9967631a73ad1e07ca80a4a61637962c605e0652 (patch) | |
tree | bf879c8fa9fd7770285fe07f10149d53df96e64a /russian/emkatic | |
parent | 18d66dac645937d2dd101ef9a5cf8ab46e9baf27 (diff) | |
download | freebsd-ports-gnome-9967631a73ad1e07ca80a4a61637962c605e0652.tar.gz freebsd-ports-gnome-9967631a73ad1e07ca80a4a61637962c605e0652.tar.zst freebsd-ports-gnome-9967631a73ad1e07ca80a4a61637962c605e0652.zip |
- Mark BROKEN on 11.x:
(3104) Compiling globe.pas
/wrkdirs/usr/ports/russian/emkatic/work/emkatic-0.28-src/globe.pas(28,67) Fatal: (10022) Can't find unit Serial used by Globe
Fatal: (1018) Compilation aborted
Error: /usr/local/bin/ppcx64 returned an error exitcode
Error: (lazarus) Compile Project, Mode: SrcDist, Target: emkatic: stopped with exit code 256
ERROR: failed compiling of project /wrkdirs/usr/ports/russian/emkatic/work/emkatic-0.28-src/emkatic.lpi
- Switch to options helpers
Approved by: portmgr blanket
Diffstat (limited to 'russian/emkatic')
-rw-r--r-- | russian/emkatic/Makefile | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/russian/emkatic/Makefile b/russian/emkatic/Makefile index 894347bf3480..1cb4ff61c7e9 100644 --- a/russian/emkatic/Makefile +++ b/russian/emkatic/Makefile @@ -13,6 +13,8 @@ COMMENT= Emulator of Elektronika RPN programmable calculator series LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/COPYING.txt +BROKEN_FreeBSD_11= does not build (Fatal: (10022) Can't find unit Serial used by Globe) + BUILD_DEPENDS= lazbuild:editors/lazarus \ fpcres:lang/fpc-utils @@ -38,22 +40,14 @@ QT4_DESC= Build with Qt 4 interface GTK2_BUILD_DEPENDS= ${LCL_UNITS_DIR}/${LCL_PLATFORM}/interfaces.ppu:editors/lazarus-lcl-gtk2 GTK2_USE= GNOME=gtk20 FPC=gtk2 +GTK2_VARS= LCL_PLATFORM=gtk2 QT4_BUILD_DEPENDS= ${LCL_UNITS_DIR}/${LCL_PLATFORM}/interfaces.ppu:editors/lazarus-lcl-qt QT4_LIB_DEPENDS= libQt4Pas.so:x11-toolkits/qt4pas +QT4_VARS= LCL_PLATFORM=qt PORTAUDIO_LIB_DEPENDS= libportaudio.so:audio/portaudio -.include <bsd.port.options.mk> - -.if ${PORT_OPTIONS:MGTK2} -LCL_PLATFORM= gtk2 -.endif - -.if ${PORT_OPTIONS:MQT4} -LCL_PLATFORM= qt -.endif - do-build: @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} \ ${LAZBUILD_CMD} --ws="${LCL_PLATFORM}" \ @@ -61,7 +55,8 @@ do-build: do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin -post-install-DOCS-on: + +do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR} |