1 | # $Id$ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | |
---|
5 | name grass |
---|
6 | version 6.3.0 |
---|
7 | maintainers nomaintainer |
---|
8 | categories gis |
---|
9 | platforms darwin |
---|
10 | |
---|
11 | description GRASS |
---|
12 | long_description GRASS is a Geographic Information System (GIS) used for \ |
---|
13 | geospatial data management and analysis. |
---|
14 | |
---|
15 | homepage http://grass.osgeo.org |
---|
16 | master_sites http://grass.osgeo.org/grass63/source/ |
---|
17 | |
---|
18 | checksums md5 7dce50a076e2481733148ba34cbebc07 |
---|
19 | |
---|
20 | depends_lib port:fftw \ |
---|
21 | port:freetype \ |
---|
22 | port:geos \ |
---|
23 | port:jpeg \ |
---|
24 | port:libpng \ |
---|
25 | port:openmotif \ |
---|
26 | port:proj \ |
---|
27 | port:gdal |
---|
28 | |
---|
29 | use_parallel_build yes |
---|
30 | |
---|
31 | # Can be removed once MacPorts 1.7 is released |
---|
32 | if {![info exists applications_dir]} { |
---|
33 | set applications_dir /Applications/MacPorts |
---|
34 | } |
---|
35 | |
---|
36 | patchfiles patch-Makefile.diff patch-configure.diff \ |
---|
37 | patch-macosx_Makefile.diff |
---|
38 | post-patch { |
---|
39 | reinplace "s|@@APPLICATIONS_DIR@@|${applications_dir}|" \ |
---|
40 | ${worksrcpath}/configure |
---|
41 | } |
---|
42 | |
---|
43 | configure.ldflags -framework OpenGL |
---|
44 | configure.args \ |
---|
45 | --prefix=${prefix} \ |
---|
46 | --with-gdal=${prefix}/bin/gdal-config \ |
---|
47 | --without-postgres \ |
---|
48 | --with-proj-includes=${prefix}/include \ |
---|
49 | --with-proj-libs=${prefix}/lib \ |
---|
50 | --with-proj-share=${prefix}/share/proj \ |
---|
51 | --with-jpeg-includes=${prefix}/include \ |
---|
52 | --with-jpeg-libs=${prefix}/lib \ |
---|
53 | --with-png-includes=${prefix}/include \ |
---|
54 | --with-png-libs=${prefix}/lib \ |
---|
55 | --with-fftw-includes=${prefix}/include \ |
---|
56 | --with-fftw-libs=${prefix}/lib \ |
---|
57 | --with-freetype \ |
---|
58 | --with-freetype-includes=${prefix}/include/freetype2 \ |
---|
59 | --with-freetype-libs=${prefix}/lib \ |
---|
60 | --with-tcltk-includes=${prefix}/include \ |
---|
61 | --with-tcltk-libs=${prefix}/lib \ |
---|
62 | --with-motif \ |
---|
63 | --with-motif-includes=${prefix}/include \ |
---|
64 | --with-motif-libs=${prefix}/lib \ |
---|
65 | --with-cxx \ |
---|
66 | --with-x \ |
---|
67 | --enable-largefile |
---|
68 | # --enable-macosx-app |
---|
69 | |
---|
70 | #--with-glw \ |
---|
71 | #--with-glw-includes=/Developer/SDKs/MacOSX10.5.sdk/usr/X11/include \ |
---|
72 | #--with-glw-libs=/Developer/SDKs/MacOSX10.5.sdk/usr/X11/lib |
---|
73 | #-Wl,-dylib_file,/Developer/SDKs/MacOSX10.5.sdk/usr/X11/lib/libGLw.dylib:\ |
---|
74 | # /Developer/SDKs/MacOSX10.5.sdk/usr/X11/lib/libGLw.dylib |
---|
75 | |
---|
76 | platform darwin 9 { |
---|
77 | configure.ldflags-append \ |
---|
78 | -Wl,-dylib_file,/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib:\ |
---|
79 | /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib |
---|
80 | } |
---|
81 | build.target default |
---|
82 | |
---|
83 | # Can be removed once MacPorts 1.7.0 is released |
---|
84 | if {![info exists applications_dir]} { |
---|
85 | set applications_dir /Applications/MacPorts |
---|
86 | } |
---|
87 | |
---|
88 | # installs into /opt/local/grass-6.3.0 |
---|
89 | #destroot.violate_mtree yes |
---|
90 | |
---|
91 | variant mysql5 description "Install grass with mysql 5 support" { |
---|
92 | depends_lib-append port:mysql5 |
---|
93 | configure.args-append --with-mysql |
---|
94 | configure.args-append --with-mysql-includes=${prefix}/include/mysql5/mysql |
---|
95 | configure.args-append --with-mysql-libs=${prefix}/lib/mysql5/mysql |
---|
96 | configure.env-append MYSQLD_CONFIG=${prefix}/lib/mysql5/bin/mysql_config |
---|
97 | } |
---|
98 | |
---|
99 | variant postgresql83 description "Install grass with postgresql 8.3 support" { |
---|
100 | depends_lib-append port:postgresql83 |
---|
101 | configure.args-delete --without-postgres |
---|
102 | configure.args-append --with-postgres |
---|
103 | configure.args-append --with-postgres-includes=${prefix}/include/postgresql83 |
---|
104 | configure.args-append --with-postgres-libs=${prefix}/lib/postgresql83 |
---|
105 | } |
---|
106 | |
---|
107 | variant sqlite3 description "Install grass with sqlite 3 support" { |
---|
108 | depends_lib-append port:sqlite3 |
---|
109 | configure.args-append --with-sqlite |
---|
110 | configure.args-append --with-sqlite-includes=${prefix}/include |
---|
111 | configure.args-append --with-sqlite-libs=${prefix}/lib |
---|
112 | } |
---|
113 | |
---|