04d6f52202
lang/gcc which have moved from GCC 4.9.4 to GCC 5.4 (at least under some circumstances such as versions of FreeBSD or platforms). This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using using Mk/bsd.octave.mk which in turn has USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c++11-lib, c++14-lang, c++11-lang, c++0x, c11, or gcc-c++11-lib. PR: 216707
38 lines
887 B
Makefile
38 lines
887 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= fcitx-skk
|
|
PORTVERSION= 0.1.2
|
|
PORTREVISION= 1
|
|
CATEGORIES= japanese
|
|
MASTER_SITES= http://download.fcitx-im.org/${PORTNAME}/
|
|
DIST_SUBDIR= fcitx
|
|
|
|
MAINTAINER= hiroto.kagotani@gmail.com
|
|
COMMENT= SKK support for Fcitx
|
|
|
|
LICENSE= GPLv3
|
|
|
|
RUN_DEPENDS= ${LOCALBASE}/share/skk/SKK-JISYO.L:japanese/skk-jisyo
|
|
LIB_DEPENDS= libfcitx-config.so:chinese/fcitx \
|
|
libskk.so:japanese/libskk
|
|
|
|
USES= tar:xz compiler:c++11-lang cmake gettext pkgconfig
|
|
INSTALLS_ICONS= yes
|
|
CMAKE_ARGS+= -DSKK_DEFAULT_PATH=${LOCALBASE}/share/skk/SKK-JISYO.L
|
|
|
|
OPTIONS_DEFINE= QT4
|
|
OPTIONS_DEFAULT=QT4
|
|
QT4_DESC= Enable Qt for GUI configuration
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MQT4}
|
|
USE_QT4= qmake_build moc_build rcc_build uic_build gui
|
|
USE_LDCONFIG= ${PREFIX}/lib/fcitx/qt
|
|
PLIST_SUB+= QT4=""
|
|
.else
|
|
CMAKE_ARGS+= -DENABLE_QT=OFF
|
|
PLIST_SUB+= QT4="@comment "
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|