You've already forked macports-ports
mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
2c90f2d6a2
upstream has disappeared
64 lines
1.9 KiB
Tcl
64 lines
1.9 KiB
Tcl
# -*- 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+)*))"
|
|
|