defined via Mk/bsd.default-versions.mk which has moved from GCC 7.4 t GCC 8.2 under most circumstances. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, as a double check, everything INDEX-11 showed depending on lang/gcc7. PR: 231590
34 lines
1 KiB
Makefile
34 lines
1 KiB
Makefile
# Created by: Andriy Gapon <avg@icyb.net.ua>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= universalindentgui
|
|
PORTVERSION= 1.2.0
|
|
PORTREVISION= 9
|
|
CATEGORIES= devel
|
|
MASTER_SITES= SF/universalindent/uigui/UniversalIndentGUI_${PORTVERSION}
|
|
|
|
MAINTAINER= avg@icyb.net.ua
|
|
COMMENT= Graphical UI for multiple source code indent/format/beautify tools
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE.GPL
|
|
|
|
DEPRECATED= Qt4 has been EOL since december 2015
|
|
EXPIRATION_DATE= 2019-03-15
|
|
|
|
LIB_DEPENDS= libqscintilla2_qt4.so:devel/qscintilla2
|
|
|
|
USES= compiler:c++11-lang dos2unix qmake python:run qt:4 shebangfix
|
|
SHEBANG_FILES= indenters/*.py indenters/*.rb
|
|
USE_QT= corelib moc_build uic_build rcc_build \
|
|
linguist_build network script gui
|
|
|
|
DESKTOP_ENTRIES="UniversalIndentGUI" "${COMMENT}" "" "${PORTNAME}" "" true
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's#/usr/#${PREFIX}/#g' -e 's#/share/man/#/man/#g' \
|
|
${WRKSRC}/UniversalIndentGUI.pro ${WRKSRC}/src/SettingsPaths.cpp
|
|
@${REINPLACE_CMD} -e 's#debug_and_release#release#g' \
|
|
${WRKSRC}/UniversalIndentGUI.pro
|
|
|
|
.include <bsd.port.mk>
|