diff options
author | knu <knu@FreeBSD.org> | 2001-03-29 08:23:04 +0000 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2001-03-29 08:23:04 +0000 |
commit | 04798c9ca6300d662d1b44b97c872f5ebac0aa7d (patch) | |
tree | eed6108fd6cd36947cad79001f4c3a7fd5e5e594 /lang | |
parent | b5c3e53e6aa6826fd82bffa4399ce92d94f8d49f (diff) | |
download | FreeBSD-ports-04798c9ca6300d662d1b44b97c872f5ebac0aa7d.zip FreeBSD-ports-04798c9ca6300d662d1b44b97c872f5ebac0aa7d.tar.gz |
Build and use libpython without threads support and make this work
fine on both 4-STABLE and 5-CURRENT.
Diffstat (limited to 'lang')
-rw-r--r-- | lang/ruby-python/Makefile | 5 | ||||
-rw-r--r-- | lang/ruby-python/files/patch-aa | 67 |
2 files changed, 33 insertions, 39 deletions
diff --git a/lang/ruby-python/Makefile b/lang/ruby-python/Makefile index 95536ad..11562bd 100644 --- a/lang/ruby-python/Makefile +++ b/lang/ruby-python/Makefile @@ -7,6 +7,7 @@ PORTNAME= python PORTVERSION= 0.3.3 +PORTREVISION= 1 CATEGORIES= lang ruby python MASTER_SITES= http://www.goto.info.waseda.ac.jp/~fukusima/ruby/ PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX} @@ -15,13 +16,15 @@ DIST_SUBDIR= ruby MAINTAINER= knu@FreeBSD.org +BUILD_DEPENDS= ${NONEXISTENT}:${PYTHON_PORTSDIR}:-DWITHOUT_THREADS + PYTHON_VERSION?= python1.5 USE_RUBY= yes USE_RUBY_EXTCONF= yes WRKSRC= ${WRKDIR}/${PORTNAME} -CONFIGURE_ARGS= --with-python="${PYTHON_VERSION}" --with-pthread +CONFIGURE_ARGS= --with-python-lib=`cd ${PYTHON_PORTSDIR} && ${MAKE} -V WRKSRC` INSTALL_TARGET= site-install post-install: diff --git a/lang/ruby-python/files/patch-aa b/lang/ruby-python/files/patch-aa index bb64b29..ccc2e4a 100644 --- a/lang/ruby-python/files/patch-aa +++ b/lang/ruby-python/files/patch-aa @@ -1,47 +1,28 @@ --- extconf.rb.orig Mon Sep 11 01:14:42 2000 -+++ extconf.rb Fri Jan 19 04:43:51 2001 -@@ -1,35 +1,41 @@ ++++ extconf.rb Thu Mar 29 17:01:54 2001 +@@ -1,35 +1,29 @@ require 'mkmf' -py_dir = with_config("python-dir") -if py_dir - dirs = [py_dir] -+python = with_config("python", "python1.5") -+python = `which #{python}`.chomp -+ -+exit(1) unless File.executable? python -+ -+py_name = File.basename(python) -+py_dir = `#{python} -c 'import sys; print sys.exec_prefix' < /dev/null`.split(/\n/)[0] -+ -+exit(1) unless File.directory? py_dir -+ -+py_includedir = py_dir + "/include/" + py_name -+py_libdir = py_dir + "/lib/" + py_name -+py_configdir = py_libdir + "/config" -+py_makefile = py_configdir + "/Makefile" -+ -+print "checking for #{py_makefile}... " -+if File.exists? py_makefile -+ print "yes\n" - else +-else - dirs = ['/usr/local', '/usr'] - if File.executable? `which python`.chomp - d = `python -c 'import sys; print sys.exec_prefix' < /dev/null` - d = d.split(/\n/).shift - dirs.unshift d if d and File.directory? d - end -+ print "no\n" -+ exit(1) - end +-end ++python = with_config("python", "python1.5") ++python = `which #{python}`.chomp -for py_dir in dirs - py_includedir = py_dir + "/include/python1.5" - py_libdir = py_dir + "/lib/python1.5" - py_configdir = py_libdir + "/config" - py_makefile = py_configdir + "/Makefile" -+$CFLAGS += " -I#{py_includedir}" -+$LDFLAGS += " -L#{py_configdir}" ++exit(1) unless File.executable? python - print "checking for #{py_makefile}... " - if File.exists? py_makefile @@ -49,24 +30,34 @@ - break - else - print "no\n" -+if with_config("pthread") -+ if !have_library("pthread", "pthread_create") -+ $LDFLAGS += " -pthread" -+ $libs.sub!(/-lc\b/, '-lc_r') -+ -+ if !have_func("pthread_create") -+ exit(1) -+ end - end - end +- end +-end -exit(1) unless File.exists? py_makefile -- ++py_name = File.basename(python) ++py_dir = `#{python} -c 'import sys; print sys.exec_prefix' < /dev/null`.split(/\n/)[0] ++ ++exit(1) unless File.directory? py_dir + -$CFLAGS = "-I#{py_includedir}" -$LDFLAGS = "-L#{py_configdir}" ++dir_config("python", ++ py_dir + "/include/" + py_name, ++ py_dir + "/lib/" + py_name + "/config") ++ ++py_makefile = with_config("python-makefile", ++ py_dir + "/lib/" + py_name + "/config/Makefile") ++ ++print "checking for #{py_makefile}... " ++if File.exists? py_makefile ++ print "yes\n" ++else ++ print "no\n" ++ exit(1) ++end # If python is linked with extra libraries (e.g. -lpthread on Linux, # -lsocket on Solaris, etc.), have_library test will fail and built -@@ -59,11 +65,13 @@ +@@ -59,11 +53,13 @@ end $LOCAL_LIBS << py_extralibs |