|
Revision 36960, 1.3 KB
(checked in by jmr@…, 8 months ago)
|
|
BigSQL: change nonexistent postgresql dependency to postgresql83 (#15360)
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Id
|
| Line | |
|---|
| 1 | # $Id$ |
|---|
| 2 | |
|---|
| 3 | PortSystem 1.0 |
|---|
| 4 | |
|---|
| 5 | name BigSQL |
|---|
| 6 | version 1.0 |
|---|
| 7 | categories aqua databases |
|---|
| 8 | maintainers nomaintainer |
|---|
| 9 | platforms darwin |
|---|
| 10 | description postgresql psql-like client in cocoa |
|---|
| 11 | long_description BigSQL is a PostgreSQL client (not unlike psql). It \ |
|---|
| 12 | enables the user to send SQL to a server and display the \ |
|---|
| 13 | result. Written in Cocoa, it is quite pretty. |
|---|
| 14 | |
|---|
| 15 | homepage http://www.bignerdranch.com/applications.shtml |
|---|
| 16 | master_sites http://www.bignerdranch.com/source/ |
|---|
| 17 | distname ${name}src |
|---|
| 18 | extract.suffix .tgz |
|---|
| 19 | checksums md5 687748bc5bf54ea2af6b1af63ff52772 |
|---|
| 20 | patchfiles patch-project.pbxproj.diff |
|---|
| 21 | |
|---|
| 22 | depends_lib lib:pq:postgresql83 |
|---|
| 23 | |
|---|
| 24 | set worksrcpath ${workpath}/${name} |
|---|
| 25 | |
|---|
| 26 | configure { reinplace "s|DPORTSPREFIX|${prefix}|g" \ |
|---|
| 27 | ${worksrcpath}/BigSQL.pbproj/project.pbxproj } |
|---|
| 28 | |
|---|
| 29 | build.dir ${worksrcpath} |
|---|
| 30 | build.type pbx |
|---|
| 31 | build.target -buildstyle Deployment |
|---|
| 32 | |
|---|
| 33 | set xcodebuilddir build |
|---|
| 34 | platform darwin 8 { |
|---|
| 35 | if {$xcodeversion == "2.1"} { |
|---|
| 36 | set xcodebuilddir build/Deployment |
|---|
| 37 | } |
|---|
| 38 | } |
|---|
| 39 | |
|---|
| 40 | destroot { system "install -m 755 -d \ |
|---|
| 41 | ${destroot}/Applications/MacPorts \ |
|---|
| 42 | && ditto -rsrcFork ${worksrcpath}/${xcodebuilddir}/BigSQL.app \ |
|---|
| 43 | ${destroot}/Applications/MacPorts/BigSQL.app \ |
|---|
| 44 | && install -m 755 -d ${destroot}${prefix}/share/doc/${name} \ |
|---|
| 45 | && install -m 644 ${worksrcpath}/README.txt \ |
|---|
| 46 | ${destroot}${prefix}/share/doc/${name}" } |
|---|
| 47 | destroot.target |
|---|