Revision: 133284 https://trac.macports.org/changeset/133284 Author: ryandesign@macports.org Date: 2015-02-24 11:36:24 -0800 (Tue, 24 Feb 2015) Log Message: ----------- apgdiff: new port, version 2.4 (#46950) Added Paths: ----------- trunk/dports/databases/apgdiff/ trunk/dports/databases/apgdiff/Portfile trunk/dports/databases/apgdiff/files/ trunk/dports/databases/apgdiff/files/apgdiff.in Added: trunk/dports/databases/apgdiff/Portfile =================================================================== --- trunk/dports/databases/apgdiff/Portfile (rev 0) +++ trunk/dports/databases/apgdiff/Portfile 2015-02-24 19:36:24 UTC (rev 133284) @@ -0,0 +1,47 @@ +# -*- 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 +# $Id$ + +PortSystem 1.0 + +name apgdiff +version 2.4 +categories database +platforms darwin +maintainers gmail.com:eerien openmaintainer +license MIT +supported_archs noarch + +description PostgreSQL diff tool that is useful for comparison/diffing of database schemas. + +long_description Another PostgreSQL Diff Tool (also known as apgdiff) is \ + free PostgreSQL diff tool that is useful for comparison/diffing \ + of database schemas. The tool compares two database dump \ + files and creates output with DDL statements that can be used \ + to update old database schema to new one or to see in what \ + exactly both databases differ. It is already being used by many \ + developers all over the world. + +homepage http://apgdiff.com/ +master_sites ${homepage}download/ +use_zip yes +distfiles ${distname}-bin${extract.suffix} + +checksums rmd160 29d3ede1e3daff4c60780757411b682525d18d8f \ + sha256 12d95fbb0b8188d7f90e7aaf8bdd29d0eecac26e08d6323624b5b7e3f7c7a3f7 + +use_configure no + +build {} + +destroot { + xinstall -d ${destroot}${prefix}/share/java/${name} + xinstall ${worksrcpath}/apgdiff-${version}.jar \ + ${destroot}${prefix}/share/java/apgdiff-${version}.jar + xinstall -m 755 ${filespath}/apgdiff.in ${destroot}${prefix}/bin/apgdiff + reinplace "s|@APGDIFF_JAR_PATH@|${prefix}/share/java/apgdiff-${version}.jar|g" \ + ${destroot}${prefix}/bin/apgdiff +} + +livecheck.type regex +livecheck.url ${homepage}download.php +livecheck.regex ${name}-(\[0-9.\]+)-bin${extract.suffix} Property changes on: trunk/dports/databases/apgdiff/Portfile ___________________________________________________________________ Added: svn:executable + * Added: svn:keywords + Id Added: svn:eol-style + native Added: trunk/dports/databases/apgdiff/files/apgdiff.in =================================================================== --- trunk/dports/databases/apgdiff/files/apgdiff.in (rev 0) +++ trunk/dports/databases/apgdiff/files/apgdiff.in 2015-02-24 19:36:24 UTC (rev 133284) @@ -0,0 +1,2 @@ +#!/bin/sh +exec java -jar "@APGDIFF_JAR_PATH@" "$@" Property changes on: trunk/dports/databases/apgdiff/files/apgdiff.in ___________________________________________________________________ Added: svn:executable + * Added: svn:eol-style + native
participants (1)
-
ryandesign@macports.org