blob: ec984be81a5b2b96c7f702ff589460286d84a873 (
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.7 2014/10/03 11:51:54 obache Exp $
#
DISTNAME= libbind-6.0
PKGREVISION= 1
CATEGORIES= net
MASTER_SITES= ftp://ftp.isc.org/isc/libbind/6.0/
MAINTAINER= pkgsrc-users@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"
|