2016-09-11 15:44:29 +00:00
|
|
|
# Created by: Dmitry Marakasov <amdmi3@FreeBSD.org>
|
|
|
|
# $FreeBSD$
|
|
|
|
|
|
|
|
PORTNAME= liblcf
|
2018-12-07 19:48:24 +00:00
|
|
|
PORTVERSION= 0.5.4
|
Bump PORTREVISION for ports depending on the canonical version of GCC
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
2018-12-12 01:35:33 +00:00
|
|
|
PORTREVISION= 1
|
2016-09-11 15:44:29 +00:00
|
|
|
CATEGORIES= games
|
|
|
|
|
|
|
|
MAINTAINER= amdmi3@FreeBSD.org
|
|
|
|
COMMENT= Library to handle RPG Maker 2000/2003 and EasyRPG projects
|
|
|
|
|
|
|
|
LICENSE= MIT
|
|
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
|
|
|
|
LIB_DEPENDS= libicui18n.so:devel/icu \
|
|
|
|
libexpat.so:textproc/expat2
|
|
|
|
|
|
|
|
USE_GITHUB= yes
|
|
|
|
GH_ACCOUNT= EasyRPG
|
|
|
|
|
2018-12-07 19:48:24 +00:00
|
|
|
USES= cmake compiler:c++11-lib pkgconfig
|
2016-09-11 15:44:29 +00:00
|
|
|
USE_LDCONFIG= yes
|
2018-12-07 19:48:24 +00:00
|
|
|
CMAKE_ARGS= -DCMAKE_INSTALL_LIBDIR=lib \
|
|
|
|
-DCMAKE_INSTALL_INCLUDEDIR=include
|
2016-09-11 15:44:29 +00:00
|
|
|
|
2018-12-07 19:48:24 +00:00
|
|
|
PORTDOCS= AUTHORS.md README.md
|
2016-09-11 15:44:29 +00:00
|
|
|
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
|
|
|
|
post-install-DOCS-on:
|
|
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.for f in ${PORTDOCS}
|
|
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}/
|
|
|
|
.endfor
|
|
|
|
|
|
|
|
.include <bsd.port.mk>
|