blob: 9ae6f9ab720664c91f7f243931c5be489d4212cf (
plain)
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
|
# $NetBSD: Makefile,v 1.6 2013/05/10 00:52:04 riastradh Exp $
#
DISTNAME= libbind-6.0
PKGREVISION= 1
CATEGORIES= net
MASTER_SITES= ftp://ftp.isc.org/isc/libbind/6.0/
MAINTAINER= obache@NetBSD.org
HOMEPAGE= https://www.isc.org/software/libbind
COMMENT= ISC Standard Resolver Library
LICENSE= isc
CONFLICTS= man-pages-[0-9]*
GNU_CONFIGURE= yes
USE_LIBTOOL= yes
.include "../../mk/bsd.prefs.mk"
.if !empty(USE_CROSS_COMPILE:M[yY][eE][sS]) && ${OPSYS} == "NetBSD"
# Yes, we'll have /dev/random on NetBSD, even autoconf you can't detect
# it by compiling and running a program when cross-compiling.
CONFIGURE_ENV+= ac_cv_file__dev_random=yes
.endif
CONFIGURE_ARGS+= --with-libtool=yes
MAKE_JOBS_SAFE= no
.include "options.mk"
.include "../../mk/bsd.pkg.mk"
|