2016-12-05 00:33:28 -05:00
|
|
|
# -*- 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
|
2008-04-27 03:28:38 +00:00
|
|
|
|
|
|
|
|
PortSystem 1.0
|
|
|
|
|
|
|
|
|
|
name pgintcl
|
2011-10-10 07:31:50 +00:00
|
|
|
version 3.4.0
|
2008-04-27 03:28:38 +00:00
|
|
|
categories databases
|
2016-12-05 00:33:28 -05:00
|
|
|
maintainers nomaintainer
|
2008-04-27 03:28:38 +00:00
|
|
|
description Pure Tcl PostgreSQL interface
|
|
|
|
|
long_description This is a Tcl interface to PostgreSQL, which is \
|
|
|
|
|
itself written entirely in Tcl, and does not rely \
|
|
|
|
|
on libpq. \
|
|
|
|
|
It is highly but not entirely compatible with \
|
|
|
|
|
other Tcl interfaces, although it is slower.
|
2011-04-22 19:01:43 +00:00
|
|
|
|
|
|
|
|
homepage http://pgintcl.sourceforge.net/
|
|
|
|
|
master_sites sourceforge:pgintcl
|
|
|
|
|
extract.suffix .tgz
|
|
|
|
|
livecheck.regex {([a-zA-Z0-9.]+\.[a-zA-Z0-9.]+)/pgintcl-([a-zA-Z0-9.]+\.[a-zA-Z0-9.]+)/}
|
|
|
|
|
|
2008-04-27 03:28:38 +00:00
|
|
|
platforms darwin
|
2011-10-10 07:31:50 +00:00
|
|
|
checksums md5 1b0eed093e719e8eb0fa617c6e1e6773 \
|
|
|
|
|
sha1 fda86d5177cf7ff7d580f12c47ceb18f3d1c5c24 \
|
|
|
|
|
rmd160 3d99a2393fd6f86ea3716369016a17412b9407b4
|
2008-04-27 03:28:38 +00:00
|
|
|
depends_run port:tcl
|
|
|
|
|
use_configure no
|
|
|
|
|
universal_variant no
|
|
|
|
|
build {}
|
|
|
|
|
destroot {
|
|
|
|
|
set sw_dest_dir ${destroot}${prefix}/lib/$name-$version/
|
|
|
|
|
set share_dest_dir ${destroot}${prefix}/share/$name-$version/
|
|
|
|
|
set doc_dest_dir ${destroot}${prefix}/share/doc/$name-$version/
|
2012-04-03 21:59:59 +00:00
|
|
|
file mkdir $sw_dest_dir
|
|
|
|
|
file mkdir $share_dest_dir
|
|
|
|
|
file mkdir $doc_dest_dir
|
2008-04-27 03:28:38 +00:00
|
|
|
xinstall ${worksrcpath}/pgin.tcl ${worksrcpath}/pkgIndex.tcl $sw_dest_dir
|
|
|
|
|
xinstall ${worksrcpath}/tkpsql.tcl $share_dest_dir
|
|
|
|
|
xinstall ${worksrcpath}/README ${worksrcpath}/REFERENCE \
|
|
|
|
|
${worksrcpath}/INTERNALS ${worksrcpath}/NEWS $doc_dest_dir
|
|
|
|
|
}
|