Skip to content

Commit 9b32487

Browse files
author
pramsey
committed
Fix win assembly and update README
git-svn-id: http://svn.opengeo.org/suite/trunk@920 fe66add1-021f-4af3-b75b-ea5154e73f91
1 parent 1538ebd commit 9b32487

File tree

3 files changed

+17
-18
lines changed

3 files changed

+17
-18
lines changed

assembly/README-BIN.txt

+14-15
Original file line numberDiff line numberDiff line change
@@ -23,25 +23,24 @@ platform, for example:
2323
* pgsql-8.4.3-postgis-1.5.1-1-win.zip
2424
* pgsql-8.4.3-postgis-1.5.1-1-osx.zip
2525

26-
Inside the zip file there will be no "containing" root directory, so
27-
for example, the structure of gdal will not be ./gdal/gdal.dll it
28-
will just be ./gdal.dll. Similarly you will not see ./pgsql/bin, but
29-
just ./bin in the pgsql zip files.
26+
Zip File Information
27+
--------------------
3028

31-
PostGIS/PostgreSQL
32-
------------------
29+
PgSQL/PostGIS Windows files come separately and are combined at assembly time.
30+
PgSQL Windows zip file from EDB come with a ./pgsql/ prefix.
31+
PostGIS Windows zip file comes without a prefix.
3332

34-
PostGIS/PostgreSQL binaries will be delivered in a single unified zip file,
35-
with no directory prefix, so expect the following directories in the file:
33+
PgSQL/PostGIS OSX files come in a single zip file.
34+
PgSQL/PostGIS OSX zip file comes without a prefix.
3635

37-
./bin
38-
./lib
39-
./share
40-
./etc
36+
JRE Windows zip file comes with a ./jre/ prefix
37+
JRE Linux zip file comes with a ./jre/ prefix
4138

42-
In OS/X the user applications (pgShapeLoader.app and pgAdminIII.app) will be
43-
stored under the root and contain all their dependencies, so they can be
44-
relocated into /Applications if so desired.
39+
GDAL Windows zip file comes without a prefix.
40+
41+
In OSX, the user applications pgShapeLoader and pgAdmin come in the
42+
root of the zip file and contain all their dependencies and
43+
may be relocated into /Applications if so desired.
4544

4645
In Windows, the user applications shp2pgsql-gui.exe and pgadmin.exe will be in
4746
the ./bin directory alongside their shared dependencies, and should be

assembly/build.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<get src="${data}/postgresql-8.4.3-1-windows-binaries.zip" dest="postgres-win.zip" usetimestamp="yes" />
1919
<unzip src="postgres-win.zip" dest="postgres-win" overwrite="false"/>
2020
<get src="${data}/pgsql-postgis-1.5.1-1.zip" dest="postgis-win.zip" usetimestamp="yes"/>
21-
<unzip src="postgis-win.zip" dest="postgres-win" overwrite="true"/>
21+
<unzip src="postgis-win.zip" dest="postgres-win/pgsql" overwrite="true"/>
2222

2323
<!-- MacOSX PostgreSQL / PostGIS -->
2424
<!-- OSX assembly uses PgSQL/PostGIS precombined during the build process -->

assembly/win.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -96,15 +96,15 @@
9696
</excludes>
9797
</fileSet>
9898
<fileSet>
99-
<directory>assembly/jre-win</directory>
99+
<directory>assembly/jre-win/jre</directory>
100100
<outputDirectory>jre</outputDirectory>
101101
</fileSet>
102102
<fileSet>
103103
<directory>assembly/gdal-win</directory>
104104
<outputDirectory>gdal</outputDirectory>
105105
</fileSet>
106106
<fileSet>
107-
<directory>assembly/postgres-win</directory>
107+
<directory>assembly/postgres-win/pgsql</directory>
108108
<outputDirectory>pgsql</outputDirectory>
109109
</fileSet>
110110
</fileSets>

0 commit comments

Comments
 (0)