summaryrefslogtreecommitdiff
path: root/net-mgmt/sx/Makefile
blob: a87ea82e77d0b2cdcc3363e2219adf80edf8e79b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Created by: Veniamin Gvozdikov <vg@FreeBSD.org>
# $FreeBSD$

PORTNAME=	sx
PORTVERSION=	2.0
CATEGORIES=	net-mgmt
MASTER_SITES=	http://cdn.skylable.com/source/

MAINTAINER=	vg@FreeBSD.org
COMMENT=	Skylable Sx is a reliable, fully distributed cluster solution

LICENSE=	GPLv2

LIB_DEPENDS=	libcurl.so:ftp/curl \
		libfcgi.so:www/fcgi \
		libyajl.so:devel/yajl \
		libltdl.so:devel/libltdl

HAS_CONFIGURE=	yes
USE_LDCONFIG=	yes
INSTALL_TARGET=	install-strip
USES=		fuse gmake libtool pkgconfig sqlite
CONFIGURE_ARGS=	CPPFLAGS="-I${LOCALBASE}/include" \
		LDFLAGS="-L${LOCALBASE}/lib" --prefix="${STAGE}${PREFIX}" \
		--sysconfdir="${ETCDIR}" --mandir="${MANPREFIX}/man" \
		--with-system-libs

OPTIONS_DEFINE=	SXSERVER DOCS
SXSERVER_DESC=	Enable sxhttpd server
OPTIONS_DEFAULT=SXSERVER

.include <bsd.port.options.mk>

.if ${PORT_OPTIONS:MSXSERVER}
CONFIGURE_ARGS+=--localstatedir="${STAGE}${PREFIX}/sxserver"
PLIST_SUB+=	SXSERVER=""
USE_RC_SUBR=	sxserver
SUB_FILES=	pkg-message
.else
CONFIGURE_ARGS+=--disable-sxhttpd --disable-server
PLIST_SUB+=	SXSERVER="@comment "
.endif

.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1002000
PLIST_FILES+=	lib/sxclient/libsxf_aes256-20.so \
		lib/sxclient/libsxf_aes256.so \
		lib/sxclient/libsxf_aes256_dummy-00.so \
		lib/sxclient/libsxf_aes256_dummy.so
.endif

.include <bsd.port.mk>