NOTICE: This package has been removed from pkgsrc

./wip/grass, Open source geographical information system (GIS)

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ]


Branch: CURRENT, Version: 6.4.0RC5nb10, Package name: grass-6.4.0RC5nb10, Maintainer: brook

Geographic Resources Analysis Support System, commonly referred to as
GRASS, is a Geographic Information System (GIS) used for data
management, image processing, graphics production, spatial modelling,
and visualization of many types of data. GRASS contains over 350
programs and tools to

- render maps and images on monitors and paper,
- manipulate raster, vector, and sites data,
- process multi spectral image data, and
- create, manage, and store spatial data.

GRASS uses both an intuitive windows interface as well as command line
syntax for ease of operations. GRASS is ideal for use in engineering
and land planning applications.


Required to run:
[graphics/gd] [graphics/glut] [graphics/MesaLib] [graphics/tiff] [graphics/freetype2] [graphics/png] [graphics/cairo] [graphics/glu] [databases/iodbc] [lang/g95] [lang/tcl] [math/lapack] [math/fftw2] [math/blas] [devel/readline] [geography/gdal-lib] [x11/tk] [geography/proj] [x11/motif] [databases/postgresql95-client] [lang/python37]

Required to build:
[pkgtools/x11-links] [devel/swig] [x11/xbitmaps] [x11/xcb-proto] [pkgtools/cwrappers] [x11/xorgproto]

Package options: fftw, freetype, gmath, iodbc, motif, opengl, pgsql, python, sqlite

Master sites:

RMD160: 3fa11d2672a4717a7f348cec3810bcbe51700202
Filesize: 20593.354 KB

Version history: (Expand)


CVS history: (Expand)


   2015-03-14 19:42:48 by Greg Troxel | Files touched by this commit (8)
Log message:
revbump from proj

   2014-08-12 01:10:12 by Thomas Klausner | Files touched by this commit (30)
Log message:
Switch from ffmpeg to ffmpeg1.

Note: many of these didn't build, so I couldn't verify them.
   2014-05-09 09:38:42 by Thomas Klausner | Files touched by this commit (229)
Log message:
Mark packages that are not ready for python-3.3 also not ready for 3.4,
until proven otherwise.
   2014-01-26 16:49:50 by Thomas Klausner | Files touched by this commit (121)
Log message:
Mark packages as not python-3.x ready where appropriate.
   2014-01-25 11:38:08 by Thomas Klausner | Files touched by this commit (171) | Package updated
Log message:
Mark packages as not ready for python-3.x where applicable;
either because they themselves are not ready or because a
dependency isn't. This is annotated by
PYTHON_VERSIONS_INCOMPATIBLE=  33 # not yet ported as of x.y.z
or
PYTHON_VERSIONS_INCOMPATIBLE=  33 # py-foo, py-bar
respectively, please use the same style for other packages,
and check during updates.

Use versioned_dependencies.mk where applicable.
Use REPLACE_PYTHON instead of handcoded alternatives, where applicable.
Reorder Makefile sections into standard order, where applicable.

Remove PYTHON_VERSIONS_INCLUDE_3X lines since that will be default
with the next commit.

Whitespace cleanups and other nits corrected, where necessary.
   2012-12-07 21:51:51 by Krister Walfridsson | Files touched by this commit (1)
Log message:
Add pkg-config to USE_TOOLS.
   2012-09-29 02:50:33 by Aleksej Saushev | Files touched by this commit (158)
Log message:
Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.
Mark packages that don't or might probably not have staged installation.
   2010-12-26 06:01:21 by David Sainty | Files touched by this commit (78)
Log message:
Mechanically replace references to graphics/jpeg with the suitable
alternative from mk/jpeg.buildlink3.mk

This allows selection of an alternative jpeg library (namely the x86 MMX,
SSE, SSE2 accelerated libjpeg-turbo) via JPEG_DEFAULT=libjpeg-turbo, and
follows the current standard model for alternatives (fam, motif, fuse etc).

The mechanical edits were applied via the following script:

#!/bin/sh
for d in *; do
  [ -d "$d" ] || continue
  for i in "$d/"Makefile* "$d/"*.mk; do
    case "$i" in *.orig|*"*"*) continue;; esac
    out="$d/x"
    sed -e 's;graphics/jpeg/buildlink3\.mk;mk/jpeg.buildlink3.mk;g' \
        -e 's;BUILDLINK_PREFIX\.jpeg;JPEGBASE;g' \
        < "$i" > "$out"
    if cmp -s "$i" "$out"; then
      rm -f "$out"
    else
      echo "Edited $i"
      mv -f "$i" "$i.orig" && mv "$out" \ 
"$i"
    fi
  done
done