09f9633cb6
in the ports tree (via Mk/bsd.default-versions.mk and lang/gcc) which has now moved from GCC 6 to GCC 7 by default. This includes ports - featuring USE_GCC=yes or USE_GCC=any, - featuring USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and those - with USES=compiler specifying one of openmp, nestedfct, c11, c++0x, c++11-lib, c++11-lang, c++14-lang, c++17-lang, or gcc-c++11-lib. PR: 222542
31 lines
590 B
Makefile
31 lines
590 B
Makefile
# Created by: Ben Lavery <ben.lavery@hashbang0.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= bunnysay
|
|
PORTVERSION= 1.1
|
|
PORTREVISION= 1
|
|
DISTVERSIONPREFIX= v
|
|
CATEGORIES= games
|
|
|
|
MAINTAINER= ben.lavery@hashbang0.com
|
|
COMMENT= Bunny Sign for terminals with UTF-8 support
|
|
|
|
LICENSE= GPLv3+
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USES= compiler:c++11-lang gmake
|
|
|
|
ALL_TARGET= bunnysay
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= co60ca
|
|
|
|
PLIST_FILES= bin/bunnysay
|
|
|
|
post-extract:
|
|
@${MV} ${WRKSRC}/makefile ${WRKSRC}/Makefile
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/bunnysay ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
|
|
|
|
.include <bsd.port.mk>
|