~ubuntu-branches/ubuntu/trusty/postgis/trusty-updates

« back to all changes in this revision

Viewing changes to doc/Makefile.comments

  • Committer: Bazaar Package Importer
  • Author(s): Alan Boudreault
  • Date: 2010-09-29 09:16:10 UTC
  • mfrom: (1.1.12 upstream)
  • Revision ID: james.westby@ubuntu.com-20100929091610-vj4efw8woq34hdn7
Tags: 1.5.2-1
* New upstream release, with a few bug fixes.
* Added shp2pgsql-gui binary.
* Removed patches, applied upstream: getopt.    

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# **********************************************************************
 
2
# * $Id$
 
3
# *
 
4
# * PostGIS - Spatial Types for PostgreSQL
 
5
# * http://postgis.refractions.net
 
6
# * Copyright 2010 Mark Cave-Ayland
 
7
# *
 
8
# * This is free software; you can redistribute and/or modify it under
 
9
# * the terms of the GNU General Public Licence. See the COPYING file.
 
10
# *
 
11
# **********************************************************************
 
12
 
 
13
# Separate PGXS-enabled Makefile for documentation installation (it is
 
14
# not possible to merge into the main Makefile as has been done for
 
15
# the shapefile loader)
 
16
 
 
17
MODULE_doc=postgis-1.5
 
18
MODULEDIR=contrib/$(MODULE_doc)
 
19
 
 
20
# Files to be copied to the contrib/ directory
 
21
DATA_built=postgis_comments.sql
 
22
 
 
23
# PGXS information
 
24
PG_CONFIG = /usr/local/pgsql/8.3/bin/pg_config 
 
25
PGXS := /usr/local/pgsql/8.3/lib/pgxs/src/makefiles/pgxs.mk
 
26
include $(PGXS)
 
27
 
 
28
# PGXS override feature. The ability to allow PostGIS to install itself
 
29
# in a versioned directory is only available in PostgreSQL >= 8.5. To
 
30
# do this by default on older PostgreSQL versions, we need to override
 
31
# the existing PGXS targets.
 
32
#
 
33
# Once PostgreSQL 8.5 becomes the minimum supported version, this entire
 
34
# section and its associated Makefile.pgxs should be removed.
 
35
PGXSOVERRIDE = 1
 
36
ifeq ($(PGXSOVERRIDE),1)
 
37
        include ../postgis/Makefile.pgxs
 
38
endif
 
39