mirror of
https://git.freebsd.org/ports.git
synced 2025-06-03 03:46:30 -04:00
- Switch to C++14 for libboost_system to support C++14 consumers Changes: http://www.boost.org/users/history/version_1_68_0.html PR: 229569 Exp-run by: antoine Differential Revision: https://reviews.freebsd.org/D16165
38 lines
771 B
Makefile
38 lines
771 B
Makefile
# Created by: Veniamin Gvozdikov <vg@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= smack
|
|
PORTVERSION= 0.5.0
|
|
PORTREVISION= 12
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Low-level I/O storage library which packs data
|
|
|
|
LICENSE= GPLv2
|
|
|
|
BROKEN_powerpc64= fails to build: libboost_filesystem.so: undefined reference to std::__cxx11::basic_string
|
|
|
|
LIB_DEPENDS= libboost_iostreams.so:devel/boost-libs \
|
|
libsnappy.so:archivers/snappy
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= zloidemon
|
|
GH_TAGNAME= 72c81bf
|
|
|
|
USES= cmake
|
|
USE_LDCONFIG= yes
|
|
|
|
OPTIONS_DEFINE= EXAMPLES
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MEXAMPLES}
|
|
PLIST_SUB= EXAMPLES=""
|
|
CMAKE_ARGS= -DENABLE_EXAMPLES=ON
|
|
.else
|
|
CMAKE_ARGS= -DENABLE_EXAMPLES=OFF
|
|
PLIST_SUB= EXAMPLES="@comment "
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|