1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
|
#!/usr/bin/env python
#******************************************************************************
# $Id: setup.py,v 1.6 2004/09/24 23:06:42 fwarmerdam Exp $
#
# Name: setup.py
# Project: GDAL
# Purpose: Installation / Install script.
# Author: Evgeniy Cherkashin <eugeneai@icc.ru>
#
#******************************************************************************
# Copyright (c) 2003, Evgeniy Cherkashin <eugeneai@icc.ru>
#
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the "Software"),
# to deal in the Software without restriction, including without limitation
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
# and/or sell copies of the Software, and to permit persons to whom the
# Software is furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included
# in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
# DEALINGS IN THE SOFTWARE.
#******************************************************************************
#
# $Log: setup.py,v $
# Revision 1.6 2004/09/24 23:06:42 fwarmerdam
# various patches from Alessandro
#
# Revision 1.5 2004/04/25 19:28:45 aamici
# core -> gcore update
#
# Revision 1.4 2004/01/31 10:14:08 aamici
# fix all stale references after the libtool transition.
# don't install non-python data files.
#
# Revision 1.3 2003/02/07 14:14:00 warmerda
# fixed spelling of python
#
# Revision 1.2 2003/02/07 14:11:03 warmerda
# corrected a few info items, added header
#
import string
from distutils.core import setup, Extension
import os, os.path, glob
#
# debug
#
#import sys
#sys.argv.append("build")
f=open(os.path.join("VERSION"))
v=f.read()
f.close()
del f
version=v.strip()
dllversion=version.replace(".","")
soversion=v[:3]
SOURCES=glob.glob(os.path.join("pymod","*.c*"))
print SOURCES
INCLUDE_DIRS=[os.path.join("gcore"), os.path.join("port"), os.path.join("ogr"), os.path.join("pymod"), os.path.join("alg")] # only necessary
LIBRARY_DIRS = ["./.libs"]
INCLUDE_FILES = [
glob.glob(os.path.join("gcore", "*.h")),
glob.glob(os.path.join("port", "*.h")),
glob.glob(os.path.join("alg", "*.h")),
glob.glob(os.path.join("ogr", "*.h")),
glob.glob(os.path.join("ogr", "ogrsf_frmts", "*.h")),
glob.glob(os.path.join("pymod", "*.h"))
]
IF=[]
for i in INCLUDE_FILES:
IF.extend(i)
INCLUDE_FILES=IF
del IF
HTML_FILES=glob.glob(os.path.join("html", "*"))
#HTML_FILES.remove(os.path.join("html", ".cvsignore"))
#print INCLUDE_FILES
if os.name=="nt":
DLL="gdal%s.dll" % dllversion
DATA_FILES=[
("", [DLL]),
# ("libs", [os.path.join("gdal_i.lib"), os.path.join("pymod","_gdal.lib")]),
("libs", [os.path.join("gdal_i.lib")]),
]
LIBRARIES = ["gdal_i"]
EXTRA_LINK_ARGS=[]
else:
if os.name=="mac":
soext = "dylib"
else:
soext = "so"
DATA_FILES=[
("lib", ['libgdal.%s.%s' % (soversion, soext)]),
]
LIBRARIES = []
#EXTRA_LINK_ARGS=[os.path.join("gdal.a")]
LIBRARIES = ["gdal"]
EXTRA_LINK_ARGS=[]
DATA_FILES.append(("include", INCLUDE_FILES))
DATA_FILES.append((os.path.join("doc","gdal"), HTML_FILES))
setup (name = "Python_GDAL",
version = version,
description = "Geospatial Data Abstraction Library: Python Bindings",
author = "Frank Warmerdam",
#packager = "Evgeniy Cherkashin",
author_email = "warmerdam@pobox.com",
#packager_email = "eugeneai@icc.ru",
url = "http://www.remotesensing.org/gdal/",
packages = [''],
package_dir = {'': 'pymod'},
#extra_path = "gdal",
ext_modules = [Extension('_gdalmodule',
sources = SOURCES,
include_dirs = INCLUDE_DIRS,
libraries = LIBRARIES,
library_dirs = LIBRARY_DIRS,
extra_link_args=EXTRA_LINK_ARGS,
),
],
#data_files = DATA_FILES
)
|