Attempt to fix build of kodi-devel on 2018Q1. r453704 moved libfmt from building a static library to a shared library but PORTREVISION was not bumped. This now leads to build failures on 2018Q1 where libfmt.so cannot be found because the libfmt package was not rebuilt and only installs libfmt.a. http://beefy1.nyi.freebsd.org/data/111i386-quarterly/457961/logs/kodi-devel-18.0.g20171213_1.log http://beefy3.nyi.freebsd.org/data/111amd64-quarterly/457961/logs/kodi-devel-18.0.g20171213_1.log Pointy hat: yuri MFH: 2018Q1
22 lines
448 B
Makefile
22 lines
448 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= libfmt
|
|
PORTVERSION= 3.0.1
|
|
PORTREVISION= 3
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= SlavaMikerov@gmail.com
|
|
COMMENT= Fmt is an open-source formatting library for C++
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE.rst
|
|
|
|
USES= cmake:outsource compiler:c++11-lib
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= fmtlib
|
|
GH_PROJECT= fmt
|
|
CMAKE_ARGS= -DFMT_DOC=OFF -DBUILD_SHARED_LIBS=ON
|
|
OPTIONS_DEFINE= TEST
|
|
TEST_CMAKE_BOOL= FMT_TEST
|
|
|
|
.include <bsd.port.mk>
|