The FreeBSD Ports Archive

Freebsd | Contact
Welcome to FreeBSD Software


FreeBSD math : libgmp4

A free library for arbitrary precision arithmetic

 GMP is a free library for arbitrary precision arithmetic, operating
on signed integers, rational numbers, and floating point numbers.
There is no limit to the precision except the ones implied by the
available memory in the machine GMP runs on. GMP has a rich set of
functions, and the functions have a regular interface. 

GMP is designed to be as fast as possible, both for small operands
and for huge operands. The speed is achieved by using fullwords as
the basic arithmetic type, by using fast algorithms, with carefully
optimized assembly code for the most common inner loops for a lot of
CPUs, and by a general emphasis on speed (instead of simplicity or
elegance). 

GMP is believed to be faster than any other similar library. The
advantage for GMP increases with the operand sizes for certain
operations, since GMP in many cases has asymptotically faster
algorithms.  

http://www.swox.com/gmp/



libgmp4 history


v. 1.32
date: 2007/09/18 06:07:59;  author: ale;  state: Exp;  lines: +1 -2
Update to 4.2.2 release.
Switch to GPLv3.

v. 1.31 date: 2007/02/07 07:00:22; author: ale; state: Exp; lines: +2 -2 Add two upstream patches. PR: ports/108855 Submitted by: maho
v. 1.30 date: 2007/02/01 02:41:47; author: kris; state: Exp; lines: +1 -0 Use libtool port instead of included version to avoid objformat a.out botch
v. 1.29 date: 2006/05/12 07:45:39; author: ale; state: Exp; lines: +1 -0 Try to fix breakage on 64 bit platforms.
v. 1.28 date: 2006/05/10 14:44:26; author: ale; state: Exp; lines: +1 -1 Update to 4.2.1 release.
v. 1.27 date: 2006/04/04 06:05:02; author: ale; state: Exp; lines: +2 -3 Update to 4.2 release.
v. 1.26 date: 2006/02/23 10:37:54; author: ade; state: Exp; lines: +2 -2 Conversion to a single libtool environment. Approved by: portmgr (kris)
v. 1.25 date: 2005/11/15 06:50:06; author: ade; state: Exp; lines: +1 -1 Mass-conversion to the USE_AUTOTOOLS New World Order. The code present in bsd.autotools.mk essentially makes this a no-op given that all the old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in exactly the same way as USE_AUTOTOOLS itself. Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME team -- all GNOME 2.12.x ports use it. Preliminary documentation can be found at: http://people.FreeBSD.org/~ade/autotools.txt which is in the process of being SGMLized before introduction into the Porters Handbook. Light blue touch-paper. Run.
v. 1.24 date: 2005/08/29 13:57:39; author: ale; state: Exp; lines: +3 -2 Remove mpfr library from libgmp: it'll be included in the mpfr port. PR: ports/84724 Submitted by: Steven G. Kargl
v. 1.23 date: 2005/01/26 09:09:14; author: ale; state: Exp; lines: +2 -8 Update to 4.1.4 release: - use libtool 1.5
v. 1.22 date: 2004/07/10 11:12:28; author: netchild; state: Exp; lines: +0 -1 Remove CONFLICTS, it's not necessary anymore. Submitted by: marius Approved by: maintainer timeout
v. 1.21 date: 2004/07/09 17:42:34; author: marcus; state: Exp; lines: +1 -1 Apply a big libtool patch to allow porters to use the libtool installed by the libtoolX ports instead of the one included with each port. Ports that set USE_LIBTOOL_VER=X will now use the ports version of libtool instead of the included version. To restore previous behavior, use the new macro, USE_INC_LIBTOOL_VER. Both macros accept the same argument: a libtool version. For example, to use the ports version of libtool-1.5, add the following to your Makefile: USE_LIBTOOL_VER= 15 To use the included version of libtool with extra hacks provided by libtool-1.5, add the following to your Makefile: USE_INC_LIBTOOL_VER= 15 With this change, ports that had to add additional libtool hacks to prevent .la files from being installed or to fix certain threading issues can now delete those hacks (after appropriate testing, of course). PR: 63944 Based on work by:eik and marcus Approved by: ade (autotools maintainer) Tested by: kris on pointyhat Bound to be hidden problems: You bet
v. 1.20 date: 2004/06/09 22:49:30; author: ale; state: Exp; lines: +5 -3 Update to 4.1.3 release: o Upwardly binary compatible with 4.1.2, 4.1.1, 4.1, 4.0.1, 4.0, and 3.x versions. o Bug fix to FFT multiplication code. o Bug fix to K6 assembly code for gcd. o Bug fix to IA-64 assembly code for population count. o Portability improvements, most notably functional AMD64 support. o Many minor bug fixes. o Make portlint happy.
v. 1.19 date: 2004/03/14 06:16:56; author: ade; state: Exp; lines: +1 -1 Whoa there, boy, that's a mighty big commit y'all have there... Begin autotools sanitization sequence by requiring ports to explicitly specify which version of {libtool,autoconf,automake} they need, erasing the concept of a "system default". For ports-in-waiting: USE_LIBTOOL=YES -> USE_LIBTOOL_VER=13 USE_AUTOCONF=YES -> USE_AUTOCONF_VER=213 USE_AUTOMAKE=YES -> USE_AUTOMAKE_VER=14 Ports attempting to use the old style system after June 1st 2004 will be sorely disappointed.
v. 1.18 date: 2004/01/18 10:50:12; author: ale; state: Exp; lines: +1 -1 Switch to my @FreeBSD.org email address. Approved by: nork (mentor)
v. 1.17 date: 2004/01/07 00:35:40; author: edwin; state: Exp; lines: +1 -1 Fix build of math/libgmp4 on AMD64 systems On Opteron/AMD64 systems with GCC, count_trailing_zeros in longlong.h may cause errors from the assembler about incorrect registers used with bsfq. Submitted by: edwin@mavetju.org Approved by: Alex Dupre Obtained from: http://www.swox.com/gmp/#STATUS
v. 1.16 date: 2003/07/01 09:45:47; author: netchild; state: Exp; lines: +2 -1 Add CONFLICTS. Submitted by: Marius Strobl Approved by: maintainer
v. 1.15 date: 2003/03/31 01:32:17; author: edwin; state: Exp; lines: +5 -1 [Maintainer Patch] Port: math/libgmp4 (install a single info file) PR: ports/48866 Submitted by: Alex Dupre
v. 1.14 date: 2003/03/02 17:56:58; author: naddy; state: Exp; lines: +5 -5 Enable building of MPFR, a C library for multiple-precision floating-point computations with exact rounding, in GMP. Take maintainership. PR: 48640 Submitted by: Alex Dupre
v. 1.13 date: 2003/02/23 15:27:24; author: dinoex; state: Exp; lines: +1 -1 - drop maintainership
v. 1.12 date: 2003/02/20 18:26:38; author: dinoex; state: Exp; lines: +1 -0 - add COMMENT
v. 1.11 date: 2003/01/02 04:26:52; author: dinoex; state: Exp; lines: +1 -1 - Update to 4.1.2
v. 1.10 date: 2003/01/02 04:25:57; author: dinoex; state: Exp; lines: +1 -2 - Update to 4.1.1
v. 1.9 date: 2002/12/17 20:21:11; author: dinoex; state: Exp; lines: +1 -1 Take maintainership
v. 1.8 date: 2002/11/10 16:47:04; author: lioux; state: Exp; lines: +0 -2 o Rollback PORTCOMMENT modifications while this feature's implementation is better studied o Turn PORTCOMMENT variable in Makefile back into pkg-comment files Approved by: kris (portmgr hat), portmgr, re (silence)
v. 1.7 date: 2002/11/06 22:46:01; author: adamw; state: Exp; lines: +2 -0 Use PORTCOMMENT in the Makefile, and whack the pkg-comment. Approved by: pat
v. 1.6 date: 2002/07/20 18:44:31; author: ijliao; state: Exp; lines: +7 -2 - Do not install .la files - Fix pkg-comment format PR: 40796 Submitted by: Ports Fury
v. 1.5 date: 2002/06/25 06:57:30; author: ijliao; state: Exp; lines: +2 -2 upgrade to 4.1
v. 1.4 date: 2002/06/02 19:13:39; author: ijliao; state: Exp; lines: +3 -6 enable c++ support bump portrevision
v. 1.3 date: 2002/04/15 09:00:07; author: ijliao; state: Exp; lines: +9 -6 upgrade to 4.0.1
v. 1.2 date: 2001/08/31 14:20:26; author: sobomax; state: Exp; lines: +0 -1 USE_LIBTOOL implies GNU_CONFIGURE, so remove the latter where appropriate.
v. 1.1 date: 2001/06/05 05:22:15; author: ade; state: Exp; Add math/libgmp3, version 3.1.1 of the GNU arbitrary precision arithmetic library. PR: 24268 and 24855 Submitted by: ijliao@terry.dragon2.net and kargl@apl.washington.edu ============================================================================= v. 1.32 date: 2007/09/18 06:07:59; author: ale; state: Exp; lines: +1 -2 Update to 4.2.2 release. Switch to GPLv3.
v. 1.31 date: 2007/02/07 07:00:22; author: ale; state: Exp; lines: +2 -2 Add two upstream patches. PR: ports/108855 Submitted by: maho
v. 1.30 date: 2007/02/01 02:41:47; author: kris; state: Exp; lines: +1 -0 Use libtool port instead of included version to avoid objformat a.out botch
v. 1.29 date: 2006/05/12 07:45:39; author: ale; state: Exp; lines: +1 -0 Try to fix breakage on 64 bit platforms.
v. 1.28 date: 2006/05/10 14:44:26; author: ale; state: Exp; lines: +1 -1 Update to 4.2.1 release.
v. 1.27 date: 2006/04/04 06:05:02; author: ale; state: Exp; lines: +2 -3 Update to 4.2 release.
v. 1.26 date: 2006/02/23 10:37:54; author: ade; state: Exp; lines: +2 -2 Conversion to a single libtool environment. Approved by: portmgr (kris)
v. 1.25 date: 2005/11/15 06:50:06; author: ade; state: Exp; lines: +1 -1 Mass-conversion to the USE_AUTOTOOLS New World Order. The code present in bsd.autotools.mk essentially makes this a no-op given that all the old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in exactly the same way as USE_AUTOTOOLS itself. Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME team -- all GNOME 2.12.x ports use it. Preliminary documentation can be found at: http://people.FreeBSD.org/~ade/autotools.txt which is in the process of being SGMLized before introduction into the Porters Handbook. Light blue touch-paper. Run.
v. 1.24 date: 2005/08/29 13:57:39; author: ale; state: Exp; lines: +3 -2 Remove mpfr library from libgmp: it'll be included in the mpfr port. PR: ports/84724 Submitted by: Steven G. Kargl
v. 1.23 date: 2005/01/26 09:09:14; author: ale; state: Exp; lines: +2 -8 Update to 4.1.4 release: - use libtool 1.5
v. 1.22 date: 2004/07/10 11:12:28; author: netchild; state: Exp; lines: +0 -1 Remove CONFLICTS, it's not necessary anymore. Submitted by: marius Approved by: maintainer timeout
v. 1.21 date: 2004/07/09 17:42:34; author: marcus; state: Exp; lines: +1 -1 Apply a big libtool patch to allow porters to use the libtool installed by the libtoolX ports instead of the one included with each port. Ports that set USE_LIBTOOL_VER=X will now use the ports version of libtool instead of the included version. To restore previous behavior, use the new macro, USE_INC_LIBTOOL_VER. Both macros accept the same argument: a libtool version. For example, to use the ports version of libtool-1.5, add the following to your Makefile: USE_LIBTOOL_VER= 15 To use the included version of libtool with extra hacks provided by libtool-1.5, add the following to your Makefile: USE_INC_LIBTOOL_VER= 15 With this change, ports that had to add additional libtool hacks to prevent .la files from being installed or to fix certain threading issues can now delete those hacks (after appropriate testing, of course). PR: 63944 Based on work by:eik and marcus Approved by: ade (autotools maintainer) Tested by: kris on pointyhat Bound to be hidden problems: You bet
v. 1.20 date: 2004/06/09 22:49:30; author: ale; state: Exp; lines: +5 -3 Update to 4.1.3 release: o Upwardly binary compatible with 4.1.2, 4.1.1, 4.1, 4.0.1, 4.0, and 3.x versions. o Bug fix to FFT multiplication code. o Bug fix to K6 assembly code for gcd. o Bug fix to IA-64 assembly code for population count. o Portability improvements, most notably functional AMD64 support. o Many minor bug fixes. o Make portlint happy.
v. 1.19 date: 2004/03/14 06:16:56; author: ade; state: Exp; lines: +1 -1 Whoa there, boy, that's a mighty big commit y'all have there... Begin autotools sanitization sequence by requiring ports to explicitly specify which version of {libtool,autoconf,automake} they need, erasing the concept of a "system default". For ports-in-waiting: USE_LIBTOOL=YES -> USE_LIBTOOL_VER=13 USE_AUTOCONF=YES -> USE_AUTOCONF_VER=213 USE_AUTOMAKE=YES -> USE_AUTOMAKE_VER=14 Ports attempting to use the old style system after June 1st 2004 will be sorely disappointed.
v. 1.18 date: 2004/01/18 10:50:12; author: ale; state: Exp; lines: +1 -1 Switch to my @FreeBSD.org email address. Approved by: nork (mentor)
v. 1.17 date: 2004/01/07 00:35:40; author: edwin; state: Exp; lines: +1 -1 Fix build of math/libgmp4 on AMD64 systems On Opteron/AMD64 systems with GCC, count_trailing_zeros in longlong.h may cause errors from the assembler about incorrect registers used with bsfq. Submitted by: edwin@mavetju.org Approved by: Alex Dupre Obtained from: http://www.swox.com/gmp/#STATUS
v. 1.16 date: 2003/07/01 09:45:47; author: netchild; state: Exp; lines: +2 -1 Add CONFLICTS. Submitted by: Marius Strobl Approved by: maintainer
v. 1.15 date: 2003/03/31 01:32:17; author: edwin; state: Exp; lines: +5 -1 [Maintainer Patch] Port: math/libgmp4 (install a single info file) PR: ports/48866 Submitted by: Alex Dupre
v. 1.14 date: 2003/03/02 17:56:58; author: naddy; state: Exp; lines: +5 -5 Enable building of MPFR, a C library for multiple-precision floating-point computations with exact rounding, in GMP. Take maintainership. PR: 48640 Submitted by: Alex Dupre
v. 1.13 date: 2003/02/23 15:27:24; author: dinoex; state: Exp; lines: +1 -1 - drop maintainership
v. 1.12 date: 2003/02/20 18:26:38; author: dinoex; state: Exp; lines: +1 -0 - add COMMENT
v. 1.11 date: 2003/01/02 04:26:52; author: dinoex; state: Exp; lines: +1 -1 - Update to 4.1.2
v. 1.10 date: 2003/01/02 04:25:57; author: dinoex; state: Exp; lines: +1 -2 - Update to 4.1.1
v. 1.9 date: 2002/12/17 20:21:11; author: dinoex; state: Exp; lines: +1 -1 Take maintainership
v. 1.8 date: 2002/11/10 16:47:04; author: lioux; state: Exp; lines: +0 -2 o Rollback PORTCOMMENT modifications while this feature's implementation is better studied o Turn PORTCOMMENT variable in Makefile back into pkg-comment files Approved by: kris (portmgr hat), portmgr, re (silence)
v. 1.7 date: 2002/11/06 22:46:01; author: adamw; state: Exp; lines: +2 -0 Use PORTCOMMENT in the Makefile, and whack the pkg-comment. Approved by: pat
v. 1.6 date: 2002/07/20 18:44:31; author: ijliao; state: Exp; lines: +7 -2 - Do not install .la files - Fix pkg-comment format PR: 40796 Submitted by: Ports Fury
v. 1.5 date: 2002/06/25 06:57:30; author: ijliao; state: Exp; lines: +2 -2 upgrade to 4.1
v. 1.4 date: 2002/06/02 19:13:39; author: ijliao; state: Exp; lines: +3 -6 enable c++ support bump portrevision
v. 1.3 date: 2002/04/15 09:00:07; author: ijliao; state: Exp; lines: +9 -6 upgrade to 4.0.1
v. 1.2 date: 2001/08/31 14:20:26; author: sobomax; state: Exp; lines: +0 -1 USE_LIBTOOL implies GNU_CONFIGURE, so remove the latter where appropriate.
v. 1.1 date: 2001/06/05 05:22:15; author: ade; state: Exp; Add math/libgmp3, version 3.1.1 of the GNU arbitrary precision arithmetic library. PR: 24268 and 24855 Submitted by: ijliao@terry.dragon2.net and kargl@apl.washington.edu ============================================================================= v. 1.32 date: 2007/09/18 06:07:59; author: ale; state: Exp; lines: +1 -2 Update to 4.2.2 release. Switch to GPLv3.
v. 1.31 date: 2007/02/07 07:00:22; author: ale; state: Exp; lines: +2 -2 Add two upstream patches. PR: ports/108855 Submitted by: maho
v. 1.30 date: 2007/02/01 02:41:47; author: kris; state: Exp; lines: +1 -0 Use libtool port instead of included version to avoid objformat a.out botch
v. 1.29 date: 2006/05/12 07:45:39; author: ale; state: Exp; lines: +1 -0 Try to fix breakage on 64 bit platforms.
v. 1.28 date: 2006/05/10 14:44:26; author: ale; state: Exp; lines: +1 -1 Update to 4.2.1 release.
v. 1.27 date: 2006/04/04 06:05:02; author: ale; state: Exp; lines: +2 -3 Update to 4.2 release.
v. 1.26 date: 2006/02/23 10:37:54; author: ade; state: Exp; lines: +2 -2 Conversion to a single libtool environment. Approved by: portmgr (kris)
v. 1.25 date: 2005/11/15 06:50:06; author: ade; state: Exp; lines: +1 -1 Mass-conversion to the USE_AUTOTOOLS New World Order. The code present in bsd.autotools.mk essentially makes this a no-op given that all the old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in exactly the same way as USE_AUTOTOOLS itself. Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME team -- all GNOME 2.12.x ports use it. Preliminary documentation can be found at: http://people.FreeBSD.org/~ade/autotools.txt which is in the process of being SGMLized before introduction into the Porters Handbook. Light blue touch-paper. Run.
v. 1.24 date: 2005/08/29 13:57:39; author: ale; state: Exp; lines: +3 -2 Remove mpfr library from libgmp: it'll be included in the mpfr port. PR: ports/84724 Submitted by: Steven G. Kargl
v. 1.23 date: 2005/01/26 09:09:14; author: ale; state: Exp; lines: +2 -8 Update to 4.1.4 release: - use libtool 1.5
v. 1.22 date: 2004/07/10 11:12:28; author: netchild; state: Exp; lines: +0 -1 Remove CONFLICTS, it's not necessary anymore. Submitted by: marius Approved by: maintainer timeout
v. 1.21 date: 2004/07/09 17:42:34; author: marcus; state: Exp; lines: +1 -1 Apply a big libtool patch to allow porters to use the libtool installed by the libtoolX ports instead of the one included with each port. Ports that set USE_LIBTOOL_VER=X will now use the ports version of libtool instead of the included version. To restore previous behavior, use the new macro, USE_INC_LIBTOOL_VER. Both macros accept the same argument: a libtool version. For example, to use the ports version of libtool-1.5, add the following to your Makefile: USE_LIBTOOL_VER= 15 To use the included version of libtool with extra hacks provided by libtool-1.5, add the following to your Makefile: USE_INC_LIBTOOL_VER= 15 With this change, ports that had to add additional libtool hacks to prevent .la files from being installed or to fix certain threading issues can now delete those hacks (after appropriate testing, of course). PR: 63944 Based on work by:eik and marcus Approved by: ade (autotools maintainer) Tested by: kris on pointyhat Bound to be hidden problems: You bet
v. 1.20 date: 2004/06/09 22:49:30; author: ale; state: Exp; lines: +5 -3 Update to 4.1.3 release: o Upwardly binary compatible with 4.1.2, 4.1.1, 4.1, 4.0.1, 4.0, and 3.x versions. o Bug fix to FFT multiplication code. o Bug fix to K6 assembly code for gcd. o Bug fix to IA-64 assembly code for population count. o Portability improvements, most notably functional AMD64 support. o Many minor bug fixes. o Make portlint happy.
v. 1.19 date: 2004/03/14 06:16:56; author: ade; state: Exp; lines: +1 -1 Whoa there, boy, that's a mighty big commit y'all have there... Begin autotools sanitization sequence by requiring ports to explicitly specify which version of {libtool,autoconf,automake} they need, erasing the concept of a "system default". For ports-in-waiting: USE_LIBTOOL=YES -> USE_LIBTOOL_VER=13 USE_AUTOCONF=YES -> USE_AUTOCONF_VER=213 USE_AUTOMAKE=YES -> USE_AUTOMAKE_VER=14 Ports attempting to use the old style system after June 1st 2004 will be sorely disappointed.
v. 1.18 date: 2004/01/18 10:50:12; author: ale; state: Exp; lines: +1 -1 Switch to my @FreeBSD.org email address. Approved by: nork (mentor)
v. 1.17 date: 2004/01/07 00:35:40; author: edwin; state: Exp; lines: +1 -1 Fix build of math/libgmp4 on AMD64 systems On Opteron/AMD64 systems with GCC, count_trailing_zeros in longlong.h may cause errors from the assembler about incorrect registers used with bsfq. Submitted by: edwin@mavetju.org Approved by: Alex Dupre Obtained from: http://www.swox.com/gmp/#STATUS
v. 1.16 date: 2003/07/01 09:45:47; author: netchild; state: Exp; lines: +2 -1 Add CONFLICTS. Submitted by: Marius Strobl Approved by: maintainer
v. 1.15 date: 2003/03/31 01:32:17; author: edwin; state: Exp; lines: +5 -1 [Maintainer Patch] Port: math/libgmp4 (install a single info file) PR: ports/48866 Submitted by: Alex Dupre
v. 1.14 date: 2003/03/02 17:56:58; author: naddy; state: Exp; lines: +5 -5 Enable building of MPFR, a C library for multiple-precision floating-point computations with exact rounding, in GMP. Take maintainership. PR: 48640 Submitted by: Alex Dupre
v. 1.13 date: 2003/02/23 15:27:24; author: dinoex; state: Exp; lines: +1 -1 - drop maintainership
v. 1.12 date: 2003/02/20 18:26:38; author: dinoex; state: Exp; lines: +1 -0 - add COMMENT
v. 1.11 date: 2003/01/02 04:26:52; author: dinoex; state: Exp; lines: +1 -1 - Update to 4.1.2
v. 1.10 date: 2003/01/02 04:25:57; author: dinoex; state: Exp; lines: +1 -2 - Update to 4.1.1
v. 1.9 date: 2002/12/17 20:21:11; author: dinoex; state: Exp; lines: +1 -1 Take maintainership
v. 1.8 date: 2002/11/10 16:47:04; author: lioux; state: Exp; lines: +0 -2 o Rollback PORTCOMMENT modifications while this feature's implementation is better studied o Turn PORTCOMMENT variable in Makefile back into pkg-comment files Approved by: kris (portmgr hat), portmgr, re (silence)
v. 1.7 date: 2002/11/06 22:46:01; author: adamw; state: Exp; lines: +2 -0 Use PORTCOMMENT in the Makefile, and whack the pkg-comment. Approved by: pat
v. 1.6 date: 2002/07/20 18:44:31; author: ijliao; state: Exp; lines: +7 -2 - Do not install .la files - Fix pkg-comment format PR: 40796 Submitted by: Ports Fury
v. 1.5 date: 2002/06/25 06:57:30; author: ijliao; state: Exp; lines: +2 -2 upgrade to 4.1
v. 1.4 date: 2002/06/02 19:13:39; author: ijliao; state: Exp; lines: +3 -6 enable c++ support bump portrevision
v. 1.3 date: 2002/04/15 09:00:07; author: ijliao; state: Exp; lines: +9 -6 upgrade to 4.0.1
v. 1.2 date: 2001/08/31 14:20:26; author: sobomax; state: Exp; lines: +0 -1 USE_LIBTOOL implies GNU_CONFIGURE, so remove the latter where appropriate.
v. 1.1 date: 2001/06/05 05:22:15; author: ade; state: Exp; Add math/libgmp3, version 3.1.1 of the GNU arbitrary precision arithmetic library. PR: 24268 and 24855 Submitted by: ijliao@terry.dragon2.net and kargl@apl.washington.edu =============================================================================



Main menu

FreeBSD

Program categories

Freebsd accessibility
Freebsd archivers
Freebsd astro
Freebsd audio
Freebsd benchmarks
Freebsd biology
Freebsd cad
Freebsd chinese
Freebsd comms
Freebsd converters
Freebsd databases
Freebsd deskutils
Freebsd devel
Freebsd dns
Freebsd editors
Freebsd emulators
Freebsd finance
Freebsd french
Freebsd ftp
Freebsd games
Freebsd german
Freebsd graphics
Freebsd hebrew
Freebsd hungarian
Freebsd irc
Freebsd japanese
Freebsd java
Freebsd korean
Freebsd lang
Freebsd mail
Freebsd math
Freebsd mbone
Freebsd misc
Freebsd multimedia
Freebsd net
Freebsd net-im
Freebsd net-mgmt
Freebsd net-p2p
Freebsd news
Freebsd palm
Freebsd polish
Freebsd ports-mgmt
Freebsd portuguese
Freebsd print
Freebsd russian
Freebsd science
Freebsd security
Freebsd shells
Freebsd sysutils
Freebsd textproc
Freebsd ukrainian
Freebsd vietnamese
Freebsd www
Freebsd x11
Freebsd x11-clocks
Freebsd x11-drivers
Freebsd x11-fm
Freebsd x11-fonts
Freebsd x11-servers
Freebsd x11-themes
Freebsd x11-toolkits
Freebsd x11-wm