Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Ismael Luceno (31a615d943789817bcbd9e1ff0e309b7171230fe)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Ismael Luceno <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Ismael Luceno (31a615d943789817bcbd9e1ff0e309b7171230fe)
  • Date: Thu, 28 Oct 2010 09:50:53 -0500

GIT changes to master grimoire by Ismael Luceno <ismael AT sourcemage.org>:

ChangeLog | 3 ++
http/mapserver/DEPENDS | 29 +++++++++++++++++++++++++++
http/mapserver/DETAILS | 52
+++++++++++++++++++++++++++++++++++++++++++++++++
http/mapserver/HISTORY | 3 ++
http/mapserver/INSTALL | 3 ++
5 files changed, 90 insertions(+)

New commits:
commit 31a615d943789817bcbd9e1ff0e309b7171230fe
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

mapserver: New spell, Geographic data rendering engine

diff --git a/ChangeLog b/ChangeLog
index e670f14..ac1f861 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+2010-10-28 Ismael Luceno <ismael AT sourcemage.org>
+ * http/mapserver: New spell, Geographic data rendering engine
+
2010-10-27 Treeve Jelbert <treeve AT sourcemage.org>
* python-pypi/jinja2: new spell, template engine written in pure
Python
* python-pypi/xlrd: new spell, read MS Excel files
diff --git a/http/mapserver/DEPENDS b/http/mapserver/DEPENDS
new file mode 100755
index 0000000..cea1962
--- /dev/null
+++ b/http/mapserver/DEPENDS
@@ -0,0 +1,29 @@
+depends libpng &&
+depends freetype2 &&
+depends gd &&
+depends zlib &&
+depends curl &&
+#optional_depends libproj \
+# "--with-proj" \
+# "--without-proj" \
+# "projection support" &&
+optional_depends agg \
+ "--with-agg" \
+ "--without-agg" \
+ "enable high quality antialiased output for vector data" &&
+#optional_depends gdal \
+# "--with-gdal" \
+# "--without-gdal" \
+# "provides access to at least 42 different raster formats"
&&
+#optional_depends ogr \
+# "--with-ogr" \
+# "--without-ogr" \
+# "provides access to at least 18 different vector formats"
&&
+optional_depends tiff \
+ "--with-tiff" \
+ "--without-tiff" \
+ "tiff reading support" &&
+optional_depends jpeg \
+ "--with-jpeg" \
+ "--without-jpeg" \
+ "JPEG rendering support"
diff --git a/http/mapserver/DETAILS b/http/mapserver/DETAILS
new file mode 100755
index 0000000..ce976c2
--- /dev/null
+++ b/http/mapserver/DETAILS
@@ -0,0 +1,52 @@
+ SPELL=mapserver
+ VERSION=5.6.5
+ SOURCE="${SPELL}-${VERSION}.tar.gz"
+ SOURCE_URL[0]=http://download.osgeo.org/${SPELL}/${SOURCE}
+
SOURCE_HASH=sha512:bec909571329fe1112fa9f3bc5e60b0134aaa998bf888f3751656e9ef65be23c01121e645cd8f2eae47f399e58709739e14e400b30d16b9d9a7a004c680e5230
+SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-${VERSION}"
+ WEB_SITE="http://www.mapserver.org/";
+ LICENSE[0]=X/MIT
+ ENTERED=20101027
+ SHORT="Geographic data rendering engine"
+cat << EOF
+MapServer is an Open Source geographic data rendering engine written in C.
+
+Beyond browsing GIS data, MapServer allows you create "geographic image
maps",
+that is, maps that can direct users to content. For example, the Minnesota
DNR
+Recreation Compass provides users with more than 10,000 web pages, reports
+and maps via a single application. The same application serves as a "map
+engine" for other portions of the site, providing spatial context where
needed.
+
+MapServer was originally developed by the University of Minnesota (UMN)
+ForNet project in cooperation with NASA, and the Minnesota Department of
+Natural Resources (MNDNR). Later it was hosted by the TerraSIP project, a
+NASA sponsored project between the UMN and a consortium of land management
+interests.
+
+MapServer is now a project of OSGeo, and is maintained by a growing number
+of developers (nearing 20) from around the world. It is supported by a
+diverse group of organizations that fund enhancements and maintenance, and
+administered within OSGeo by the MapServer Project Steering Committee made
+up of developers and other contributors.
+
+ * Advanced cartographic output
+ - Scale dependent feature drawing and application execution. - Feature
+ labeling including label collision mediation. - Fully customizable,
+ template driven output. - TrueType fonts. - Map element automation
+ (scalebar, reference map, and legend). - Thematic mapping using logical
+ or regular expression-based classes.
+ * Support for popular scripting and development environments
+ - PHP, Python, Perl, Ruby, Java, and .NET.
+ * Cross-platform support
+ - Linux, Windows, Mac OS X, Solaris, and more.
+ * Support of numerous Open Geospatial Consortium <OGC (OGC) standards
+ - WMS (client/server), non-transactional WFS (client/server), WMC, WCS,
+ Filter Encoding, SLD, GML, SOS, OM.
+ * A multitude of raster and vector data formats
+ - TIFF/GeoTIFF, EPPL7, and many others via GDAL. - ESRI shapfiles,
+ PostGIS, ESRI ArcSDE, Oracle Spatial, MySQL and many
+ others via OGR.
+ * Map projection support
+ - On-the-fly map projection with 1000s of projections through the Proj.4
+ library.
+EOF
diff --git a/http/mapserver/HISTORY b/http/mapserver/HISTORY
new file mode 100644
index 0000000..6f80fcf
--- /dev/null
+++ b/http/mapserver/HISTORY
@@ -0,0 +1,3 @@
+2010-10-28 Ismael Luceno <ismael AT sourcemage.org>
+ * DEPENDS, DETAILS, INSTALL: spell created
+
diff --git a/http/mapserver/INSTALL b/http/mapserver/INSTALL
new file mode 100755
index 0000000..1e317b5
--- /dev/null
+++ b/http/mapserver/INSTALL
@@ -0,0 +1,3 @@
+default_install &&
+install -m 755 $INSTALL_ROOT/usr/lib/mapserver &&
+install -m 755 mapserver $INSTALL_ROOT/usr/lib/mapserver/



  • [SM-Commit] GIT changes to master grimoire by Ismael Luceno (31a615d943789817bcbd9e1ff0e309b7171230fe), Ismael Luceno, 10/28/2010

Archive powered by MHonArc 2.6.24.

Top of Page