Projects
New Ticket     Wiki     Browse Source     Timeline     Roadmap     Bug Reports     Search

root/trunk/dports/aqua/BigSQL/Portfile

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
3PortSystem 1.0
4
5name            BigSQL
6version         1.0
7categories      aqua databases
8maintainers     nomaintainer
9platforms       darwin
10description     postgresql psql-like client in cocoa
11long_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
15homepage        http://www.bignerdranch.com/applications.shtml
16master_sites    http://www.bignerdranch.com/source/
17distname        ${name}src
18extract.suffix  .tgz
19checksums       md5 687748bc5bf54ea2af6b1af63ff52772
20patchfiles      patch-project.pbxproj.diff
21
22depends_lib     lib:pq:postgresql83
23
24set worksrcpath ${workpath}/${name}
25
26configure       { reinplace "s|DPORTSPREFIX|${prefix}|g" \
27                        ${worksrcpath}/BigSQL.pbproj/project.pbxproj }
28
29build.dir       ${worksrcpath}
30build.type      pbx
31build.target    -buildstyle Deployment
32
33set xcodebuilddir               build
34platform darwin 8 {
35        if {$xcodeversion == "2.1"} {
36                set xcodebuilddir       build/Deployment
37        }
38}
39
40destroot        { 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}" }
47destroot.target
Note: See TracBrowser for help on using the browser.