diff options
author | Jeremy Lea <reg@FreeBSD.org> | 2000-04-17 00:19:02 +0000 |
---|---|---|
committer | Jeremy Lea <reg@FreeBSD.org> | 2000-04-17 00:19:02 +0000 |
commit | b4455771cced2fe9f134e751fe88dbba7226e694 (patch) | |
tree | 39733bef5e1d466d30938b5a47f0b46a7b6890b4 /lang/python | |
parent | 877b8a533b44bb6324ebbaf65cd80a60d1572003 (diff) | |
download | ports-b4455771cced2fe9f134e751fe88dbba7226e694.tar.gz ports-b4455771cced2fe9f134e751fe88dbba7226e694.zip |
Standardize all user defined options to the booleans WITH_FOO and
WITHOUT_FOO. Begin the process of reserving these prefixes for user defined
options.
No comment by: ports
Notes
Notes:
svn path=/head/; revision=27680
Diffstat (limited to 'lang/python')
-rw-r--r-- | lang/python/Makefile | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/lang/python/Makefile b/lang/python/Makefile index 311e9a39b235..954c1d45a6ea 100644 --- a/lang/python/Makefile +++ b/lang/python/Makefile @@ -36,9 +36,8 @@ SETUP_FILE= Setup # # This option is enabled by default. # -WITH_THREADS?= yes LIBC_R!= /sbin/ldconfig -r | grep c_r || true -.if ${LIBC_R} != "" && defined(WITH_THREADS) && ${WITH_THREADS} == yes +.if (${LIBC_R} != "") && !defined(WITHOUT_THREADS) CONFIGURE_ARGS+= --with-thread CFLAGS+= -D_THREAD_SAFE CONFIGURE_ENV+= LDFLAGS="-pthread ${LDFLAGS}" @@ -57,8 +56,7 @@ PLIST_GMP= ${PKGDIR}/PLIST.gmp # to a web tree checker, to a collection of simple scripts that are useful # while extending or managing Python. # -WITH_TOOLS?= yes -.if defined(WITH_TOOLS) && ${WITH_TOOLS} == yes +.if !defined(WITHOUT_TOOLS) PLIST_TOOLS= ${PKGDIR}/PLIST.Tools .endif @@ -99,7 +97,7 @@ post-install: ${INSTALL_DATA} ${WRKSRC}/Misc/python-mode.el ${PREFIX}/share/emacs/site-lisp ${INSTALL_DATA} ${WRKSRC}/Misc/COPYRIGHT ${PREFIX}/share/doc/python @${MKDIR} ${PREFIX}/lib/python1.5/site-packages -.if defined(WITH_TOOLS) && ${WITH_TOOLS} == yes +.if !defined(WITHOUT_TOOLS) @cd ${WRKSRC}; tar cf - Tools | \ (cd ${PREFIX}/lib/python1.5; tar xf -) .endif |