summaryrefslogtreecommitdiff
path: root/parallel
AgeCommit message (Collapse)AuthorFilesLines
2005-03-07Make this work on IRIX.jschauma2-6/+11
Other non-NetBSD OS probably want to check this, too, since so far we've always built with --with-arch=netbsd...
2005-03-03Sort.wiz2-201/+201
2005-03-03update mpich to 1.2.6, with most work provided by Phil Nelson in PR pkg/27273garbled18-525/+327
with some minor PLIST and etc fixes by me.
2005-02-24Add RMD160 digestsagc10-10/+22
2005-02-10Upgradde ganglia-monitor-core to version 3.0.0, which was releasedjschauma12-148/+694
one day after the initial import of this package.
2005-02-07add/enable ganglia-monitor-corejschauma1-1/+2
2005-02-07Initial import of ganglia-monitor-core into pkgsrc:jschauma15-0/+1354
Ganglia is a scalable distributed monitoring system for high-performance computing systems such as clusters and Grids. It is based on a hierarchical design targeted at federations of clusters. It relies on a multicast-based listen/announce protocol to monitor state within clusters and uses a tree of point-to-point connections amongst representative cluster nodes to federate clusters and aggregate their state. It leverages widely used technologies such as XML for data representation, XDR for compact, portable data transport, and RRDtool for data storage and visualization. It uses carefully engineered data structures and algorithms to achieve very low per-node overheads and high concurrency. The implementation is robust, has been ported to an extensive set of operating systems and processor architectures, and is currently in use on over 500 clusters around the world. It has been used to link clusters across university campuses and around the world and can scale to handle clusters with 2000 nodes. http://ganglia.sourceforge.net
2005-01-12Nuke USE_FORTRAN and bring the f2c handling within the mk/compilerjlam2-5/+5
framework. The list of changes include: * Modify compiler.mk so that "c" is always prepended to USE_LANGUAGES, so we no longer need to say it in package Makefiles. Packages should now append to USE_LANGUAGES instead of setting it. * Create mk/compiler/f2c.mk which implements another pseudo-compiler "f2c" that may be used with any C compiler backend, e.g. PKGSRC_COMPILER= f2c ccache gcc * Teach the various "real" compiler files, e.g., sunpro.mk, mipspro.mk, etc., to use f2c if the native Fortran compiler isn't present. Packages that use Fortran should now simply include the line: USE_LANGUAGES+= fortran in the package Makefile.
2004-12-28The default location of the pkgsrc-installed rc.d scripts is nowreed1-2/+2
under share/examples/rc.d. The variable name already was named RCD_SCRIPTS_EXAMPLEDIR. This is from ideas from Greg Woods and others. Also bumped PKGREVISION for all packages using RCD_SCRIPTS mechanism (as requested by wiz).
2004-12-20since perl is now built with threads on most platforms, the perl archlibgrant1-2/+2
module directory has changed (eg. "darwin-2level" vs. "darwin-thread-multi-2level"). binary packages of perl modules need to be distinguishable between being built against threaded perl and unthreaded perl, so bump the PKGREVISION of all perl module packages and introduce BUILDLINK_RECOMMENDED for perl as perl>=5.8.5nb5 so the correct dependencies are registered and the binary packages are distinct. addresses PR pkg/28619 from H. Todd Fujinaka.
2004-12-14Add build dependency on pkgconfig.minskim1-1/+2
2004-12-03Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs.wiz2-4/+4
Suggested by Roland Illig, ok'd by various.
2004-11-12Changes 3.4.5:adam10-115/+56
The latest PVM release 3.4.5 is mainly bug fixes and additional support for varying Linux distributions and some better 64-bit Linux/AMD support (like it doesn't seg fauly any more :-). Added strerror() support instead of old crusty global vars. New architectures were added for AIX5*. Fixed hilarious bug in pvmtmpnam(), caused crash after 10,000 spawns... :-D While there's a variety of little tweaks, there are no significant changes or additions to the basic functionality.
2004-10-03Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10tv6-7/+12
in the process. (More information on tech-pkg.) Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and installing .la files. Bump PKGREVISION (only) of all packages depending directly on the above via a buildlink3 include.
2004-09-22Mechanical changes to package PLISTs to make use of LIBTOOLIZE_PLIST.jlam2-22/+2
All library names listed by *.la files no longer need to be listed in the PLIST, e.g., instead of: lib/libfoo.a lib/libfoo.la lib/libfoo.so lib/libfoo.so.0 lib/libfoo.so.0.1 one simply needs: lib/libfoo.la and bsd.pkg.mk will automatically ensure that the additional library names are listed in the installed package +CONTENTS file. Also make LIBTOOLIZE_PLIST default to "yes".
2004-09-10Fix installation with gcc3.wiz4-19/+40
Install documentation into share/doc instead of share/doc/html. Add missing files to PLIST. Bump PKGREVISION to 2.
2004-09-07Update GridSim to 3.0.2 to fix installation problems seen in latestjschauma3-361/+275
bulk-builds. Changes: - fix a bug in GridResource.init() method. policyType_ attribute should be instantiated before creating the policy_ object. - fix a bug in GridSim.gridletSubmit(Gridlet, int). By default, acknowledgement is false or not required. - fix a bug in GridResource.processGridletSubmit(). If a Gridlet has finished previously, then a resource needs to send it back to sender/user. - renumbered the tags in GridSimTags. Originally, there are two tags with the same integer value.
2004-08-27Replace RPATH_FLAG with LINKER_RPATH_FLAG and COMPILER_RPATH_FLAG,jlam4-12/+12
which are the full option names used to set rpath directives for the linker and the compiler, respectively. In places were we are invoking the linker, use "${LINKER_RPATH_FLAG} <path>", where the space is inserted in case the flag is a word, e.g. -rpath. The default values of *_RPATH_FLAG are set by the compiler/*.mk files, depending on the compiler that you use. They may be overridden on a ${OPSYS}-specific basis by setting _OPSYS_LINKER_RPATH_FLAG and _OPSYS_COMPILER_RPATH_FLAG, respectively. Garbage-collect _OPSYS_RPATH_NAME and _COMPILER_LD_FLAG.
2004-08-05correct library dependency for xep after libtoolization.dmcmahill2-7/+18
2004-07-30Fix up some more bugs introduced by the libtoolization. Hopefully thisdmcmahill5-29/+92
will finally fix all of the bulk build problems seen on -current and 2.0 branch machines (1.6 branch has never had problems).
2004-07-26fix a dependency in the tracer Makefile.aimk to hopefully fix compiledmcmahill2-10/+30
problems noted in NetBSD-2.0 branch bulk builds.
2004-07-26change the order in do-install: a bit to install libtool libraries beforedmcmahill1-18/+19
binaries which link to them.
2004-07-20This package needs CONFIG_GUESS_OVERRIDE and CONFIG_SUB_OVERRIDE inkristerw1-1/+6
order to build on x86_64. Noted by dmcmahill@.
2004-07-19libtoolize and enable the building of shared libs. This is neededdmcmahill12-17/+1295
for packages such as p5-Parallel-Pvm on some archs since that package creates a shared object. Should fix lossage seen on amd64 bulk builds. Both packages which use pvm3 have been tested and still work.
2004-07-18add some patches to get this going on darwin. Patches provided in PRdmcmahill6-2/+76
pkg/26146 by Jim Bernard.
2004-07-10Make build on 2.0.wiz3-5/+19
2004-06-27correctly detect sparcv9, allows this to get further on Solarisgrant1-2/+6
when running a 64-bit kernel.
2004-06-24make this build on -current again (statfs->statvfs)drochner2-1/+54
2004-06-15add some patches for 64 bit systems from Nicolas Jolydmcmahill4-6/+91
2004-06-03Add jdk14 (and in some cases jdk13)abs1-2/+2
2004-05-31Depend on security/openssh instead of security/ssh for machines thatkristerw3-6/+6
do not have /usr/bin/ssh.
2004-05-23Use option "-r" instead of "-e" for the '[' command since this is notheinz1-2/+2
portable to some operating systems (eg UnixWare or IRIX 5).
2004-05-19make sure we use MACHINE_ARCH (uname -p) instead of MACHINE (uname -m) fordmcmahill2-17/+19
setting the SGE arch. Should fix x86_64 (amd64) as well as others that have a different MACHINE and MACHINE_ARCH. Noted on the SGE developers list by Nicolas Joly
2004-05-03add and enable sgedmcmahill1-1/+2
2004-05-03import sge-5.3p6 (Sun Grid Engine)dmcmahill37-0/+1406
The Grid Engine project is an open source community effort to facilitate the adoption of distributed computing solutions. Sponsored by Sun Microsystems and hosted by CollabNet, the Grid Engine project provides enabling distributed resource management software for wide ranging requirements from compute farms to grid computing.
2004-04-24Convert to bl3.wiz1-4/+4
2004-04-24Unused.wiz1-37/+0
2004-04-24Unused.wiz1-27/+0
2004-04-24Convert to bl3.wiz1-3/+3
2004-04-11Convert to buildlink3.snj1-3/+3
2004-03-25Tell the buildlink3 framework to pass the pvm3/* directories to the compilerjlam1-1/+6
and linker since they lie outside the default of ${PREFIX}/include and ${PREFIX}/lib.
2004-03-12add config files for missing NetBSD MACHINE_ARCH's such as sh5e{b,l},dmcmahill16-17/+307
x86_64, and a few others.
2004-03-08Enable tk84 and replace x11/tk with x11/tk83. Packages compatibleminskim2-4/+4
with 8.4 will be updated to depend on x11/tk after Tk update.
2004-03-05Reorder location and setting of BUILDLINK_PACKAGES to match templatejlam2-17/+13
buildlink3.mk file in revision 1.101 of bsd.buildlink3.mk.
2004-02-26Update dqs to 3.3.2nb1abs3-5/+45
Install documentation undef DEFAULT_HOST so it can run on a box other than lnx4.scri.fsu.edu Add a MESSAGE giving some hint on what you might to use this Consider this a drive-by-slight-cleanup-of-breakage
2004-02-25bl3ify. add bl3 file.dmcmahill2-2/+24
2004-02-18Include "../../mk/compiler.mk" to get the value of CC_VERSION beforejlam1-1/+3
testing it.
2004-02-14LIBTOOL_OVERRIDE and SHLIBTOOL_OVERRIDE are now lists of shell globsjlam1-2/+1
relative to ${WRKSRC}. Remove redundant LIBTOOL_OVERRIDE settings that are automatically handled by the default setting in bsd.pkg.mk.
2004-02-13s/abilty/ability/snj1-1/+1
2004-02-12add buildlink{2,3}.mkrecht2-0/+55
needed for py-Scientific to build