as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3 to GCC 9.1 under most circumstances now after revision 507371. 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, everything INDEX-11 shows with a dependency on lang/gcc9 now. PR: 238330
38 lines
923 B
Makefile
38 lines
923 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= jstest-gtk
|
|
PORTVERSION= 20180710
|
|
PORTREVISION= 1
|
|
CATEGORIES= sysutils
|
|
|
|
MAINTAINER= rozhuk.im@gmail.com
|
|
COMMENT= Simple joystick tester based on Gtk+
|
|
|
|
LICENSE= GPLv3
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
USES= cmake compiler:c++11-lang gnome libtool localbase:ldflags \
|
|
pkgconfig
|
|
USE_GNOME= gtkmm30 libsigc++20
|
|
|
|
INSTALLS_ICONS= yes
|
|
|
|
# gitlab variables
|
|
USE_GITLAB= yes
|
|
GL_ACCOUNT= jstest-gtk
|
|
GL_COMMIT= 62f6e2d7d44620e503149510c428df9e004c9f3b
|
|
|
|
post-extract:
|
|
@${MKDIR} ${WRKSRC}/src/linux/
|
|
@${CP} -f ${FILESDIR}/input.h ${WRKSRC}/src/linux/
|
|
@${CP} -f ${FILESDIR}/input-event-codes.h ${WRKSRC}/src/linux/
|
|
@${CP} -f ${FILESDIR}/joystick.h ${WRKSRC}/src/linux/
|
|
@${CP} -f ${FILESDIR}/types.h ${WRKSRC}/src/linux/
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e \
|
|
's|include_directories(SYSTEM|include_directories("$${CMAKE_CURRENT_SOURCE_DIR}/src" SYSTEM|g' \
|
|
${WRKSRC}/CMakeLists.txt
|
|
|
|
.include <bsd.port.mk>
|