-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathPortfile
63 lines (47 loc) · 1.88 KB
/
Portfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
PortSystem 1.0
PortGroup xcode 1.0
name BiggerSQL
version 1.3.9
categories aqua databases
maintainers nomaintainer
license Permissive
description SQL front-end to the postgresql DBMS
long_description BiggerSQL is a tool that (like psql) allows you to \
execute SQL on a PostgreSQL server. Type text into the \
top pane, see if it is successful in the middle pane, \
and see the results of a query in the table at the \
bottom. Using tool tips, you can see the type of the \
result -- just let your cursor linger over the column. \
BiggerSQL builds on BigSQL.
#homepage http://dl.dropbox.com/u/43029202/Jerrys_Web_Site/Cocoa/index.html
#master_sites http://dl.dropbox.com/u/43029202/Jerrys_Web_Site/Cocoa/programs/
#master_sites presently downloads from macports distfiles
homepage https://trac.macports.org/wiki/NoHomepage
master_sites ${homepage}
use_dmg yes
checksums md5 9fcaec183ecf9f147c9b902ce65af793 \
sha1 e0d4c44874b46ecea48cd2559e2fd19cfb36bf3e \
rmd160 33d11bc835d2c74eddfc9fb4898c1bcb4b959d51
worksrcdir ${worksrcdir}/${name} Source
set pgglob [glob -directory ${prefix}/lib -nocomplain -tails postgresql*]
if {[llength ${pgglob}]} {
set postgresql [lindex ${pgglob} end]
} else {
set postgresql postgresql84
}
set pglibdir ${prefix}/lib/${postgresql}
depends_lib path:${pglibdir}:${postgresql}
patchfiles patch-project.pbxproj.diff
post-patch {
foreach {subdir} {include lib} {
reinplace "s|/usr/local/pgsql/${subdir}|${prefix}/${subdir}/${postgresql}|" \
${worksrcpath}/${name}.xcodeproj/project.pbxproj
}
}
# Uses Carbon QuickTime functions?
universal_variant no
supported_archs ppc i386
livecheck.type regex
livecheck.url ${homepage}
livecheck.regex "${name} v(\\d+(?:(\\.\\d+)*))"