aboutsummaryrefslogtreecommitdiffstats
path: root/dns/c-ares/Makefile
blob: d026c0b5fe9dfb7632022cf722a701e42e261d5a (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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# New ports collection makefile for:    ares
# Date created:     8 September 2003
# Whom:         roam@FreeBSD.org
#
# $FreeBSD$
#

PORTNAME=   c-ares
PORTVERSION=    1.8.0
CATEGORIES= dns
MASTER_SITES=   http://c-ares.haxx.se/download/ \
        http://obsd.isc.org/pub/OpenBSD/distfiles/ \
        http://mirrors.rit.edu/zi/

MAINTAINER= zi@FreeBSD.org
COMMENT=    An asynchronous DNS resolver library

LICENSE=    MIT

OPTIONS=    CONFIG_INFO "Add the ares_config_info patch" on \
        DEBUG       "Build with debug information" off \
        HIDE_SYMBOLS    "Hide internal library symbols" on \
        OPTIMIZED_CFLAGS    "Build with compiler optimizations" off

CONFLICTS=  ares-1.*

MAKE_JOBS_UNSAFE=   yes

.include <bsd.port.pre.mk>

.if defined(WITH_CONFIG_INFO)
EXTRA_PATCHES+= ${FILESDIR}/ares-config-info.patch
PKGNAMESUFFIX=  -config
.endif
.if defined(WITH_DEBUG)
CONFIGURE_ARGS+=--enable-debug
.else
CONFIGURE_ARGS+=--disable-debug
.endif
.if defined(WITH_HIDE_SYMBOLS)
CONFIGURE_ARGS+=--enable-symbol-hiding
.else
CONFIGURE_ARGS+=--disable-symbol-hiding
.endif
.if defined(WITH_OPTIMIZED_CFLAGS)
CONFIGURE_ARGS+=--enable-optimize
.else
CONFIGURE_ARGS+=--disable-optimize
.endif

USE_LDCONFIG=   yes
SHLIB_VER=  2

MAKE_ENV=   SHLIB_VER="${SHLIB_VER}"
PLIST_SUB=  SHLIB_VER="${SHLIB_VER}"

GNU_CONFIGURE=  yes
CONFIGURE_ARGS+=--enable-shared --disable-werror

MAN3=   ares_cancel.3 \
    ares_destroy.3 ares_dup.3 \
    ares_expand_name.3 ares_expand_string.3 \
    ares_fds.3 \
    ares_free_data.3 ares_free_hostent.3 ares_free_string.3 \
    ares_get_servers.3 \
    ares_gethostbyaddr.3 ares_gethostbyname.3 ares_gethostbyname_file.3 \
    ares_getnameinfo.3 \
    ares_getsock.3 \
    ares_init.3 ares_init_options.3 \
    ares_library_cleanup.3 ares_library_init.3 \
    ares_mkquery.3 \
    ares_parse_a_reply.3 ares_parse_aaaa_reply.3 \
    ares_parse_mx_reply.3 \
    ares_parse_ptr_reply.3 \
    ares_parse_srv_reply.3 ares_parse_txt_reply.3 \
    ares_process.3 \
    ares_query.3 \
    ares_search.3 \
    ares_send.3 ares_set_socket_callback.3 \
    ares_set_servers.3 \
    ares_strerror.3 \
    ares_timeout.3 \
    ares_version.3 \
    ares_parse_naptr_reply.3 \
    ares_parse_ns_reply.3 \
    ares_destroy_options.3 \
    ares_save_options.3

PROGRAMS=   acountry adig ahost

post-install:
    ${INSTALL_PROGRAM} ${PROGRAMS:S@^@${WRKSRC}/.libs/@} ${PREFIX}/bin/

.include <bsd.port.post.mk>