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
40 lines
1,000 B
Makefile
40 lines
1,000 B
Makefile
# Created by: Tobias Gion <freebsd@gionet.de>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= guichan
|
|
PORTVERSION= 0.8.2
|
|
PORTREVISION= 14
|
|
CATEGORIES= devel games
|
|
MASTER_SITES= http://pkgs.fedoraproject.org/repo/pkgs/guichan/${DISTFILES}/af535d7f387e774e3197cef8023ea105/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Small, efficient C++ GUI library designed for games
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
USES= compiler:c++11-lang gmake pathfix libtool localbase:ldflags
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
|
|
PORTDOCS= AUTHORS ChangeLog NEWS README TODO
|
|
|
|
OPTIONS_DEFINE= SDL ALLEGRO OPENGL DOCS
|
|
OPTIONS_DEFAULT= SDL OPENGL
|
|
OPTIONS_SUB= yes
|
|
|
|
SDL_USE= SDL=sdl,image
|
|
SDL_CONFIGURE_ENABLE= sdl sdlimage
|
|
|
|
ALLEGRO_DESC= Allegro support
|
|
ALLEGRO_LIB_DEPENDS= liballeg.so:devel/allegro
|
|
ALLEGRO_CONFIGURE_ENABLE=allegro
|
|
|
|
OPENGL_USE= GL=gl
|
|
OPENGL_CONFIGURE_ENABLE=opengl
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|