aboutsummaryrefslogtreecommitdiffstats
path: root/www/libmicrohttpd/Makefile
blob: 93889af52a5f5556c67efa74e7ae4c34b373ebc8 (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
52
53
54
55
56
# Created by: David Barksdale <amatus@gnu.org>
# $FreeBSD$

PORTNAME=   libmicrohttpd
PORTVERSION=    0.9.37
PORTREVISION=   1
CATEGORIES= www
MASTER_SITES=   GNU

MAINTAINER= gaod@hychen.org
COMMENT=    C library for embedding HTTP server functionality

LICENSE=    LGPL21
LICENSE_FILE=   ${WRKSRC}/COPYING

GNU_CONFIGURE=  yes
INSTALL_TARGET= install-strip
USES=       cpe libtool pathfix
USE_LDCONFIG=   yes
USE_OPENSSL=    yes

CPE_VENDOR= gnu

OPTIONS_DEFINE= GNUTLS

GNUTLS_LIB_DEPENDS= libgcrypt.so:${PORTSDIR}/security/libgcrypt \
            libgnutls.so:${PORTSDIR}/security/gnutls
GNUTLS_CONFIGURE_WITH=  libgcrypt-prefix=${LOCALBASE} gnutls=${LOCALBASE}
GNUTLS_CONFIGURE_ENABLE=https

INFO=       libmicrohttpd libmicrohttpd-tutorial

PLIST_FILES=    include/microhttpd.h \
        lib/libmicrohttpd.a \
        lib/libmicrohttpd.so \
        lib/libmicrohttpd.so.10 \
        lib/libmicrohttpd.so.10.27.0 \
        libdata/pkgconfig/libmicrohttpd.pc \
        libdata/pkgconfig/libmicrospdy.pc \
        man/man3/libmicrohttpd.3.gz

.include <bsd.port.pre.mk>

.if !(defined(WITH_OPENSSL_BASE) && ${OPSYS} == FreeBSD && ${OSVERSION} < 1000015)
PLIST_FILES+=   include/microspdy.h \
        lib/libmicrospdy.a \
        lib/libmicrospdy.so \
        lib/libmicrospdy.so.0 \
        lib/libmicrospdy.so.0.0.0
.endif

post-patch:
    @${REINPLACE_CMD} -e 's|bin_PROGRAMS =|noinst_PROGRAMS +=|' \
        ${WRKSRC}/src/examples/Makefile.in

.include <bsd.port.post.mk>