From d03cd9afc5c493cefcf8dc87de3689b53d79a54d Mon Sep 17 00:00:00 2001 From: Chris Rees Date: Sun, 18 Sep 2011 08:33:15 +0000 Subject: Handle built world without NIS more gracefully; detect missing ypcat and disable NIS module. PR: ports/115940 Submitted by: Alex Deiter Reviewed by: bf --- lang/python26/Makefile | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'lang/python26/Makefile') diff --git a/lang/python26/Makefile b/lang/python26/Makefile index 8f1e32eb9c96..8f742fcc5e9b 100644 --- a/lang/python26/Makefile +++ b/lang/python26/Makefile @@ -131,8 +131,10 @@ PLIST_SUB+= 32BIT_ONLY="" CFLAGS+= -DPYTHON_DEFAULT_RECURSION_LIMIT=900 .endif -.if !exists(/usr/bin/ypcat) # the world with NO_NIS +# See http://bugs.freebsd.org/115940 +.if !exists(/usr/bin/ypcat) || defined(WITHOUT_NIS) # the world with NO_NIS PLIST_SUB+= NO_NIS="@comment " +WITHOUT_NIS?= detected .else PLIST_SUB+= NO_NIS="" .endif @@ -188,6 +190,11 @@ post-patch: @cd ${WRKSRC} && ${PATCH} ${PATCH_ARGS} < ${PATCHDIR}/extra-patch-setup.py .endif .endif +.if defined(WITHOUT_NIS) + ${REINPLACE_CMD} -e \ + 's/disabled_module_list =[^]]*/&, "nis"/' \ + ${PATCH_WRKSRC}/setup.py +.endif post-configure: ${TAR} -C ${WRKSRC} -cf - . | ${TAR} -C ${SHARED_WRKSRC} -xf - -- cgit v1.2.3