./wip/grass, Geographic Information System

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ] [ Add to tracker ]


Branch: CURRENT, Version: 8.4.0, Package name: grass-8.4.0, Maintainer: ktnb

GRASS GIS is a Geographic Information System used for geospatial
data management and analysis, image processing, graphics/map
production, spatial modeling, and visualization.


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]

Master sites:

Filesize: 68257.646 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