From d9f8ef49a22d310705c4997a74d6d2a0f60c636b Mon Sep 17 00:00:00 2001 From: Li-Wen Hsu Date: Sat, 23 Apr 2011 13:45:28 +0000 Subject: - Update from 1.6.5 to 1.8.1 [1] - Attached a patch to fix the TERM handling issue in SConstruct [1] - Added "ldconfig" to the rc.d script to start mongod correctly if running in a jail [1] - Remove unsupported FreeBSD version stuff - Replace pkg-install and pkg-deinstall with USERS and GROUPS in Makefile PR: ports/156297 [1] Submitted by: Mirko Zinn (maintainer) --- databases/mongodb/files/patch-SConstruct | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 databases/mongodb/files/patch-SConstruct (limited to 'databases/mongodb/files/patch-SConstruct') diff --git a/databases/mongodb/files/patch-SConstruct b/databases/mongodb/files/patch-SConstruct new file mode 100644 index 000000000000..ac3f01d83d64 --- /dev/null +++ b/databases/mongodb/files/patch-SConstruct @@ -0,0 +1,14 @@ +--- SConstruct.orig 2011-04-06 06:40:13.000000000 +0200 ++++ SConstruct 2011-04-09 10:59:56.000000000 +0200 +@@ -679,7 +679,10 @@ + + #make scons colorgcc friendly + env['ENV']['HOME'] = os.environ['HOME'] +- env['ENV']['TERM'] = os.environ['TERM'] ++ try: ++ env['ENV']['TERM'] = os.environ['TERM'] ++ except KeyError: ++ env['ENV']['TERM'] = 'dumb' + + if linux and has_option( "sharedclient" ): + env.Append( LINKFLAGS=" -Wl,--as-needed -Wl,-zdefs " ) \ No newline at end of file -- cgit v1.2.3