1f4c927cd7
Scality Droplet is a high perfomance Cloud Storage client library providing a set of high-level features. It is open source and released under the BSD License. Multiple backends are supported: S3 (Simple Storage Service), CDMI (Cloud Data Management Interface), SRWS (Scality Simple Rest Web Service). On-the-fly encryption/decryption and buffered I/O are also supported. initial port from Vadim Zhukov tweaks by me and sthen@, ok sthen@
48 lines
1.1 KiB
Makefile
48 lines
1.1 KiB
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2011/12/23 13:10:30 jasper Exp $
|
|
|
|
SHARED_ONLY= Yes
|
|
|
|
CATEGORIES= devel
|
|
COMMENT= high perfomance Cloud Storage client library
|
|
|
|
VERSION= 1.1
|
|
DISTNAME= droplet-${VERSION}
|
|
HOMEPAGE= https://github.com/scality/Droplet
|
|
|
|
SHARED_LIBS= droplet 0.0 #0.0
|
|
|
|
MAINTAINER= Rafael Sadowski <rafael@sizeofvoid.org>
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
WANTLIB= crypto json m ssl xml2 z
|
|
|
|
MASTER_SITES= http://www.sizeofvoid.org/pub/OpenBSD/distfiles/
|
|
|
|
WRKDIST= ${WRKDIR}/scality-Droplet-e6692cc
|
|
MODULES= converters/libiconv
|
|
BUILD_DEPENDS= ${MODGNU_AUTOCONF_DEPENDS} \
|
|
${MODGNU_AUTOMAKE_DEPENDS} \
|
|
devel/json-c \
|
|
devel/libtool
|
|
# XXX Depends on libtool macros
|
|
|
|
LIB_DEPENDS= textproc/libxml \
|
|
devel/json-c
|
|
|
|
USE_LIBTOOL= Yes
|
|
AUTOCONF_VERSION= 2.68
|
|
AUTOMAKE_VERSION= 1.11
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
post-patch:
|
|
cd ${WRKBUILD} && env AUTOCONF_VERSION=2.68 AUTOMAKE_VERSION=1.11 \
|
|
/bin/sh ./autogen.sh
|
|
|
|
.include <bsd.port.mk>
|