mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-20 04:02:27 +00:00
0438143249
For example (${OSVERSION} >= 900000 && ${OSVERSION} < 900021) is always true, as is (${OSVERSION} > 900002 || ${OSVERSION} < 900000 && ${OSVERSION} > 800107). Regarding patches, when an EXTRA_PATCHES is no longer needed, I remove it, when it is always needed, I renamed it, in one case, I merged two patches. Differential Revision: https://reviews.freebsd.org/D2209
28 lines
584 B
Makefile
28 lines
584 B
Makefile
# Created by: Hajimu UMEMOTO <ume@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= nss_resinit
|
|
PORTVERSION= 20060412
|
|
#PORTREVISION= 0
|
|
CATEGORIES= dns
|
|
MASTER_SITES= http://www.mahoroba.org/~ume/FreeBSD/
|
|
|
|
MAINTAINER= ume@FreeBSD.org
|
|
COMMENT= Resolver re-initialization NSS module
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
|
|
USES= uidfix
|
|
|
|
PLIST_FILES= lib/nss_resinit.so lib/nss_resinit.so.1 \
|
|
man/man8/nss_resinit.8.gz
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(WITH_COMPAT5X)
|
|
BROKEN= 7.X and later do not have compat syms for the old resolver
|
|
MAKE_ARGS+= CC="${CC} -DWITH_COMPAT5X"
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|