59e02117ae
Changes: http://www.boost.org/users/history/version_1_63_0.html PR: 215598 Exp-run by: antoine Approved by: office (bapt) MFH: 2017Q1
36 lines
658 B
Makefile
36 lines
658 B
Makefile
# Created by: Veniamin Gvozdikov <vg@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= smack
|
|
PORTVERSION= 0.5.0
|
|
PORTREVISION= 6
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= vg@FreeBSD.org
|
|
COMMENT= Low-level I/O storage library which packs data
|
|
|
|
LICENSE= GPLv2
|
|
|
|
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>
|