Merge pull request #6498 from Rmys/master

ogdi
This commit is contained in:
Rmys
2019-02-07 01:13:37 +03:00
committed by GitHub
+22 -73
View File
@@ -4,87 +4,36 @@
# Licensed under the GNU General Public License, version 3. # Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt # See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import get
from pisi.actionsapi import autotools from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools from pisi.actionsapi import shelltools
from pisi.actionsapi import perlmodules from pisi.actionsapi import pisitools
from pisi.actionsapi import get
WorkDir = "ogdi-ogdi_3_2_1"
shelltools.export("TOPDIR", "%s/%s" % (get.workDIR(), WorkDir))
def setup(): def setup():
# autotools.autoreconf("-vfi") autotools.configure('--with-zlib \
# autotools.aclocal() --with-projlib="-L/usr/lib -lproj" \
pisitools.cflags.add("-fno-strict-aliasing")
autotools.configure("--disable-static \
--enable-shared \
--datadir=/usr/share/gdal \
--with-ogdi \
--with-threads \
--with-jasper \
--with-odbc=/usr/lib/unixODBC \
--with-expat \ --with-expat \
--with-cfitsio \ --with-binconfigs')
--with-hdf5 \
--with-netcdf \
--with-png \
--with-geos \
--without-mysql \
--with-curl \
--with-perl \
--with-jpeg \
--with-jpeg12=no \
--with-libtiff \
--with-sqlite3 \
--with-geotiff=external \
--with-podofo \
--with-spatialite \
--with-ogr \
--with-grib \
--with-curl \
--with-webp \
--with-python \
--without-poppler \
--with-xerces \
--with-openjpeg \
--without-libtool \
--without-hdf4 \
--without-fme \
--without-pcraster \
--without-kakadu \
--without-mrsid \
--without-jp2mrsid \
--without-msg \
--without-bsb \
--without-dods-root \
--without-oci \
--without-ingres \
--without-spatialite \
--without-dwgdirect \
--without-epsilon \
--without-idb \
--without-sde \
--mandir=/usr/share/man \
--without-ruby")
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
#for bug 13646
#pisitools.dosed("GDALmake.opt", "PY_HAVE_SETUPTOOLS=1 ", "PY_HAVE_SETUPTOOLS= ")
#pisitools.dosed("apps/GNUmakefile", "EXE_DEP_LIBS ", "KILL_EXE_DEP_LIBS ")
def build(): def build():
autotools.make() shelltools.export("TARGET", "Linux")
shelltools.export("CFG", "release")
autotools.make("-j1")
def install(): def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR()) pisitools.dolib_so("bin/Linux/*.so")
#remove egg pisitools.dosym("/usr/lib/libogdi.so", "/usr/lib/libogdi.so.3")
# pisitools.removeDir("/usr/lib/python2.7/site-packages/GDAL-*")
#pisitools.domove("/usr/man/man3/*", "/usr/share/man/man3") for i in ["gltpd", "ogdi_import", "ogdi_info"]:
#pisitools.removeDir("/usr/man/") pisitools.dobin("bin/Linux/%s" % i)
#pisitools.domove("/usr/etc/bash_completion.d/*", "/etc/bash_completion.d") pisitools.dobin("ogdi-config")
#pisitools.removeDir("/usr/etc")
perlmodules.removePodfiles() pisitools.insinto("/usr/lib/pkgconfig", "ogdi.pc")
pisitools.insinto("/usr/include", "ogdi/include/*.h")
pisitools.dodoc("ChangeLog", "NEWS", "README")