FreshPorts -- The Place For Ports notbug Sat, 26 May 2012 10:55 PM BST
Port details
scons 2.1.0 devel on this many watch lists=27 search for ports that depend on this port
A build tool alternative to make
Maintained by: gavin@16degrees.com.au search for ports maintained by this maintainer
Port Added: 03 Mar 2002 13:19:25
Also Listed In: python
License: not specified in port


SCons is an Open Source software construction tool--that is, a build tool;
an improved substitute for the classic Make utility; a better way to build
software.

WWW: http://www.scons.org/
CVSWeb : Sources : Main Web Site : Distfiles Availability : PortsMon
NOTE: FreshPorts displays only required dependencies information. Optional dependencies are not covered.
Required To Build: lang/python27
Required To Run: lang/python27

Required by:
for Build

To install the port: cd /usr/ports/devel/scons/ && make install clean
To add the package: pkg_add -r scons


Configuration Options
     No options to configure

Master Sites:
http://heanet.dl.sourceforge.net/project/scons/scons/2.1.0/
http://sunet.dl.sourceforge.net/project/scons/scons/2.1.0/
http://iweb.dl.sourceforge.net/project/scons/scons/2.1.0/
http://switch.dl.sourceforge.net/project/scons/scons/2.1.0/
http://surfnet.dl.sourceforge.net/project/scons/scons/2.1.0/
http://kent.dl.sourceforge.net/project/scons/scons/2.1.0/
http://freefr.dl.sourceforge.net/project/scons/scons/2.1.0/
http://voxel.dl.sourceforge.net/project/scons/scons/2.1.0/
http://jaist.dl.sourceforge.net/project/scons/scons/2.1.0/
http://osdn.dl.sourceforge.net/project/scons/scons/2.1.0/
http://nchc.dl.sourceforge.net/project/scons/scons/2.1.0/
http://ncu.dl.sourceforge.net/project/scons/scons/2.1.0/
http://transact.dl.sourceforge.net/project/scons/scons/2.1.0/
http://softlayer.dl.sourceforge.net/project/scons/scons/2.1.0/
http://internode.dl.sourceforge.net/project/scons/scons/2.1.0/
http://ufpr.dl.sourceforge.net/project/scons/scons/2.1.0/
http://waix.dl.sourceforge.net/project/scons/scons/2.1.0/
ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/

Number of commits found: 48

Commit History - (may be incomplete: see CVSWeb link above for full details)
DateByDescription
09 Feb 2012 17:20:14
Original commit files touched by this commit  2.1.0
scheidell search for other commits by this committer
- Should have been part of the original commit, py eggs should not be in
pkg-plist

PR:             ports/161518
Approved by:    Gavin McDonald<gavin@16degrees.com.au>  (maintainer, original
commit), gabor (mentor)
30 Jan 2012 09:08:55
Original commit files touched by this commit  2.1.0
scheidell search for other commits by this committer
- Upgrade to 2.1.0

PR:             ports/161518
Submitted by:   Norbert Koch <nkoch@demig.de>
Approved by:    Gavin McDonald <gavin@16degrees.com.au> (maintainer), gabor
(mentor)
18 Jul 2011 13:21:19
Original commit files touched by this commit  2.0.1
skreuzer search for other commits by this committer
Update to version 2.0.1

PR:             ports/158205
Approved by:    Gavin McDonald <gavin@16degrees.com.au> (maintainer)
03 Jul 2011 14:59:23
Original commit files touched by this commit  1.3.0
ohauer search for other commits by this committer
-remove MD5
11 Sep 2010 17:36:08
Original commit files touched by this commit  1.3.0
ashish search for other commits by this committer
- Fix the port to avoid installing manpages when NO_INSTALL_MANPAGES is defined.
- Remove the egg-info from the pkg-plist, as it's recorded implicitly.

PR:             ports/148310
Submitted by:   ashish
Approved by:    pgj (mentor), gavin at 16degrees.com.au (maintainer)
19 Jul 2010 21:33:52
Original commit files touched by this commit  1.3.0
pgollucci search for other commits by this committer
- Pass to new maintainer

Approved by:    old maintainer (via e-mail)
Requested by:   new maintainer (via -email)
29 Apr 2010 19:41:37
Original commit files touched by this commit  1.3.0
pgollucci search for other commits by this committer
- Assign to new volunteer
26 Apr 2010 22:23:47
Original commit files touched by this commit  1.3.0
pgollucci search for other commits by this committer
- Update to 1.3.0

PR:             144037 [update to 1.2.0-d20100117] [1]
Submitted by:   dikshie <dikshie@sfc.wide.ad.jp>
04 Jan 2010 02:39:59
Original commit files touched by this commit  1.2.0_20091224
pgollucci search for other commits by this committer
- lang/python23 is nolonger supported so remove the obsolete patch
- Update to 1.2.0_20091224 [1]

PR:             ports/142234 [1]
Submitted by:   dikshie <dikshie@sfc.wide.ad.jp> [1]
22 Aug 2009 00:18:43
Original commit files touched by this commit  1.2.0_20090223
amdmi3 search for other commits by this committer
- Switch SourceForge ports to the new File Release System: categories starting
with D
07 Jul 2009 23:53:47
Original commit files touched by this commit  1.2.0_20090223
pgollucci search for other commits by this committer
- Update to checkpoint release 1.2.0_20090223

Submitted by:   bms@ (via e-mail)
16 May 2009 06:27:56
Original commit files touched by this commit  1.2.0_1
pgollucci search for other commits by this committer
- Mark most of my ports MAKE_JOBS_SAFE=yes

Tested by: several builds in P6 TB
25 Dec 2008 14:57:06
Original commit files touched by this commit  1.2.0_1
pgollucci search for other commits by this committer
Python's subprocess module has a race condition: Popen() constructor has a call
to global "_cleanup()" function on whenever a Popen object gets created, and
that call causes a check for all pending Popen objects whether their subprocess
has exited - i.e. the poll() method is called for every active Popen object.

See http://bugs.python.org/issue1731717 for addition details

SCon's compat/_scons_subprocess.py module is just a copy of a more recent
stock Python subprocess.py modified so it will work with older Python
versions.

The attached patch will add locks around calls to Popen and change
the compat module in a way that the subprocess module is always used, no matter
if Python already ships one.

The rationale behind this decision is that there are many Python versions in the
wild with different Popen() race condition problems.

PR:             ports/128845
Submitted by:   Steven Kreuzer <skreuzer@exit2shell.com>
Approved by:  araujo (mentor, implicit)
24 Dec 2008 08:24:53
Original commit files touched by this commit  1.2.0
pgollucci search for other commits by this committer
Update to 1.2.0

Approved by:    gabor (mentor)
29 Oct 2008 00:52:10
Original commit files touched by this commit  1.1.0
wxs search for other commits by this committer
- Update to 1.1.0

PR:             ports/128437
Submitted by:   Vaclav Haisman <v.haisman@sh.cvut.cz>
Approved by:    pgollucci (maintainer)
23 Jul 2008 02:43:55
Original commit files touched by this commit  0.98.5
pgollucci search for other commits by this committer
Update my ports to my freebsd address

Approved by:    araujo (mentor)
20 Jul 2008 15:22:29
Original commit files touched by this commit  0.98.5
araujo search for other commits by this committer
- Update to 0.98.5.
- Pass mainteinership to submitter.

PR:             ports/125532
Submitted by:   Philip M. Gollucci <pgollucci@p6m7g8.com>
30 May 2008 05:15:04
Original commit files touched by this commit  0.98.4
perky search for other commits by this committer
- Update to 0.98.4 [1]
- Change maintainer to ports@

PR:             124103 [1]
Submitted by:   gahr [1]
30 Jul 2007 09:42:28
Original commit files touched by this commit  0.97
alexbl search for other commits by this committer
 - Make Python 2.5.1 the default Python version
 - Add significantly better support in bsd.python.mk for working with
   Python Eggs and the easy_install system

Tested by:      pointyhat runs
Approved by:    pav (portmgr)
Most work by:   perky
Thanks to:      pav
11 Jun 2007 07:07:32
Original commit files touched by this commit  0.97
perky search for other commits by this committer
Update to 0.97

PR:             113510
Submitted by:   aaron
12 Feb 2007 11:56:39
Original commit files touched by this commit  0.96.94
perky search for other commits by this committer
Update to 0.96.94

PR:             108476
Submitted by:   Li-Wen Hsu <lwhsu@lwhsu.org>
22 Apr 2006 05:18:18
Original commit files touched by this commit  0.96.92
perky search for other commits by this committer
Update to 0.96.92
22 Jan 2006 08:30:12
Original commit files touched by this commit  0.96.91
edwin search for other commits by this committer
SHA256ify

Approved by:    krion@
10 Oct 2005 14:48:46
Original commit files touched by this commit  0.96.91
perky search for other commits by this committer
Update to 0.96.91
04 Apr 2005 21:57:07
Original commit files touched by this commit  0.96.90_1
pav search for other commits by this committer
- Add patches to fix build of blender-devel. Other scons using ports
  were tested to continue working.

PR:             ports/79064
Submitted by:   Michal Varga <varga@stonehenge.sk>
Approved by:    maintainer timeout (14 days)
Obtained from:  scons CVS
19 Feb 2005 17:29:31
Original commit files touched by this commit  0.96.90
perky search for other commits by this committer
Update to 0.96.90

PR:             77687
Submitted by:   Radim Kolar <hsn@netmag.cz>
30 Nov 2004 15:25:48
Original commit files touched by this commit  0.96.1
perky search for other commits by this committer
Update to 0.96.1

PR:             74236
Submitted by:   Stefan Walter <sw@gegenunendlich.de>
03 Sep 2004 15:11:16
Original commit files touched by this commit  0.96
perky search for other commits by this committer
Update to 0.96

PR:             71247
Submitted by:   Marco Molteni <mmolteni@cisco.com>
13 Mar 2004 05:10:50
Original commit files touched by this commit  0.95
perky search for other commits by this committer
Update to 0.95
10 Nov 2003 12:28:43
Original commit files touched by this commit  0.94
perky search for other commits by this committer
Update to 0.94
31 Oct 2003 08:26:21
Original commit files touched by this commit  0.93
perky search for other commits by this committer
Update to 0.93
23 Aug 2003 02:17:31
Original commit files touched by this commit  0.92
perky search for other commits by this committer
Update 0.92
15 Aug 2003 13:23:51
Original commit files touched by this commit  0.91
perky search for other commits by this committer
Update to 0.91
26 Jun 2003 08:44:30
Original commit files touched by this commit  0.90
perky search for other commits by this committer
Update to 0.90 (the first beta release)
22 May 2003 11:41:31
Original commit files touched by this commit  0.14
perky search for other commits by this committer
Update to 0.14
16 Apr 2003 21:25:47
Original commit files touched by this commit  0.13_1
perky search for other commits by this committer
Install a manpage

PR:             50709
Submitted by:   Marco Molteni <molter@tin.it>
04 Apr 2003 02:52:24
Original commit files touched by this commit  0.13
perky search for other commits by this committer
Update to 0.13
31 Mar 2003 03:58:14
Original commit files touched by this commit  0.12
perky search for other commits by this committer
Update to 0.12
25 Feb 2003 06:25:36
Original commit files touched by this commit  0.11
perky search for other commits by this committer
De-pkg-comment for my ports.
25 Feb 2003 04:57:57
Original commit files touched by this commit  0.11
perky search for other commits by this committer
Update to 0.11
17 Jan 2003 18:22:50
Original commit files touched by this commit  0.10
perky search for other commits by this committer
Update to 0.10
02 Jan 2003 04:50:53
Original commit files touched by this commit  0.09
perky search for other commits by this committer
Update to 0.09
18 Jul 2002 04:58:31
Original commit files touched by this commit  0.08
perky search for other commits by this committer
Update to 0.08
25 Jun 2002 07:50:58
Original commit files touched by this commit  0.07
perky search for other commits by this committer
Updating my email address.

Approved by: cjh (mentor)
04 May 2002 17:40:28
Original commit files touched by this commit  0.07
pat search for other commits by this committer
Update to 0.07

PR:             37749
Submitted by:   maintainer
29 Apr 2002 14:01:09
Original commit files touched by this commit  0.06
ijliao search for other commits by this committer
use USE_PYDISTUTILS
04 Apr 2002 04:25:10
Original commit files touched by this commit  0.06
pat search for other commits by this committer
- Update to 0.06
- Give maintainership to submitter

PR:             36679
Submitted by:   Hye-Shik Chang <perky@fallin.lv>
Approved by:    maintainer
03 Mar 2002 16:19:25
files touched by this commit
petef search for other commits by this committer
Add scons 0.01, a build tool alternative to make.    

Number of commits found: 48

Login
User Login
Create account

Servers and bandwidth provided by
New York Internet
SuperNews

Search
Enter Keywords:
 
more...

Latest Vulnerabilities
haproxyMay 24
foswikiMay 21
inspircd*May 21
inspircd12*May 21
sympaMay 21
sympa5May 21
libxml2May 18
pidgin-otrMay 16
sudoMay 16
chromiumMay 15
chromiumMay 15
pivotx*May 14
socatMay 14
libpurpleMay 12
php5May 12

12 vulnerabilities affecting 17 ports have been reported in the past 14 days

* - modified, not new

All vulnerabilities


Ports
Home
Categories
Deleted ports
Sanity Test Failures
Newsfeeds


Statistics
Graphs
NEW Graphs (Javascript)
Traffic

Calculated hourly:
Port count 23672
Broken 193
Deprecated 147
Ignore 736
Forbidden 3
Restricted 328
No CDROM 110
Vulnerable 0
Expired 41
Set to expire 188
Interactive 54
new 24 hours 2
new 48 hours32
new 7 days59
new fortnight183
new month255

This site
What is FreshPorts?
About the Authors
FAQ
How big is it?
The latest upgrade!
Privacy
Forums
Blog
Contact

Servers and bandwidth provided by
New York Internet
SuperNews
Valid HTML, CSS, and RSS.
Copyright © 2000-2012 DVL Software Limited. All rights reserved.
This page created in 0.181 seconds.