From jmr at macports.org Fri Jan 1 01:44:30 2010 From: jmr at macports.org (jmr at macports.org) Date: Fri, 1 Jan 2010 01:44:30 -0800 (PST) Subject: [62219] branches/release_1_8 Message-ID: <20100101094431.546D83A1242D@beta.macosforge.org> Revision: 62219 http://trac.macports.org/changeset/62219 Author: jmr at macports.org Date: 2010-01-01 01:44:27 -0800 (Fri, 01 Jan 2010) Log Message: ----------- merge r60774 from trunk: run port load/unload with root privileges by default Revision Links: -------------- http://trac.macports.org/changeset/60774 Modified Paths: -------------- branches/release_1_8/base/src/port1.0/portload.tcl branches/release_1_8/base/src/port1.0/portunload.tcl Property Changed: ---------------- branches/release_1_8/ branches/release_1_8/base/ Property changes on: branches/release_1_8 ___________________________________________________________________ Modified: svn:mergeinfo - /trunk:55268,55279,55281,55285,55317,55385,55417,55591,55594,55679,55767,55793,56147,56160,56162,56435,56448,57026,57255,57436,57441,57784,57801,57871,57974,58445,59318,59585,59597,59654,60259-60260,60798,61302,61385,61770,62172,62194 + /trunk:55268,55279,55281,55285,55317,55385,55417,55591,55594,55679,55767,55793,56147,56160,56162,56435,56448,57026,57255,57436,57441,57784,57801,57871,57974,58445,59318,59585,59597,59654,60259-60260,60774,60798,61302,61385,61770,62172,62194 Property changes on: branches/release_1_8/base ___________________________________________________________________ Modified: svn:mergeinfo - /branches/gsoc08-privileges/base:37343-46937 /branches/universal-sanity/base:51872-52323 /branches/variant-descs-14482/base:34469-34855,34900-37508,37511-37512,41040-41463,42575-42626,42640-42659 /trunk/base:55268,55279,55281,55285,55317,55385,55417,55591,55594,55679,55767,55793,55825,56147,56160,56162,56435,56448,56472-56474,56666,56889,57026,57048,57055,57131,57255,57436,57441,57784,57801,57820,57871,57974,57979,57982,58093,58445,59318,59585,59597,59654,60259-60260,60798,61302,61385,61770,62172,62194 /users/perry/base-bugs_and_notes:45682-46060 /users/perry/base-select:44044-44692 + /branches/gsoc08-privileges/base:37343-46937 /branches/universal-sanity/base:51872-52323 /branches/variant-descs-14482/base:34469-34855,34900-37508,37511-37512,41040-41463,42575-42626,42640-42659 /trunk/base:55268,55279,55281,55285,55317,55385,55417,55591,55594,55679,55767,55793,55825,56147,56160,56162,56435,56448,56472-56474,56666,56889,57026,57048,57055,57131,57255,57436,57441,57784,57801,57820,57871,57974,57979,57982,58093,58445,59318,59585,59597,59654,60259-60260,60774,60798,61302,61385,61770,62172,62194 /users/perry/base-bugs_and_notes:45682-46060 /users/perry/base-select:44044-44692 Modified: branches/release_1_8/base/src/port1.0/portload.tcl =================================================================== --- branches/release_1_8/base/src/port1.0/portload.tcl 2010-01-01 00:54:29 UTC (rev 62218) +++ branches/release_1_8/base/src/port1.0/portload.tcl 2010-01-01 09:44:27 UTC (rev 62219) @@ -42,6 +42,9 @@ namespace eval portload { } +options load.asroot +default load.asroot yes + set_ui_prefix proc portload::load_main {args} { Modified: branches/release_1_8/base/src/port1.0/portunload.tcl =================================================================== --- branches/release_1_8/base/src/port1.0/portunload.tcl 2010-01-01 00:54:29 UTC (rev 62218) +++ branches/release_1_8/base/src/port1.0/portunload.tcl 2010-01-01 09:44:27 UTC (rev 62219) @@ -42,6 +42,9 @@ namespace eval portunload { } +options unload.asroot +default unload.asroot yes + set_ui_prefix proc portunload::unload_main {args} { -------------- next part -------------- An HTML attachment was scrubbed... URL: From noreply at macports.org Fri Jan 1 01:51:18 2010 From: noreply at macports.org (MacPorts) Date: Fri, 01 Jan 2010 09:51:18 -0000 Subject: [MacPorts] PortfileRecipes modified Message-ID: <20100101095118.54041849EBB1@mail-out4.apple.com> Changed page "PortfileRecipes" by ryandesign at macports.org from 70.253.75.177* Page URL: Diff URL: Revision 14 Comment: total rewrite of variant_isset section -------8<------8<------8<------8<------8<------8<------8<------8<-------- Index: PortfileRecipes ========================================================================= --- PortfileRecipes (version: 13) +++ PortfileRecipes (version: 14) @@ -48,19 +48,34 @@ }}} -== variant_isset doesn't work when variant is set == #variant_isset -Make sure you have the variant defined, even if it is empty, in the Portfile. If all you need is to do something when the variant is set and not dedicate an entire variant section to it, variant_isset can work but you must still define the variant (or platform for things like darwin, darwin_9, etc). So just add -{{{ -variant myvariant { -} -}}} -or -{{{ -platform darwin 9 { -} -}}} -Then port will set the variant when selected and variant_isset should work. - +== variant_isset requires the variant to exist == #variant_isset +Normally you write the code for a variant inside the variant declaration: + +{{{ +variant my_variant description {Variant description} { + ... + post-destroot { + [post-destroot code for when the variant is set] + } +} +}}} + +Sometimes it's more natural to include the variant's code in other sections of the Portfile by checking if the variant is (or is not) set: + +{{{ +post-destroot { + ... + if {![variant_isset my_variant]} { + [post-destroot code for when the variant is not set] + } +} +}}} + +This is fine, but if you do it this way, you must ensure the variant is still defined in your Portfile, even if it is empty: + +{{{ +variant my_variant description {Variant description} {} +}}} == Preferred use of default_variants == #default_variants Currently negating a variant (through {{{-variant}}}) is not remembered which means a {{{port upgrade}}} will not keep that negation around. This causes issues with default_variants which must be kept in mind (ticket #2377). -------8<------8<------8<------8<------8<------8<------8<------8<-------- * The IP shown here might not mean anything if the user or the server is behind a proxy. -- MacPorts Ports system for Mac OS This is an automated message. Someone at http://www.macports.org/ added your email address to be notified of changes on PortfileRecipes. If it was not you, please report to . From noreply at macports.org Fri Jan 1 01:53:21 2010 From: noreply at macports.org (MacPorts) Date: Fri, 01 Jan 2010 09:53:21 -0000 Subject: [MacPorts] PortfileRecipes modified Message-ID: <20100101095321.DFF537EB4498@mail-out3.apple.com> Changed page "PortfileRecipes" by ryandesign at macports.org from 70.253.75.177* Page URL: Diff URL: Revision 15 Comment: eg => e.g. -------8<------8<------8<------8<------8<------8<------8<------8<-------- Index: PortfileRecipes ========================================================================= --- PortfileRecipes (version: 14) +++ PortfileRecipes (version: 15) @@ -38,7 +38,7 @@ }}} == Using glob results in "Cannot stat: " == #glob -glob returns a list which is not handled by some commands (eg, xinstall); instead, wrap the command in an eval. Instead of +glob returns a list which is not handled by some commands (e.g. xinstall); instead, wrap the command in an eval. Instead of {{{ xinstall -m 644 [glob ${worksrcpath}/docs/*.html] ${destroot}${prefix}/share/doc/${name} }}} @@ -80,7 +80,7 @@ == Preferred use of default_variants == #default_variants Currently negating a variant (through {{{-variant}}}) is not remembered which means a {{{port upgrade}}} will not keep that negation around. This causes issues with default_variants which must be kept in mind (ticket #2377). -The preferred technique is to only select a default variant when one of a set is actually needed; eg, from [browser:trunk/dports/graphics/ImageMagick ImageMagick], when selecting the pixel quantum: +The preferred technique is to only select a default variant when one of a set is actually needed; e.g. from [browser:trunk/dports/graphics/ImageMagick ImageMagick], when selecting the pixel quantum: {{{ if {![variant_isset q8] && ![variant_isset q32]} { default_variants +q16 -------8<------8<------8<------8<------8<------8<------8<------8<-------- * The IP shown here might not mean anything if the user or the server is behind a proxy. -- MacPorts Ports system for Mac OS This is an automated message. Someone at http://www.macports.org/ added your email address to be notified of changes on PortfileRecipes. If it was not you, please report to . From jmr at macports.org Fri Jan 1 01:57:24 2010 From: jmr at macports.org (jmr at macports.org) Date: Fri, 1 Jan 2010 01:57:24 -0800 (PST) Subject: [62220] trunk/base/ChangeLog Message-ID: <20100101095724.5E4363A12669@beta.macosforge.org> Revision: 62220 http://trac.macports.org/changeset/62220 Author: jmr at macports.org Date: 2010-01-01 01:57:23 -0800 (Fri, 01 Jan 2010) Log Message: ----------- 1.8.2 release date Modified Paths: -------------- trunk/base/ChangeLog Modified: trunk/base/ChangeLog =================================================================== --- trunk/base/ChangeLog 2010-01-01 09:44:27 UTC (rev 62219) +++ trunk/base/ChangeLog 2010-01-01 09:57:23 UTC (rev 62220) @@ -38,7 +38,7 @@ - Add new log command and keeping of debug output for easy access after port has run (GSoC 2009 logging project by enl, merged in r60372) -Release 1.8.2 (unreleased): +Release 1.8.2 (2010-01-01 by jmr): - Fixed a bug that could cause port to hit the open file limit (#22959, jmr in r61770) -------------- next part -------------- An HTML attachment was scrubbed... URL: From jmr at macports.org Fri Jan 1 01:58:18 2010 From: jmr at macports.org (jmr at macports.org) Date: Fri, 1 Jan 2010 01:58:18 -0800 (PST) Subject: [62221] branches/release_1_8 Message-ID: <20100101095818.682F13A12695@beta.macosforge.org> Revision: 62221 http://trac.macports.org/changeset/62221 Author: jmr at macports.org Date: 2010-01-01 01:58:17 -0800 (Fri, 01 Jan 2010) Log Message: ----------- merge r62220 from trunk: 1.8.2 release date Revision Links: -------------- http://trac.macports.org/changeset/62220 Modified Paths: -------------- branches/release_1_8/base/ChangeLog Property Changed: ---------------- branches/release_1_8/ branches/release_1_8/base/ Property changes on: branches/release_1_8 ___________________________________________________________________ Modified: svn:mergeinfo - /trunk:55268,55279,55281,55285,55317,55385,55417,55591,55594,55679,55767,55793,56147,56160,56162,56435,56448,57026,57255,57436,57441,57784,57801,57871,57974,58445,59318,59585,59597,59654,60259-60260,60774,60798,61302,61385,61770,62172,62194 + /trunk:55268,55279,55281,55285,55317,55385,55417,55591,55594,55679,55767,55793,56147,56160,56162,56435,56448,57026,57255,57436,57441,57784,57801,57871,57974,58445,59318,59585,59597,59654,60259-60260,60774,60798,61302,61385,61770,62172,62194,62220 Property changes on: branches/release_1_8/base ___________________________________________________________________ Modified: svn:mergeinfo - /branches/gsoc08-privileges/base:37343-46937 /branches/universal-sanity/base:51872-52323 /branches/variant-descs-14482/base:34469-34855,34900-37508,37511-37512,41040-41463,42575-42626,42640-42659 /trunk/base:55268,55279,55281,55285,55317,55385,55417,55591,55594,55679,55767,55793,55825,56147,56160,56162,56435,56448,56472-56474,56666,56889,57026,57048,57055,57131,57255,57436,57441,57784,57801,57820,57871,57974,57979,57982,58093,58445,59318,59585,59597,59654,60259-60260,60774,60798,61302,61385,61770,62172,62194 /users/perry/base-bugs_and_notes:45682-46060 /users/perry/base-select:44044-44692 + /branches/gsoc08-privileges/base:37343-46937 /branches/universal-sanity/base:51872-52323 /branches/variant-descs-14482/base:34469-34855,34900-37508,37511-37512,41040-41463,42575-42626,42640-42659 /trunk/base:55268,55279,55281,55285,55317,55385,55417,55591,55594,55679,55767,55793,55825,56147,56160,56162,56435,56448,56472-56474,56666,56889,57026,57048,57055,57131,57255,57436,57441,57784,57801,57820,57871,57974,57979,57982,58093,58445,59318,59585,59597,59654,60259-60260,60774,60798,61302,61385,61770,62172,62194,62220 /users/perry/base-bugs_and_notes:45682-46060 /users/perry/base-select:44044-44692 Modified: branches/release_1_8/base/ChangeLog =================================================================== --- branches/release_1_8/base/ChangeLog 2010-01-01 09:57:23 UTC (rev 62220) +++ branches/release_1_8/base/ChangeLog 2010-01-01 09:58:17 UTC (rev 62221) @@ -3,7 +3,7 @@ # $Id$ ### -Release 1.8.2 (unreleased): +Release 1.8.2 (2010-01-01 by jmr): - Fixed a bug that could cause port to hit the open file limit (#22959, jmr in r61770) -------------- next part -------------- An HTML attachment was scrubbed... URL: From jmr at macports.org Fri Jan 1 02:00:05 2010 From: jmr at macports.org (jmr at macports.org) Date: Fri, 1 Jan 2010 02:00:05 -0800 (PST) Subject: [62222] tags/release_1_8_2/ Message-ID: <20100101100005.ED5863A127BF@beta.macosforge.org> Revision: 62222 http://trac.macports.org/changeset/62222 Author: jmr at macports.org Date: 2010-01-01 02:00:05 -0800 (Fri, 01 Jan 2010) Log Message: ----------- Create tag for 1.8.2 release Added Paths: ----------- tags/release_1_8_2/ Property changes on: tags/release_1_8_2 ___________________________________________________________________ Added: svn:mergeinfo + /trunk:55268,55279,55281,55285,55317,55385,55417,55591,55594,55679,55767,55793,56147,56160,56162,56435,56448,57026,57255,57436,57441,57784,57801,57871,57974,58445,59318,59585,59597,59654,60259-60260,60774,60798,61302,61385,61770,62172,62194,62220 -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Fri Jan 1 02:20:12 2010 From: ryandesign at macports.org (ryandesign at macports.org) Date: Fri, 1 Jan 2010 02:20:12 -0800 (PST) Subject: [62223] trunk/base/src/port1.0/portconfigure.tcl Message-ID: <20100101102013.A96693A12B74@beta.macosforge.org> Revision: 62223 http://trac.macports.org/changeset/62223 Author: ryandesign at macports.org Date: 2010-01-01 02:20:10 -0800 (Fri, 01 Jan 2010) Log Message: ----------- portconfigure.tcl: allow gcc45 to be used in configure.compiler Modified Paths: -------------- trunk/base/src/port1.0/portconfigure.tcl Modified: trunk/base/src/port1.0/portconfigure.tcl =================================================================== --- trunk/base/src/port1.0/portconfigure.tcl 2010-01-01 10:00:05 UTC (rev 62222) +++ trunk/base/src/port1.0/portconfigure.tcl 2010-01-01 10:20:10 UTC (rev 62223) @@ -208,6 +208,7 @@ macports-gcc-4.2 { set name "MacPorts gcc 4.2" } macports-gcc-4.3 { set name "MacPorts gcc 4.3" } macports-gcc-4.4 { set name "MacPorts gcc 4.4" } + macports-gcc-4.5 { set name "MacPorts gcc 4.5" } default { return -code error "Invalid value for configure.compiler" } } ui_debug "Using compiler '$name'" @@ -466,6 +467,17 @@ f90 { set ret ${prefix}/bin/gfortran-mp-4.4 } } } + macports-gcc-4.5 { + switch -exact ${type} { + cc { set ret ${prefix}/bin/gcc-mp-4.5 } + objc { set ret ${prefix}/bin/gcc-mp-4.5 } + cxx { set ret ${prefix}/bin/g++-mp-4.5 } + cpp { set ret ${prefix}/bin/cpp-mp-4.5 } + fc { set ret ${prefix}/bin/gfortran-mp-4.5 } + f77 { set ret ${prefix}/bin/gfortran-mp-4.5 } + f90 { set ret ${prefix}/bin/gfortran-mp-4.5 } + } + } } return $ret } -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Fri Jan 1 02:21:50 2010 From: ryandesign at macports.org (ryandesign at macports.org) Date: Fri, 1 Jan 2010 02:21:50 -0800 (PST) Subject: [62224] trunk/base/ChangeLog Message-ID: <20100101102150.90A8B3A12B93@beta.macosforge.org> Revision: 62224 http://trac.macports.org/changeset/62224 Author: ryandesign at macports.org Date: 2010-01-01 02:21:49 -0800 (Fri, 01 Jan 2010) Log Message: ----------- ChangeLog: update for gcc45 configure.compiler change in r62223 Revision Links: -------------- http://trac.macports.org/changeset/62223 Modified Paths: -------------- trunk/base/ChangeLog Modified: trunk/base/ChangeLog =================================================================== --- trunk/base/ChangeLog 2010-01-01 10:20:10 UTC (rev 62223) +++ trunk/base/ChangeLog 2010-01-01 10:21:49 UTC (rev 62224) @@ -5,6 +5,8 @@ Release 1.9.0 (unreleased): + - Allow gcc45 port to be used in configure.compiler (ryandesign in r62223) + - svn checkouts now use peg revisions instead of operative revisions, so they'll continue to work if a repository gets reorganized (#20777, ryandesign in r60573) -------------- next part -------------- An HTML attachment was scrubbed... URL: From jmr at macports.org Fri Jan 1 02:30:07 2010 From: jmr at macports.org (jmr at macports.org) Date: Fri, 1 Jan 2010 02:30:07 -0800 (PST) Subject: [62225] trunk/dports/sysutils/MacPorts/Portfile Message-ID: <20100101103008.4B3D33A12D63@beta.macosforge.org> Revision: 62225 http://trac.macports.org/changeset/62225 Author: jmr at macports.org Date: 2010-01-01 02:30:04 -0800 (Fri, 01 Jan 2010) Log Message: ----------- MacPorts port: update to 1.8.2 Modified Paths: -------------- trunk/dports/sysutils/MacPorts/Portfile Modified: trunk/dports/sysutils/MacPorts/Portfile =================================================================== --- trunk/dports/sysutils/MacPorts/Portfile 2010-01-01 10:21:49 UTC (rev 62224) +++ trunk/dports/sysutils/MacPorts/Portfile 2010-01-01 10:30:04 UTC (rev 62225) @@ -3,7 +3,7 @@ PortSystem 1.0 name MacPorts -version 1.8.1 +version 1.8.2 categories sysutils platforms darwin freebsd @@ -18,9 +18,9 @@ master_sites macports_distfiles use_bzip2 yes -checksums md5 93a4200cbb9da6d5973deb3e6c47fc9c \ - sha1 e0cf78631483500c94e42d32efb7151c31232189 \ - rmd160 b45e56323e6a3f39c3092046775c4806862a3ab6 +checksums md5 122741ae7a64bd4179134fe4644e920f \ + sha1 985d159ed4553da91b0704a3d3de7fcf8c5fa78c \ + rmd160 f6c78cfa5b3cd9beae15c5ffbc0cddd6770c408a pre-fetch { if {${prefix} != {/opt/local}} { @@ -44,6 +44,9 @@ configure.cc_archflags configure.objc_archflags } +if {[info exists configure.ld_archflags]} { + configure.ld_archflags +} if {[info exists compiler.cpath]} { compiler.cpath compiler.library_path -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Fri Jan 1 02:54:39 2010 From: portindex at macports.org (portindex at macports.org) Date: Fri, 1 Jan 2010 02:54:39 -0800 (PST) Subject: [62226] trunk/dports/PortIndex Message-ID: <20100101105442.CC89E3A13202@beta.macosforge.org> Revision: 62226 http://trac.macports.org/changeset/62226 Author: portindex at macports.org Date: 2010-01-01 02:54:36 -0800 (Fri, 01 Jan 2010) Log Message: ----------- Total number of ports parsed: 6468 Ports successfully parsed: 6468 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-01 10:30:04 UTC (rev 62225) +++ trunk/dports/PortIndex 2010-01-01 10:54:36 UTC (rev 62226) @@ -10759,7 +10759,7 @@ FDclone 414 variants {universal nojpnmes emacs vim lv less jless autosort} portdir sysutils/FDclone description {File & Directory Maintenance Tool} homepage http://hp.vector.co.jp/authors/VA012337/soft/fd/index.html epoch 0 platforms darwin name FDclone depends_lib port:ncurses long_description {{File & Directory Maintenance Tool}} maintainers {takanori openmaintainer} categories {sysutils shells} version 3.00d revision 0 MacPorts 527 -variants {darwin_7 darwin_8 darwin_8_powerpc darwin_8_i386 darwin_9 darwin_9_powerpc darwin_9_i386 darwin_10 universal} portdir sysutils/MacPorts description {The MacPorts Infrastructure} homepage http://www.macports.org/ epoch 0 platforms {darwin freebsd} name MacPorts long_description {MacPorts provides the infrastructure that allows easy installation and management of freely available software on Mac OS X 10.4 or newer systems.} maintainers lists.macosforge.org:macports-mgr categories sysutils version 1.8.1 revision 0 +variants {darwin_7 darwin_8 darwin_8_powerpc darwin_8_i386 darwin_9 darwin_9_powerpc darwin_9_i386 darwin_10 universal} portdir sysutils/MacPorts description {The MacPorts Infrastructure} homepage http://www.macports.org/ epoch 0 platforms {darwin freebsd} name MacPorts long_description {MacPorts provides the infrastructure that allows easy installation and management of freely available software on Mac OS X 10.4 or newer systems.} maintainers lists.macosforge.org:macports-mgr categories sysutils version 1.8.2 revision 0 Pallet 492 variants universal portdir sysutils/Pallet description {Aqua application to control a MacPorts installation.} depends_fetch port:subversion homepage http://www.macports.org epoch 0 platforms macosx depends_lib port:MacPorts_Framework name Pallet long_description {Pallet is an aqua application that controls a MacPorts installation, including the installation, upgrading, and removal of individual ports.} maintainers nomaintainer version 0.1.0 categories {sysutils aqua macports} revision 1 agrep 311 -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Fri Jan 1 03:08:31 2010 From: ryandesign at macports.org (ryandesign at macports.org) Date: Fri, 1 Jan 2010 03:08:31 -0800 (PST) Subject: [62227] trunk/base/ChangeLog Message-ID: <20100101110831.EC1823A13328@beta.macosforge.org> Revision: 62227 http://trac.macports.org/changeset/62227 Author: ryandesign at macports.org Date: 2010-01-01 03:08:28 -0800 (Fri, 01 Jan 2010) Log Message: ----------- ChangeLog: note fix for "port load" for non-root installations; see #21713 Modified Paths: -------------- trunk/base/ChangeLog Modified: trunk/base/ChangeLog =================================================================== --- trunk/base/ChangeLog 2010-01-01 10:54:36 UTC (rev 62226) +++ trunk/base/ChangeLog 2010-01-01 11:08:28 UTC (rev 62227) @@ -42,6 +42,8 @@ Release 1.8.2 (2010-01-01 by jmr): + - Fixed 'port load' for non-root installations (#21713, jmr in r60774) + - Fixed a bug that could cause port to hit the open file limit (#22959, jmr in r61770) -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Fri Jan 1 03:09:50 2010 From: ryandesign at macports.org (ryandesign at macports.org) Date: Fri, 1 Jan 2010 03:09:50 -0800 (PST) Subject: [62228] branches/release_1_8/base/ChangeLog Message-ID: <20100101110950.E5C3B3A13343@beta.macosforge.org> Revision: 62228 http://trac.macports.org/changeset/62228 Author: ryandesign at macports.org Date: 2010-01-01 03:09:49 -0800 (Fri, 01 Jan 2010) Log Message: ----------- merge r62227 from trunk: ChangeLog: note fix for "port load" for non-root installations; see #21713 Revision Links: -------------- http://trac.macports.org/changeset/62227 Modified Paths: -------------- branches/release_1_8/base/ChangeLog Modified: branches/release_1_8/base/ChangeLog =================================================================== --- branches/release_1_8/base/ChangeLog 2010-01-01 11:08:28 UTC (rev 62227) +++ branches/release_1_8/base/ChangeLog 2010-01-01 11:09:49 UTC (rev 62228) @@ -5,6 +5,8 @@ Release 1.8.2 (2010-01-01 by jmr): + - Fixed 'port load' for non-root installations (#21713, jmr in r60774) + - Fixed a bug that could cause port to hit the open file limit (#22959, jmr in r61770) -------------- next part -------------- An HTML attachment was scrubbed... URL: From toby at macports.org Fri Jan 1 03:22:59 2010 From: toby at macports.org (toby at macports.org) Date: Fri, 1 Jan 2010 03:22:59 -0800 (PST) Subject: [62229] trunk/dports/devel/libsdl-devel/Portfile Message-ID: <20100101112300.402573A13465@beta.macosforge.org> Revision: 62229 http://trac.macports.org/changeset/62229 Author: toby at macports.org Date: 2010-01-01 03:22:57 -0800 (Fri, 01 Jan 2010) Log Message: ----------- yay Modified Paths: -------------- trunk/dports/devel/libsdl-devel/Portfile Modified: trunk/dports/devel/libsdl-devel/Portfile =================================================================== --- trunk/dports/devel/libsdl-devel/Portfile 2010-01-01 11:09:49 UTC (rev 62228) +++ trunk/dports/devel/libsdl-devel/Portfile 2010-01-01 11:22:57 UTC (rev 62229) @@ -5,7 +5,7 @@ conflicts libsdl name libsdl-devel -version 1.3.0-5401 +version 1.3.0-5441 categories devel multimedia description Cross-platform multi-media development API @@ -22,9 +22,9 @@ maintainers toby master_sites ${homepage}tmp/ -checksums md5 3462dd09eefa1a9f96a7825c3230a358 \ - sha1 7cafa54c0871b19929346921e2db43b31b2843fe \ - rmd160 d4e695fa388e0d38d883484d27f85733cb8b68ae +checksums md5 5de111ac477d85fe9d5e723c144fc747 \ + sha1 369497b1e213b32538e3a139c55f26139482b3ea \ + rmd160 46c5327cbd32629100b02bba4ed273b52338666b distname SDL-${version} -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Fri Jan 1 03:24:55 2010 From: ryandesign at macports.org (ryandesign at macports.org) Date: Fri, 1 Jan 2010 03:24:55 -0800 (PST) Subject: [62230] trunk/base/ChangeLog Message-ID: <20100101112456.08DFA3A13511@beta.macosforge.org> Revision: 62230 http://trac.macports.org/changeset/62230 Author: ryandesign at macports.org Date: 2010-01-01 03:24:54 -0800 (Fri, 01 Jan 2010) Log Message: ----------- ChangeLog: noted fixes for 'merge' procedure in r58776, r58777, r58788 Revision Links: -------------- http://trac.macports.org/changeset/58776 http://trac.macports.org/changeset/58777 http://trac.macports.org/changeset/58788 Modified Paths: -------------- trunk/base/ChangeLog Modified: trunk/base/ChangeLog =================================================================== --- trunk/base/ChangeLog 2010-01-01 11:22:57 UTC (rev 62229) +++ trunk/base/ChangeLog 2010-01-01 11:24:54 UTC (rev 62230) @@ -40,6 +40,12 @@ - Add new log command and keeping of debug output for easy access after port has run (GSoC 2009 logging project by enl, merged in r60372) +Release 1.8.3 (unreleased): + + - Fixed 'merge' proc for paths with spaces, and for symlinks on Snow + Leopard, and added an error message for when 'merge' is not called + correctly (ryandesign in r58776, r58777, r58778) + Release 1.8.2 (2010-01-01 by jmr): - Fixed 'port load' for non-root installations (#21713, jmr in r60774) -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Fri Jan 1 03:26:49 2010 From: ryandesign at macports.org (ryandesign at macports.org) Date: Fri, 1 Jan 2010 03:26:49 -0800 (PST) Subject: [62231] branches/release_1_8/base Message-ID: <20100101112650.10D333A13534@beta.macosforge.org> Revision: 62231 http://trac.macports.org/changeset/62231 Author: ryandesign at macports.org Date: 2010-01-01 03:26:48 -0800 (Fri, 01 Jan 2010) Log Message: ----------- portutil.tcl: merge r58776, r58777, r58788 from trunk: improve merge proc to add a new error message, support paths with spaces, and support symlinks on Snow Leopard Revision Links: -------------- http://trac.macports.org/changeset/58776 http://trac.macports.org/changeset/58777 http://trac.macports.org/changeset/58788 Modified Paths: -------------- branches/release_1_8/base/ChangeLog branches/release_1_8/base/src/port1.0/portutil.tcl Property Changed: ---------------- branches/release_1_8/base/ Property changes on: branches/release_1_8/base ___________________________________________________________________ Modified: svn:mergeinfo - /branches/gsoc08-privileges/base:37343-46937 /branches/universal-sanity/base:51872-52323 /branches/variant-descs-14482/base:34469-34855,34900-37508,37511-37512,41040-41463,42575-42626,42640-42659 /trunk/base:55268,55279,55281,55285,55317,55385,55417,55591,55594,55679,55767,55793,55825,56147,56160,56162,56435,56448,56472-56474,56666,56889,57026,57048,57055,57131,57255,57436,57441,57784,57801,57820,57871,57974,57979,57982,58093,58445,59318,59585,59597,59654,60259-60260,60774,60798,61302,61385,61770,62172,62194,62220 /users/perry/base-bugs_and_notes:45682-46060 /users/perry/base-select:44044-44692 + /branches/gsoc08-privileges/base:37343-46937 /branches/universal-sanity/base:51872-52323 /branches/variant-descs-14482/base:34469-34855,34900-37508,37511-37512,41040-41463,42575-42626,42640-42659 /trunk/base:55268,55279,55281,55285,55317,55385,55417,55591,55594,55679,55767,55793,55825,56147,56160,56162,56435,56448,56472-56474,56666,56889,57026,57048,57055,57131,57255,57436,57441,57784,57801,57820,57871,57974,57979,57982,58093,58445,58776-58777,58788,59318,59585,59597,59654,60259-60260,60774,60798,61302,61385,61770,62172,62194,62220,62230 /users/perry/base-bugs_and_notes:45682-46060 /users/perry/base-select:44044-44692 Modified: branches/release_1_8/base/ChangeLog =================================================================== --- branches/release_1_8/base/ChangeLog 2010-01-01 11:24:54 UTC (rev 62230) +++ branches/release_1_8/base/ChangeLog 2010-01-01 11:26:48 UTC (rev 62231) @@ -3,6 +3,12 @@ # $Id$ ### +Release 1.8.3 (unreleased): + + - Fixed 'merge' proc for paths with spaces, and for symlinks on Snow + Leopard, and added an error message for when 'merge' is not called + correctly (ryandesign in r58776, r58777, r58778) + Release 1.8.2 (2010-01-01 by jmr): - Fixed 'port load' for non-root installations (#21713, jmr in r60774) Modified: branches/release_1_8/base/src/port1.0/portutil.tcl =================================================================== --- branches/release_1_8/base/src/port1.0/portutil.tcl 2010-01-01 11:24:54 UTC (rev 62230) +++ branches/release_1_8/base/src/port1.0/portutil.tcl 2010-01-01 11:26:48 UTC (rev 62231) @@ -2184,12 +2184,11 @@ # e.g. 'merge_lipo ${workpath}/pre-dest ${destroot} ${prefix}/bin/pstree i386 ppc # will merge binary files with lipo which have to be in the same (relative) path proc merge_lipo {base target file archs} { - set exec-lipo "" + set exec-lipo [list [findBinary lipo $portutil::autoconf::lipo_path]] foreach arch ${archs} { - set exec-lipo [concat ${exec-lipo} [list "-arch" "${arch}" "${base}/${arch}${file}"]] + lappend exec-lipo -arch ${arch} ${base}/${arch}${file} } - set exec-lipo [concat ${exec-lipo}] - system "[findBinary lipo $portutil::autoconf::lipo_path] ${exec-lipo} -create -output ${target}${file}" + eval exec ${exec-lipo} [list -create -output ${target}${file}] } # private function @@ -2234,6 +2233,9 @@ set base_arch ${arch} } } + if {"" == ${base_arch}} { + return -code error [format [msgcat::mc "Cannot merge because directory '%s' contains no architecture directories."] ${base}] + } ui_debug "merging architectures ${archs}, base_arch is ${base_arch}" # traverse the base-architecture directory @@ -2242,30 +2244,34 @@ set fpath [string range "${file}" [string length "${basepath}"] [string length "${file}"]] if {${fpath} != ""} { # determine the type (dir/file/link) - set filetype [exec [findBinary file $portutil::autoconf::file_path] "-b" "${basepath}${fpath}"] - switch -regexp ${filetype} { + switch [file type ${basepath}${fpath}] { directory { # just create directories ui_debug "mrg: directory ${fpath}" file mkdir "${destroot}${fpath}" } - symbolic\ link.* { + link { # copy symlinks, TODO: check if targets match! ui_debug "mrg: symlink ${fpath}" file copy "${basepath}${fpath}" "${destroot}${fpath}" } - Mach-O.* { - merge_lipo "${base}" "${destroot}" "${fpath}" "${archs}" - } - current\ ar\ archive { - merge_lipo "${base}" "${destroot}" "${fpath}" "${archs}" - } - ASCII\ C\ program\ text { - merge_cpp "${base}" "${destroot}" "${fpath}" "${archs}" - } default { - ui_debug "unknown file type: ${filetype}" - merge_file "${base}" "${destroot}" "${fpath}" "${archs}" + set filetype [exec [findBinary file $portutil::autoconf::file_path] "-b" "${basepath}${fpath}"] + switch -regexp ${filetype} { + Mach-O.* { + merge_lipo "${base}" "${destroot}" "${fpath}" "${archs}" + } + current\ ar\ archive { + merge_lipo "${base}" "${destroot}" "${fpath}" "${archs}" + } + ASCII\ C\ program\ text { + merge_cpp "${base}" "${destroot}" "${fpath}" "${archs}" + } + default { + ui_debug "unknown file type: ${filetype}" + merge_file "${base}" "${destroot}" "${fpath}" "${archs}" + } + } } } } -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Fri Jan 1 03:30:42 2010 From: ryandesign at macports.org (ryandesign at macports.org) Date: Fri, 1 Jan 2010 03:30:42 -0800 (PST) Subject: [62232] trunk/dports/emulators Message-ID: <20100101113043.2FE043A135ED@beta.macosforge.org> Revision: 62232 http://trac.macports.org/changeset/62232 Author: ryandesign at macports.org Date: 2010-01-01 03:30:41 -0800 (Fri, 01 Jan 2010) Log Message: ----------- minivmac, minivmac-devel: the needed fix in base to get universal working won't be seen until MacPorts 1.8.3 Modified Paths: -------------- trunk/dports/emulators/minivmac/Portfile trunk/dports/emulators/minivmac-devel/Portfile Modified: trunk/dports/emulators/minivmac/Portfile =================================================================== --- trunk/dports/emulators/minivmac/Portfile 2010-01-01 11:26:48 UTC (rev 62231) +++ trunk/dports/emulators/minivmac/Portfile 2010-01-01 11:30:41 UTC (rev 62232) @@ -114,7 +114,7 @@ {IIx} {-m IIx -mem 8M -hres 800 -vres 600 -depth 3} } -# The universal variant is disabled until MacPorts 1.8.2 is released. +# The universal variant is disabled until MacPorts 1.8.3 is released. if {0} { # To build the bootstrap, use "sudo port install bootstrap=yes". # The variant is hidden because it is useful only to the port maintainer. Modified: trunk/dports/emulators/minivmac-devel/Portfile =================================================================== --- trunk/dports/emulators/minivmac-devel/Portfile 2010-01-01 11:26:48 UTC (rev 62231) +++ trunk/dports/emulators/minivmac-devel/Portfile 2010-01-01 11:30:41 UTC (rev 62232) @@ -123,7 +123,7 @@ {IIx} {-m IIx -mem 8M -hres 800 -vres 600 -depth 3} } -# The universal variant is disabled until MacPorts 1.8.2 is released. +# The universal variant is disabled until MacPorts 1.8.3 is released. if {0} { # To build the bootstrap, use "sudo port install bootstrap=yes". # The variant is hidden because it is useful only to the port maintainer. -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Fri Jan 1 03:54:46 2010 From: portindex at macports.org (portindex at macports.org) Date: Fri, 1 Jan 2010 03:54:46 -0800 (PST) Subject: [62233] trunk/dports/PortIndex Message-ID: <20100101115449.3A6C63A13954@beta.macosforge.org> Revision: 62233 http://trac.macports.org/changeset/62233 Author: portindex at macports.org Date: 2010-01-01 03:54:43 -0800 (Fri, 01 Jan 2010) Log Message: ----------- Total number of ports parsed: 6468 Ports successfully parsed: 6468 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-01 11:30:41 UTC (rev 62232) +++ trunk/dports/PortIndex 2010-01-01 11:54:43 UTC (rev 62233) @@ -1687,7 +1687,7 @@ libsdl 739 variants {universal no_x11} portdir devel/libsdl description {Cross-platform multi-media development API} homepage http://www.libsdl.org/ epoch 0 platforms {macosx freebsd} depends_lib {port:xorg-libXext port:xorg-libXrandr port:xrender} name libsdl maintainers {nox openmaintainer} long_description {Simple DirectMedia Layer is a cross-platform multimedia library designed to provide fast access to the graphics framebuffer and audio device. It is used by MPEG playback software, emulators, and many popular games, including the award winning Linux port of {"Civilization:} Call To Power.\" Simple DirectMedia Layer supports Linux, Win32, BeOS, Mac OS, Solaris, IRIX, and FreeBSD.} categories {devel multimedia} version 1.2.14 revision 8 libsdl-devel 636 -portdir devel/libsdl-devel description {Cross-platform multi-media development API} homepage http://www.libsdl.org/ epoch 0 platforms darwin name libsdl-devel long_description {Simple DirectMedia Layer is a cross-platform multimedia library designed to provide fast access to the graphics framebuffer and audio device. It is used by MPEG playback software, emulators, and many popular games, including the award winning Linux port of {"Civilization:} Call To Power.\" Simple DirectMedia Layer supports Linux, Win32, BeOS, Mac OS, Solaris, IRIX, and FreeBSD.} maintainers toby categories {devel multimedia} version 1.3.0-5401 revision 0 +portdir devel/libsdl-devel description {Cross-platform multi-media development API} homepage http://www.libsdl.org/ epoch 0 platforms darwin name libsdl-devel long_description {Simple DirectMedia Layer is a cross-platform multimedia library designed to provide fast access to the graphics framebuffer and audio device. It is used by MPEG playback software, emulators, and many popular games, including the award winning Linux port of {"Civilization:} Call To Power.\" Simple DirectMedia Layer supports Linux, Win32, BeOS, Mac OS, Solaris, IRIX, and FreeBSD.} maintainers toby categories {devel multimedia} version 1.3.0-5441 revision 0 libsdl-framework 316 portdir devel/libsdl-framework description {Framework version of libsdl} homepage http://www.libsdl.org/ epoch 0 depends_run port:libsdl platforms macosx name libsdl-framework maintainers {nox openmaintainer} long_description {{Framework version of libsdl}} version 20091002 categories {devel multimedia} revision 0 libsdl_gfx 833 -------------- next part -------------- An HTML attachment was scrubbed... URL: From jmr at macports.org Fri Jan 1 04:20:16 2010 From: jmr at macports.org (jmr at macports.org) Date: Fri, 1 Jan 2010 04:20:16 -0800 (PST) Subject: [62234] trunk/base/config/RELEASE_URL Message-ID: <20100101122016.B343B3A14038@beta.macosforge.org> Revision: 62234 http://trac.macports.org/changeset/62234 Author: jmr at macports.org Date: 2010-01-01 04:20:13 -0800 (Fri, 01 Jan 2010) Log Message: ----------- update RELEASE_URL Modified Paths: -------------- trunk/base/config/RELEASE_URL Modified: trunk/base/config/RELEASE_URL =================================================================== --- trunk/base/config/RELEASE_URL 2010-01-01 11:54:43 UTC (rev 62233) +++ trunk/base/config/RELEASE_URL 2010-01-01 12:20:13 UTC (rev 62234) @@ -1 +1 @@ -http://svn.macports.org/repository/macports/tags/release_1_8_1/base +http://svn.macports.org/repository/macports/tags/release_1_8_2/base -------------- next part -------------- An HTML attachment was scrubbed... URL: From jmr at macports.org Fri Jan 1 04:52:04 2010 From: jmr at macports.org (jmr at macports.org) Date: Fri, 1 Jan 2010 04:52:04 -0800 (PST) Subject: [62235] trunk/dports/perl/p5-app-ack/Portfile Message-ID: <20100101125205.06A513A143E0@beta.macosforge.org> Revision: 62235 http://trac.macports.org/changeset/62235 Author: jmr at macports.org Date: 2010-01-01 04:52:01 -0800 (Fri, 01 Jan 2010) Log Message: ----------- p5-app-ack: update to 1.92 (#23079) Modified Paths: -------------- trunk/dports/perl/p5-app-ack/Portfile Modified: trunk/dports/perl/p5-app-ack/Portfile =================================================================== --- trunk/dports/perl/p5-app-ack/Portfile 2010-01-01 12:20:13 UTC (rev 62234) +++ trunk/dports/perl/p5-app-ack/Portfile 2010-01-01 12:52:01 UTC (rev 62235) @@ -3,7 +3,7 @@ PortSystem 1.0 PortGroup perl5 1.0 -perl5.setup App-Ack 1.90 +perl5.setup App-Ack 1.92 platforms darwin maintainers gkg.net:mschout openmaintainer description A grep replacement that ignores .svn/CVS/blib directories @@ -12,8 +12,8 @@ homepage http://search.cpan.org/dist/ack/ distname ack-${version} -checksums md5 94d2790e5e3c74561ca0cd465a494db6 \ - sha1 b329657754e34cc1aa51a2769ae081fca8183f53 \ - rmd160 e180b3d3a50c04dcf296169f10076c3c0389d612 +checksums md5 c25b5a16d0a27386a75c91d531b86cea \ + sha1 6ea70ccab642909e7f274b372efdb6b0161e0d1e \ + rmd160 c5fe12050ef8a2698f4d0d68085dcc3bcb8bde92 depends_lib-append port:p5-file-next -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Fri Jan 1 05:54:47 2010 From: portindex at macports.org (portindex at macports.org) Date: Fri, 1 Jan 2010 05:54:47 -0800 (PST) Subject: [62236] trunk/dports/PortIndex Message-ID: <20100101135450.0F7C93A14D7E@beta.macosforge.org> Revision: 62236 http://trac.macports.org/changeset/62236 Author: portindex at macports.org Date: 2010-01-01 05:54:44 -0800 (Fri, 01 Jan 2010) Log Message: ----------- Total number of ports parsed: 6468 Ports successfully parsed: 6468 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-01 12:52:01 UTC (rev 62235) +++ trunk/dports/PortIndex 2010-01-01 13:54:44 UTC (rev 62236) @@ -6199,7 +6199,7 @@ p5-apache-test 337 portdir perl/p5-apache-test description {Facilitates testing of Apache::* modules} homepage http://search.cpan.org/dist/Apache-Test/ epoch 0 platforms darwin name p5-apache-test depends_lib path:bin/perl:perl5 maintainers nomaintainer long_description {{Facilitates testing of Apache::* modules}} categories perl version 1.28 revision 0 p5-app-ack 428 -portdir perl/p5-app-ack description {A grep replacement that ignores .svn/CVS/blib directories} homepage http://search.cpan.org/dist/ack/ epoch 0 platforms darwin name p5-app-ack depends_lib {path:bin/perl:perl5 port:p5-file-next} maintainers {gkg.net:mschout openmaintainer} long_description {ack is a tool like grep, aimed at programmers with large trees of heterogeneous source code.} categories perl version 1.90 revision 0 +portdir perl/p5-app-ack description {A grep replacement that ignores .svn/CVS/blib directories} homepage http://search.cpan.org/dist/ack/ epoch 0 platforms darwin name p5-app-ack depends_lib {path:bin/perl:perl5 port:p5-file-next} maintainers {gkg.net:mschout openmaintainer} long_description {ack is a tool like grep, aimed at programmers with large trees of heterogeneous source code.} categories perl version 1.92 revision 0 p5-app-cli 422 portdir perl/p5-app-cli description {Dispatcher module for command line interface programs.} homepage http://search.cpan.org/~clkao/ epoch 0 platforms darwin name p5-app-cli depends_lib {path:bin/perl:perl5 port:p5-locale-maketext-simple port:p5-pod-simple} maintainers nomaintainer long_description {App::CLI provides a simple interface for dispatching command line applications.} categories perl version 0.07 revision 0 p5-appconfig 576 -------------- next part -------------- An HTML attachment was scrubbed... URL: From mww at macports.org Fri Jan 1 06:19:02 2010 From: mww at macports.org (mww at macports.org) Date: Fri, 1 Jan 2010 06:19:02 -0800 (PST) Subject: [62237] trunk/dports/lang/gcc45/Portfile Message-ID: <20100101141903.15E8B3A14F4A@beta.macosforge.org> Revision: 62237 http://trac.macports.org/changeset/62237 Author: mww at macports.org Date: 2010-01-01 06:18:59 -0800 (Fri, 01 Jan 2010) Log Message: ----------- version 4.5-20091231 Modified Paths: -------------- trunk/dports/lang/gcc45/Portfile Modified: trunk/dports/lang/gcc45/Portfile =================================================================== --- trunk/dports/lang/gcc45/Portfile 2010-01-01 13:54:44 UTC (rev 62236) +++ trunk/dports/lang/gcc45/Portfile 2010-01-01 14:18:59 UTC (rev 62237) @@ -3,7 +3,7 @@ PortSystem 1.0 name gcc45 -version 4.5-20091224 +version 4.5-20091231 platforms darwin categories lang maintainers mww @@ -26,26 +26,26 @@ set dobjc gcc-objc-${version}.tar.bz2 distfiles ${dcore} ${dfort} ${dcxx} ${djava} ${dobjc} -checksums gcc-core-4.5-20091224.tar.bz2 \ - md5 6a7061cf1f585db331f39f5926e7eef3 \ - sha1 e9a49cf7d5e1f6e547aeddd0761b3f716c68457b \ - rmd160 69b9a569d3a25a84458f555db1501b4b3d427ac3 \ - gcc-fortran-4.5-20091224.tar.bz2 \ - md5 ff0d9a1e9a5a8cbe600b7808a858779b \ - sha1 34c19cac7f7eb80839a25e564b9e90fbd9602b2a \ - rmd160 79d4e830b9102b9494a9b3adda054f83bcf7684f \ - gcc-g++-4.5-20091224.tar.bz2 \ - md5 442037e3411b027c1b797472f0192c47 \ - sha1 c89999ffb6a52bb2d0aa1d1b176788fd165be77e \ - rmd160 136e3a798ee75317938f8fb3da8a0c50c96046fb \ - gcc-java-4.5-20091224.tar.bz2 \ - md5 61281b3efcff8fd67e588e5fdc318c02 \ - sha1 b18fcf930a95ac62a47e371a993a00f34fc1b3dd \ - rmd160 7d474025b6d0539f5d149424caaef53f3717f0bc \ - gcc-objc-4.5-20091224.tar.bz2 \ - md5 99323cb5f510f830f3f4da7f671429e0 \ - sha1 3b12c76cca8a45ba12c63e1b7ce90b97809cbf66 \ - rmd160 f562c3b1d426e9d6180ce97b323aa87d14acff70 +checksums gcc-core-4.5-20091231.tar.bz2 \ + md5 36fcb32d8e74e75f02ac2f6ddee49028 \ + sha1 de145f4db426bfe40207aeb5f2680ae250897300 \ + rmd160 6d413d1ce7fd3c9ad7c829f2ea617c60e2128655 \ + gcc-fortran-4.5-20091231.tar.bz2 \ + md5 40a4e11aeff070b6352a042f9ced7f37 \ + sha1 d9963a90adf0683177dbe906980508978158b7b7 \ + rmd160 e2916a22f8136e8e38ea2697b2018cbc1054eb7b \ + gcc-g++-4.5-20091231.tar.bz2 \ + md5 b0c94667fd54d7098179fc2fe6292b1d \ + sha1 82b17ee4c519c535f79f21b69b087b6982b629cb \ + rmd160 b99a9f9c952d3068cfb25ec77b57899024f7a184 \ + gcc-java-4.5-20091231.tar.bz2 \ + md5 6431bda539b2d78783fa596eacf9c11f \ + sha1 3875e6e615e7a7fc81178402b097298ea2e200d2 \ + rmd160 f2ec042ef49e4323d25d3f5d8942b8d06810199c \ + gcc-objc-4.5-20091231.tar.bz2 \ + md5 6df42682b956ed4745f0d077df01ccfb \ + sha1 6a76636b65650411abe2be16acc756a5a63fce49 \ + rmd160 fb5d104144e516c67e28c16fbd9939458fa5d53a use_bzip2 yes -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Fri Jan 1 06:54:38 2010 From: portindex at macports.org (portindex at macports.org) Date: Fri, 1 Jan 2010 06:54:38 -0800 (PST) Subject: [62238] trunk/dports/PortIndex Message-ID: <20100101145442.C39683A15549@beta.macosforge.org> Revision: 62238 http://trac.macports.org/changeset/62238 Author: portindex at macports.org Date: 2010-01-01 06:54:34 -0800 (Fri, 01 Jan 2010) Log Message: ----------- Total number of ports parsed: 6468 Ports successfully parsed: 6468 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-01 14:18:59 UTC (rev 62237) +++ trunk/dports/PortIndex 2010-01-01 14:54:34 UTC (rev 62238) @@ -4369,7 +4369,7 @@ gcc44 388 variants {powerpc odcctools} portdir lang/gcc44 description {The GNU compiler collection} homepage http://gcc.gnu.org/ epoch 1 platforms darwin name gcc44 depends_lib {port:gmp port:mpfr port:libiconv} long_description {The GNU compiler collection, including front ends for C, C++, Objective-C, Objective-C++, Java and Fortran95.} maintainers mww categories lang version 4.4.2 revision 0 gcc45 506 -variants {powerpc gfortran java} portdir lang/gcc45 description {The GNU compiler collection, prerelease BETA} homepage http://gcc.gnu.org/ epoch 0 platforms darwin name gcc45 depends_lib {port:gmp port:mpfr port:libiconv port:libmpc} long_description {The GNU compiler collection, including front ends for C, C++, Objective-C and Objective-C++. This is a prerelease BETA version and does not have all available language front ends enabled.} maintainers mww categories lang version 4.5-20091224 revision 0 +variants {powerpc gfortran java} portdir lang/gcc45 description {The GNU compiler collection, prerelease BETA} homepage http://gcc.gnu.org/ epoch 0 platforms darwin name gcc45 depends_lib {port:gmp port:mpfr port:libiconv port:libmpc} long_description {The GNU compiler collection, including front ends for C, C++, Objective-C and Objective-C++. This is a prerelease BETA version and does not have all available language front ends enabled.} maintainers mww categories lang version 4.5-20091231 revision 0 gccxml 351 variants universal depends_build port:cmake portdir lang/gccxml description {generates XML description of C++ code} homepage http://www.gccxml.org/ epoch 0 platforms darwin name gccxml long_description {generates an XML description of a C++ program from GCC's internal representation} maintainers nomaintainer categories lang version 0.6.0 revision 0 gccxml-devel 410 -------------- next part -------------- An HTML attachment was scrubbed... URL: From jmr at macports.org Fri Jan 1 07:46:50 2010 From: jmr at macports.org (jmr at macports.org) Date: Fri, 1 Jan 2010 07:46:50 -0800 (PST) Subject: [62239] trunk/dports/devel/bazaar/Portfile Message-ID: <20100101154650.E63EF3A159AE@beta.macosforge.org> Revision: 62239 http://trac.macports.org/changeset/62239 Author: jmr at macports.org Date: 2010-01-01 07:46:46 -0800 (Fri, 01 Jan 2010) Log Message: ----------- bazaar: use gnutar specifically (#23084), use configure.cc Modified Paths: -------------- trunk/dports/devel/bazaar/Portfile Modified: trunk/dports/devel/bazaar/Portfile =================================================================== --- trunk/dports/devel/bazaar/Portfile 2010-01-01 14:54:34 UTC (rev 62238) +++ trunk/dports/devel/bazaar/Portfile 2010-01-01 15:46:46 UTC (rev 62239) @@ -5,7 +5,7 @@ name bazaar version 1.4.2 -revision 1 +revision 2 distname bazaar_${version} categories devel platforms darwin @@ -40,6 +40,10 @@ file mkdir ${configure.dir} } configure.cmd ../src/configure +configure.args --with-cc=${configure.cc} +if {${os.platform} == "darwin"} { + configure.args-append --with-gnu-tar=gnutar +} use_parallel_build no build.env CFLAGS="-g -O2 -Wall -fno-strict-aliasing \ -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Fri Jan 1 08:54:47 2010 From: portindex at macports.org (portindex at macports.org) Date: Fri, 1 Jan 2010 08:54:47 -0800 (PST) Subject: [62240] trunk/dports/PortIndex Message-ID: <20100101165451.699163A15EFD@beta.macosforge.org> Revision: 62240 http://trac.macports.org/changeset/62240 Author: portindex at macports.org Date: 2010-01-01 08:54:43 -0800 (Fri, 01 Jan 2010) Log Message: ----------- Total number of ports parsed: 6468 Ports successfully parsed: 6468 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-01 15:46:46 UTC (rev 62239) +++ trunk/dports/PortIndex 2010-01-01 16:54:43 UTC (rev 62240) @@ -975,7 +975,7 @@ bashdb 598 variants universal portdir devel/bashdb description {Debugger for scripts written in BASH} homepage http://bashdb.sourceforge.net/ epoch 0 platforms darwin name bashdb long_description {bashdb is a script debugger for BASH that follows the GNU Project Debugger (GDB) command syntax. bashdb can run your script, stop it on specified conditions, help you examine what has happened when it has stopped, and allow you to modify parts of your script so that you can experiment with your code and fix problems once they are identified.} maintainers aecollins1 categories devel version 4.0-0.3 revision 0 bazaar 807 -variants universal portdir devel/bazaar description {baz (Bazaar 1), a GNU Arch client} homepage http://bazaar-vcs.org/Baz1x epoch 0 platforms darwin name bazaar depends_lib {port:neon port:gpgme} long_description {NOTE: this is baz, aka Bazaar 1. If you want Bazaar 2, use the bzr port. Bazaar is intended to be an implementation of the GNU Arch protocol that open source developers both want to use, and love using. It is a drop-in replacement for tla. GNU arch is a revision control system, similar in purpose to tools such as CVS, SCCS, and Subversion. It is used to keep track of the changes made to a source tree and to help programmers combine and otherwise manipulate changes made by multiple people or at different times.} maintainers {jmr openmaintainer} categories devel version 1.4.2 revision 1 +variants universal portdir devel/bazaar description {baz (Bazaar 1), a GNU Arch client} homepage http://bazaar-vcs.org/Baz1x epoch 0 platforms darwin name bazaar depends_lib {port:neon port:gpgme} long_description {NOTE: this is baz, aka Bazaar 1. If you want Bazaar 2, use the bzr port. Bazaar is intended to be an implementation of the GNU Arch protocol that open source developers both want to use, and love using. It is a drop-in replacement for tla. GNU arch is a revision control system, similar in purpose to tools such as CVS, SCCS, and Subversion. It is used to keep track of the changes made to a source tree and to help programmers combine and otherwise manipulate changes made by multiple people or at different times.} maintainers {jmr openmaintainer} categories devel version 1.4.2 revision 2 bcpp 391 variants universal portdir devel/bcpp description {C(++) Beautifier} homepage http://www.invisible-island.net/bcpp/ epoch 0 platforms darwin name bcpp long_description {bcpp indents C/C++ source programs, replacing tabs with spaces or the reverse. Unlike indent, it does (by design) not attempt to wrap long statements.} maintainers nomaintainer categories devel version 20090630 revision 0 beecrypt 532 -------------- next part -------------- An HTML attachment was scrubbed... URL: From nox at macports.org Fri Jan 1 12:39:54 2010 From: nox at macports.org (nox at macports.org) Date: Fri, 1 Jan 2010 12:39:54 -0800 (PST) Subject: [62241] trunk/dports/devel/apr/Portfile Message-ID: <20100101203955.491B03A17A3A@beta.macosforge.org> Revision: 62241 http://trac.macports.org/changeset/62241 Author: nox at macports.org Date: 2010-01-01 12:39:51 -0800 (Fri, 01 Jan 2010) Log Message: ----------- Fix apr livecheck Modified Paths: -------------- trunk/dports/devel/apr/Portfile Modified: trunk/dports/devel/apr/Portfile =================================================================== --- trunk/dports/devel/apr/Portfile 2010-01-01 16:54:43 UTC (rev 62240) +++ trunk/dports/devel/apr/Portfile 2010-01-01 20:39:51 UTC (rev 62241) @@ -45,4 +45,4 @@ livecheck.type regex livecheck.url http://apache.org/dist/apr/ -livecheck.regex {APR (\d+(?:\.\d+)*) is the latest available version} +livecheck.regex {APR (\d+(?:\.\d+)*) is the latest available version} -------------- next part -------------- An HTML attachment was scrubbed... URL: From nox at macports.org Fri Jan 1 12:40:04 2010 From: nox at macports.org (nox at macports.org) Date: Fri, 1 Jan 2010 12:40:04 -0800 (PST) Subject: [62242] trunk/dports/devel/apr-util/Portfile Message-ID: <20100101204004.70CD83A17A69@beta.macosforge.org> Revision: 62242 http://trac.macports.org/changeset/62242 Author: nox at macports.org Date: 2010-01-01 12:40:03 -0800 (Fri, 01 Jan 2010) Log Message: ----------- Fix apr-util livecheck Modified Paths: -------------- trunk/dports/devel/apr-util/Portfile Modified: trunk/dports/devel/apr-util/Portfile =================================================================== --- trunk/dports/devel/apr-util/Portfile 2010-01-01 20:39:51 UTC (rev 62241) +++ trunk/dports/devel/apr-util/Portfile 2010-01-01 20:40:03 UTC (rev 62242) @@ -123,4 +123,4 @@ livecheck.type regex livecheck.url http://apache.org/dist/apr/ -livecheck.regex {APR-util (\d+(?:\.\d+)*) is the latest available version} +livecheck.regex {APR-util (\d+(?:\.\d+)*) is the latest available version} -------------- next part -------------- An HTML attachment was scrubbed... URL: From nox at macports.org Fri Jan 1 12:40:16 2010 From: nox at macports.org (nox at macports.org) Date: Fri, 1 Jan 2010 12:40:16 -0800 (PST) Subject: [62243] trunk/dports/_resources/port1.0/group/swigbinding-1.0.tcl Message-ID: <20100101204016.A31483A17A7A@beta.macosforge.org> Revision: 62243 http://trac.macports.org/changeset/62243 Author: nox at macports.org Date: 2010-01-01 12:40:15 -0800 (Fri, 01 Jan 2010) Log Message: ----------- Fix swigbinding portgroup livecheck Modified Paths: -------------- trunk/dports/_resources/port1.0/group/swigbinding-1.0.tcl Modified: trunk/dports/_resources/port1.0/group/swigbinding-1.0.tcl =================================================================== --- trunk/dports/_resources/port1.0/group/swigbinding-1.0.tcl 2010-01-01 20:40:03 UTC (rev 62242) +++ trunk/dports/_resources/port1.0/group/swigbinding-1.0.tcl 2010-01-01 20:40:15 UTC (rev 62243) @@ -82,4 +82,6 @@ test.run yes test.target check -livecheck.name swig +livecheck.type regex +livecheck.url http://www.swig.org/download.html +livecheck.regex {swig-(\d+(?:\.\d+)*)} -------------- next part -------------- An HTML attachment was scrubbed... URL: From nox at macports.org Fri Jan 1 12:40:29 2010 From: nox at macports.org (nox at macports.org) Date: Fri, 1 Jan 2010 12:40:29 -0800 (PST) Subject: [62244] trunk/dports/archivers/szip/Portfile Message-ID: <20100101204030.113733A17AA5@beta.macosforge.org> Revision: 62244 http://trac.macports.org/changeset/62244 Author: nox at macports.org Date: 2010-01-01 12:40:29 -0800 (Fri, 01 Jan 2010) Log Message: ----------- Fix szip livecheck Modified Paths: -------------- trunk/dports/archivers/szip/Portfile Modified: trunk/dports/archivers/szip/Portfile =================================================================== --- trunk/dports/archivers/szip/Portfile 2010-01-01 20:40:15 UTC (rev 62243) +++ trunk/dports/archivers/szip/Portfile 2010-01-01 20:40:29 UTC (rev 62244) @@ -36,6 +36,6 @@ configure.args-delete --disable-encoding } -livecheck.type md5 +livecheck.type regex livecheck.url ftp://ftp.hdfgroup.org/lib-external/szip/ -livecheck.md5 a85f3ad0a2ef538172bdea3ea70b7026 +livecheck.regex {(\d+(?:\.\d+)*)$} -------------- next part -------------- An HTML attachment was scrubbed... URL: From nox at macports.org Fri Jan 1 12:40:43 2010 From: nox at macports.org (nox at macports.org) Date: Fri, 1 Jan 2010 12:40:43 -0800 (PST) Subject: [62245] trunk/dports/lang/tcl/Portfile Message-ID: <20100101204044.09CCE3A17AD6@beta.macosforge.org> Revision: 62245 http://trac.macports.org/changeset/62245 Author: nox at macports.org Date: 2010-01-01 12:40:43 -0800 (Fri, 01 Jan 2010) Log Message: ----------- Fix tcl livecheck Modified Paths: -------------- trunk/dports/lang/tcl/Portfile Modified: trunk/dports/lang/tcl/Portfile =================================================================== --- trunk/dports/lang/tcl/Portfile 2010-01-01 20:40:29 UTC (rev 62244) +++ trunk/dports/lang/tcl/Portfile 2010-01-01 20:40:43 UTC (rev 62245) @@ -53,6 +53,5 @@ # Files with failing tests: socket.test test.run yes -livecheck.type sourceforge -livecheck.name tcl -livecheck.regex "(?i)tcl (\\d+(?:\\.\\d+)*) released.*" +livecheck.type regex +livecheck.regex {Tcl/Tk (\d+(?:\.\d+)*)} -------------- next part -------------- An HTML attachment was scrubbed... URL: From nox at macports.org Fri Jan 1 12:40:54 2010 From: nox at macports.org (nox at macports.org) Date: Fri, 1 Jan 2010 12:40:54 -0800 (PST) Subject: [62246] trunk/dports/www/tidy/Portfile Message-ID: <20100101204055.245F13A17B05@beta.macosforge.org> Revision: 62246 http://trac.macports.org/changeset/62246 Author: nox at macports.org Date: 2010-01-01 12:40:53 -0800 (Fri, 01 Jan 2010) Log Message: ----------- Fix tidy livecheck Modified Paths: -------------- trunk/dports/www/tidy/Portfile Modified: trunk/dports/www/tidy/Portfile =================================================================== --- trunk/dports/www/tidy/Portfile 2010-01-01 20:40:43 UTC (rev 62245) +++ trunk/dports/www/tidy/Portfile 2010-01-01 20:40:53 UTC (rev 62246) @@ -42,8 +42,25 @@ system "ln -fs libtidy-0.99.0.0.0.dylib ${destroot}${prefix}/lib/libtidy.0.dylib" } -livecheck.type regex -livecheck.url [lindex ${master_sites} 1]?M=D -livecheck.regex tidy_src_(\\d+) -livecheck.version [strsed ${version} {/^[0-9][0-9]//}] +proc get_livecheck_version version { + set d [string range ${version} 6 7] + if {[string index ${d} 0] eq "0"} { + set d [string index ${d} 1] + } + set months { + January February March April May June July August September October + November December + } + set m [string range ${version} 4 5] + if {[string index ${m} 0] eq "0"} { + set m [string index ${m} 1] + } + return "${d} [lindex ${months} [expr ${m} - 1]] [string range ${version} 0 3]" +} +ui_msg [get_livecheck_version ${version}] + +livecheck.type regex +livecheck.url http://tidy.cvs.sourceforge.net/viewvc/*checkout*/tidy/tidy/src/version.h +livecheck.regex {"(.+)"} +eval livecheck.version [get_livecheck_version ${version}] -------------- next part -------------- An HTML attachment was scrubbed... URL: From nox at macports.org Fri Jan 1 12:41:05 2010 From: nox at macports.org (nox at macports.org) Date: Fri, 1 Jan 2010 12:41:05 -0800 (PST) Subject: [62247] trunk/dports/x11/tk/Portfile Message-ID: <20100101204105.44DD13A17B30@beta.macosforge.org> Revision: 62247 http://trac.macports.org/changeset/62247 Author: nox at macports.org Date: 2010-01-01 12:41:04 -0800 (Fri, 01 Jan 2010) Log Message: ----------- Fix tk livecheck Modified Paths: -------------- trunk/dports/x11/tk/Portfile Modified: trunk/dports/x11/tk/Portfile =================================================================== --- trunk/dports/x11/tk/Portfile 2010-01-01 20:40:53 UTC (rev 62246) +++ trunk/dports/x11/tk/Portfile 2010-01-01 20:41:04 UTC (rev 62247) @@ -65,6 +65,5 @@ configure.args-append tcl_cv_type_64bit="long long" } -livecheck.type sourceforge -livecheck.name tcl -livecheck.regex "(?i)tcl (\\d+(?:\\.\\d+)*) released.*" +livecheck.type regex +livecheck.regex {Tcl/Tk (\d+(?:\.\d+)*)} -------------- next part -------------- An HTML attachment was scrubbed... URL: From nox at macports.org Fri Jan 1 12:41:15 2010 From: nox at macports.org (nox at macports.org) Date: Fri, 1 Jan 2010 12:41:15 -0800 (PST) Subject: [62248] trunk/dports/java/xalanj/Portfile Message-ID: <20100101204115.B6CB73A17B5B@beta.macosforge.org> Revision: 62248 http://trac.macports.org/changeset/62248 Author: nox at macports.org Date: 2010-01-01 12:41:14 -0800 (Fri, 01 Jan 2010) Log Message: ----------- Fix xalanj livecheck Modified Paths: -------------- trunk/dports/java/xalanj/Portfile Modified: trunk/dports/java/xalanj/Portfile =================================================================== --- trunk/dports/java/xalanj/Portfile 2010-01-01 20:41:04 UTC (rev 62247) +++ trunk/dports/java/xalanj/Portfile 2010-01-01 20:41:14 UTC (rev 62248) @@ -43,3 +43,7 @@ ${destroot}${prefix}/share/java/ file copy ${worksrcpath}/build/docs ${destroot}${prefix}/share/doc/${name} } + +livecheck.type regex +livecheck.url ${homepage}whatsnew.html +livecheck.regex {Version (\d+(?:\.\d+)*)} -------------- next part -------------- An HTML attachment was scrubbed... URL: From nox at macports.org Fri Jan 1 12:41:26 2010 From: nox at macports.org (nox at macports.org) Date: Fri, 1 Jan 2010 12:41:26 -0800 (PST) Subject: [62249] trunk/dports/java/xercesj/Portfile Message-ID: <20100101204126.C50483A17B8A@beta.macosforge.org> Revision: 62249 http://trac.macports.org/changeset/62249 Author: nox at macports.org Date: 2010-01-01 12:41:25 -0800 (Fri, 01 Jan 2010) Log Message: ----------- Fix xercesj homepage and livecheck Modified Paths: -------------- trunk/dports/java/xercesj/Portfile Modified: trunk/dports/java/xercesj/Portfile =================================================================== --- trunk/dports/java/xercesj/Portfile 2010-01-01 20:41:14 UTC (rev 62248) +++ trunk/dports/java/xercesj/Portfile 2010-01-01 20:41:25 UTC (rev 62249) @@ -15,7 +15,7 @@ Core, Events, Traversal and Range\; \ SAX 2.0.1 Core and Extensions\; JAXP 1.2\; \ Schema 1.0 Structure and Datatypes. -homepage http://xml.apache.org/xerces-j/ +homepage http://xerces.apache.org/xerces2-j/ distname Xerces-J-src.${version} distfiles ${distname}${extract.suffix} \ @@ -52,3 +52,5 @@ ${destroot}${prefix}/share/java/ file copy ${worksrcpath}/build/docs ${destroot}${prefix}/share/doc/${name} } + +livecheck.name Xerces2 \ No newline at end of file -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Fri Jan 1 12:54:38 2010 From: portindex at macports.org (portindex at macports.org) Date: Fri, 1 Jan 2010 12:54:38 -0800 (PST) Subject: [62250] trunk/dports Message-ID: <20100101205440.D01483A17C42@beta.macosforge.org> Revision: 62250 http://trac.macports.org/changeset/62250 Author: portindex at macports.org Date: 2010-01-01 12:54:36 -0800 (Fri, 01 Jan 2010) Log Message: ----------- Total number of ports parsed: 6468 Ports successfully parsed: 6468 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex trunk/dports/PortIndex.quick Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-01 20:41:25 UTC (rev 62249) +++ trunk/dports/PortIndex 2010-01-01 20:54:36 UTC (rev 62250) @@ -3894,8 +3894,8 @@ depends_build bin:ant:apache-ant portdir java/xalanj description {Apache Xerces 2 Java XML Parser} homepage http://xml.apache.org/xalan-j/ depends_run port:xercesj epoch 0 platforms darwin depends_lib bin:java:kaffe name xalanj long_description {Xalan-Java is an XSLT processor for transforming XML documents into HTML, text, or other XML document types. It implements XSL Transformations (XSLT) Version 1.0 and XML Path Language (XPath) Version 1.0. It can be used from the command line, in an applet or a servlet, or as a module in other program.} maintainers {jberry openmaintainer} categories {java textproc} version 2.7.0 revision 1 xdoclet 656 depends_build {port:apache-ant port:maven} portdir java/xdoclet description {XDoclet is an open source code generation engine.} homepage http://xdoclet.sourceforge.net/xdoclet/ epoch 0 platforms darwin depends_lib {bin:java:kaffe port:commons-logging port:commons-lang port:junit} name xdoclet maintainers {stechert openmaintainer} long_description {XDoclet is an open source code generation engine. It enables Attribute-Oriented Programming for java. In short, this means that you can add more significance to your code by adding meta data (attributes) to your java sources. This is done in special JavaDoc tags.} categories java version 1.2.3 revision 1 -xercesj 535 -depends_build bin:ant:apache-ant portdir java/xercesj description {Apache Xerces 2 Java XML Parser} homepage http://xml.apache.org/xerces-j/ epoch 0 platforms darwin depends_lib bin:java:kaffe name xercesj maintainers {jberry openmaintainer} long_description {The Xerces 2 Java Parser supports XML 1.0 Third {Edition;} XML {1.1;} XML 1.1 {Namespaces;} DOM Level 2 Core, Events, Traversal and {Range;} SAX 2.0.1 Core and {Extensions;} JAXP {1.2;} Schema 1.0 Structure and Datatypes.} categories {java textproc} version 2.9.1 revision 0 +xercesj 539 +depends_build bin:ant:apache-ant portdir java/xercesj description {Apache Xerces 2 Java XML Parser} homepage http://xerces.apache.org/xerces2-j/ epoch 0 platforms darwin depends_lib bin:java:kaffe name xercesj maintainers {jberry openmaintainer} long_description {The Xerces 2 Java Parser supports XML 1.0 Third {Edition;} XML {1.1;} XML 1.1 {Namespaces;} DOM Level 2 Core, Events, Traversal and {Range;} SAX 2.0.1 Core and {Extensions;} JAXP {1.2;} Schema 1.0 Structure and Datatypes.} categories {java textproc} version 2.9.1 revision 0 xml-commons-resolver 1211 depends_build bin:ant:apache-ant portdir java/xml-commons-resolver description {Java library for XML entity resolution} homepage http://xml.apache.org/commons/components/resolver/index.html epoch 0 platforms darwin name xml-commons-resolver depends_lib bin:java:kaffe maintainers gmail.com:arankine long_description {It is very common for web resources to be related to other resources. These relationships are expressed using URIs, most often URLs. Relying on URLs to directly identify resources to be retrieved often causes problems for end users. One way to avoid these problems is to use an entity resolver (a standard part of SAX) or a URI Resolver (a standard part of JAXP). A resolver can examine the URIs of the resources being requested and determine how best to satisfy those requests. The best way to make this function in an interoperable way is to define a standard format for mapping system identifiers and URIs. These {catalog files} can be used to map public and system identifiers and other URIs to local files (or just other URIs). The XML Commons Resolver classes greatly simplify the task of using catalog files to perform entity resolution.} categories {java devel} version 1.1 revision 0 xmlenc 445 Modified: trunk/dports/PortIndex.quick =================================================================== (Binary files differ) -------------- next part -------------- An HTML attachment was scrubbed... URL: From jmr at macports.org Fri Jan 1 14:42:43 2010 From: jmr at macports.org (jmr at macports.org) Date: Fri, 1 Jan 2010 14:42:43 -0800 (PST) Subject: [62251] trunk/doc-new/guide/xml/project.xml Message-ID: <20100101224244.5F07F3A182F1@beta.macosforge.org> Revision: 62251 http://trac.macports.org/changeset/62251 Author: jmr at macports.org Date: 2010-01-01 14:42:40 -0800 (Fri, 01 Jan 2010) Log Message: ----------- guide: minor updates to ticket prerequisites section Modified Paths: -------------- trunk/doc-new/guide/xml/project.xml Modified: trunk/doc-new/guide/xml/project.xml =================================================================== --- trunk/doc-new/guide/xml/project.xml 2010-01-01 20:54:36 UTC (rev 62250) +++ trunk/doc-new/guide/xml/project.xml 2010-01-01 22:42:40 UTC (rev 62251) @@ -36,7 +36,7 @@ Avoid filing duplicate bugs. Search for duplicates by: using the search bar that appears on each page - using the search page + using the search page browsing the list of categorised reports making an advanced search by constructing a custom query @@ -55,7 +55,7 @@ Is the problem with a 'port upgrade' operation? If so, try a 'port uninstall foo' and - then reinstall. You might also want to run 'port -fR upgrade + then reinstall. You might also want to run 'port -nR upgrade --force foo' to rebuild ports depending upon port foo. -------------- next part -------------- An HTML attachment was scrubbed... URL: From adfernandes at macports.org Fri Jan 1 15:17:26 2010 From: adfernandes at macports.org (adfernandes at macports.org) Date: Fri, 1 Jan 2010 15:17:26 -0800 (PST) Subject: [62252] trunk/dports/science Message-ID: <20100101231727.834CE3A18556@beta.macosforge.org> Revision: 62252 http://trac.macports.org/changeset/62252 Author: adfernandes at macports.org Date: 2010-01-01 15:17:23 -0800 (Fri, 01 Jan 2010) Log Message: ----------- Closes #23088 - building for 64-bit SL and adds openmpi variant as per #21922 Modified Paths: -------------- trunk/dports/science/gromacs/Portfile trunk/dports/science/gromacs-double/Portfile Modified: trunk/dports/science/gromacs/Portfile =================================================================== --- trunk/dports/science/gromacs/Portfile 2010-01-01 22:42:40 UTC (rev 62251) +++ trunk/dports/science/gromacs/Portfile 2010-01-01 23:17:23 UTC (rev 62252) @@ -5,7 +5,7 @@ PortSystem 1.0 name gromacs version 4.0.5 -revision 2 +revision 3 categories science math maintainers adfernandes openmaintainer description The World's fastest Molecular Dynamics package @@ -35,6 +35,10 @@ configure.args --bindir=${prefix}/lib/${name}/bin --enable-shared --with-x +platform darwin 10 { + configure.args-append --enable-apple-64bit +} + variant no_x11 { depends_lib-delete port:openmotif configure.args-delete --with-x @@ -46,6 +50,11 @@ configure.args-append --with-gsl } +variant openmpi description {build using openmpi parallelization} { + depends_lib-append port:openmpi + configure.args-append --enable-mpi +} + if { ![variant_isset gcc42] && ![variant_isset gcc43] && ![variant_isset gcc44] } { default_variants-append +gcc44 } Modified: trunk/dports/science/gromacs-double/Portfile =================================================================== --- trunk/dports/science/gromacs-double/Portfile 2010-01-01 22:42:40 UTC (rev 62251) +++ trunk/dports/science/gromacs-double/Portfile 2010-01-01 23:17:23 UTC (rev 62252) @@ -5,7 +5,7 @@ PortSystem 1.0 name gromacs-double version 4.0.5 -revision 2 +revision 3 categories science math maintainers adfernandes openmaintainer description The World's fastest Molecular Dynamics package (double-precision) @@ -34,6 +34,10 @@ configure.args --bindir=${prefix}/lib/${name}/bin --enable-shared --with-x --enable-double +platform darwin 10 { + configure.args-append --enable-apple-64bit +} + variant no_x11 { depends_lib-delete port:openmotif configure.args-delete --with-x @@ -45,6 +49,11 @@ configure.args-append --with-gsl } +variant openmpi description {build using openmpi parallelization} { + depends_lib-append port:openmpi + configure.args-append --enable-mpi +} + if { ![variant_isset gcc42] && ![variant_isset gcc43] && ![variant_isset gcc44] } { default_variants-append +gcc44 } -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Fri Jan 1 15:54:39 2010 From: portindex at macports.org (portindex at macports.org) Date: Fri, 1 Jan 2010 15:54:39 -0800 (PST) Subject: [62253] trunk/dports Message-ID: <20100101235441.BF7D13A188D8@beta.macosforge.org> Revision: 62253 http://trac.macports.org/changeset/62253 Author: portindex at macports.org Date: 2010-01-01 15:54:36 -0800 (Fri, 01 Jan 2010) Log Message: ----------- Total number of ports parsed: 6468 Ports successfully parsed: 6468 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex trunk/dports/PortIndex.quick Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-01 23:17:23 UTC (rev 62252) +++ trunk/dports/PortIndex 2010-01-01 23:54:36 UTC (rev 62253) @@ -10342,10 +10342,10 @@ variants universal depends_build {port:ImageMagick bin:tex:texlive port:ghostscript path:bin/perl:perl5} portdir science/gri description {A scientific graphics programming language} homepage http://gri.sourceforge.net epoch 0 platforms darwin name gri long_description {Gri is a language for scientific graphics programming. The word language is important: Gri is command-driven, not point/click. Some users consider Gri similar to LaTeX, since both provide extensive power in exchange for patience in learning syntax. Gri can make x-y graphs, contour graphs, and image graphs, in PostScript and (someday) SVG formats. Control is provided over all aspects of drawing, e.g. line widths, colors, and fonts. A TeX-like syntax provides common mathematical symbols.} maintainers {dal.ca:dan.kelley neu.edu:j.stalnaker} categories {science graphics} version 2.12.18 revision 0 grib_api 618 variants {gcc43 g95 universal} depends_build port:emos portdir science/grib_api description {GRIB decoder} homepage http://www.ecmwf.int/products/data/software/grib_api.html epoch 0 platforms darwin name grib_api depends_lib {port:jasper port:openjpeg port:libpng} long_description {The ECMWF GRIB API is an application program interface accessible from C and FORTRAN programs developed for encoding and decoding WMO FM-92 GRIB edition 1 and edition 2 messages. A useful set of command line tools is also provided to give quick access to grib messages.} maintainers takeshi categories science version 1.8.0 revision 0 -gromacs 829 -variants {no_x11 gsl gcc42 gcc43 gcc44 universal} portdir science/gromacs description {The World's fastest Molecular Dynamics package} homepage http://www.gromacs.org/ epoch 0 platforms darwin name gromacs depends_lib port:gcc44 long_description {GROMACS is a versatile package to perform molecular dynamics, i.e. simulate the Newtonian equations of motion for systems with hundreds to millions of particles. It is primarily designed for biochemical molecules like proteins and lipids that have a lot of complicated bonded interactions, but since GROMACS is extremely fast at calculating the nonbonded interactions (that usually dominate simulations) many groups are also using it for research on non-biological systems, e.g. polymers.} maintainers {adfernandes openmaintainer} categories {science math} version 4.0.5 revision 2 -gromacs-double 881 -variants {no_x11 gsl gcc42 gcc43 gcc44 universal} portdir science/gromacs-double description {The World's fastest Molecular Dynamics package (double-precision)} homepage http://www.gromacs.org/ epoch 0 platforms darwin name gromacs-double depends_lib port:gcc44 long_description {GROMACS is a versatile package to perform molecular dynamics, i.e. simulate the Newtonian equations of motion for systems with hundreds to millions of particles. It is primarily designed for biochemical molecules like proteins and lipids that have a lot of complicated bonded interactions, but since GROMACS is extremely fast at calculating the nonbonded interactions (that usually dominate simulations) many groups are also using it for research on non-biological systems, e.g. polymers (double-precision).} maintainers {adfernandes openmaintainer} categories {science math} version 4.0.5 revision 2 +gromacs 847 +variants {darwin_10 no_x11 gsl openmpi gcc42 gcc43 gcc44 universal} portdir science/gromacs description {The World's fastest Molecular Dynamics package} homepage http://www.gromacs.org/ epoch 0 platforms darwin name gromacs depends_lib port:gcc44 long_description {GROMACS is a versatile package to perform molecular dynamics, i.e. simulate the Newtonian equations of motion for systems with hundreds to millions of particles. It is primarily designed for biochemical molecules like proteins and lipids that have a lot of complicated bonded interactions, but since GROMACS is extremely fast at calculating the nonbonded interactions (that usually dominate simulations) many groups are also using it for research on non-biological systems, e.g. polymers.} maintainers {adfernandes openmaintainer} categories {science math} version 4.0.5 revision 3 +gromacs-double 899 +variants {darwin_10 no_x11 gsl openmpi gcc42 gcc43 gcc44 universal} portdir science/gromacs-double description {The World's fastest Molecular Dynamics package (double-precision)} homepage http://www.gromacs.org/ epoch 0 platforms darwin name gromacs-double depends_lib port:gcc44 long_description {GROMACS is a versatile package to perform molecular dynamics, i.e. simulate the Newtonian equations of motion for systems with hundreds to millions of particles. It is primarily designed for biochemical molecules like proteins and lipids that have a lot of complicated bonded interactions, but since GROMACS is extremely fast at calculating the nonbonded interactions (that usually dominate simulations) many groups are also using it for research on non-biological systems, e.g. polymers (double-precision).} maintainers {adfernandes openmaintainer} categories {science math} version 4.0.5 revision 3 gvemod-cplxview 565 variants {darwin_9 universal} portdir science/gvemod-cplxview description {a Geomview plugin for the visualisation of complex functions} homepage http://www.geomview.org/ epoch 0 platforms darwin name gvemod-cplxview depends_lib {port:geomview port:xforms} long_description {This is the Cplxview emodule, a Geomview plugin for the visualisation of complex functions. emodules are kind of plugins which extend the functionality of Geomview (an interactive 3d viewing program).} maintainers ira.uka.de:raphael categories {science graphics x11} version 0.2 revision 0 gvemod-crayola 590 Modified: trunk/dports/PortIndex.quick =================================================================== (Binary files differ) -------------- next part -------------- An HTML attachment was scrubbed... URL: From adfernandes at macports.org Fri Jan 1 20:54:19 2010 From: adfernandes at macports.org (adfernandes at macports.org) Date: Fri, 1 Jan 2010 20:54:19 -0800 (PST) Subject: [62254] trunk/dports/science Message-ID: <20100102045421.0D5AE3A199B1@beta.macosforge.org> Revision: 62254 http://trac.macports.org/changeset/62254 Author: adfernandes at macports.org Date: 2010-01-01 20:54:14 -0800 (Fri, 01 Jan 2010) Log Message: ----------- Closes #23093; Version bump; autodetects 64-bit builds; Added support for muniversal portgroup; No patches required now Modified Paths: -------------- trunk/dports/science/gromacs/Portfile trunk/dports/science/gromacs-double/Portfile Removed Paths: ------------- trunk/dports/science/gromacs/files/ Modified: trunk/dports/science/gromacs/Portfile =================================================================== --- trunk/dports/science/gromacs/Portfile 2010-01-01 23:54:36 UTC (rev 62253) +++ trunk/dports/science/gromacs/Portfile 2010-01-02 04:54:14 UTC (rev 62254) @@ -3,9 +3,10 @@ # Important: keep in sync with the 'gromacs-double' port! PortSystem 1.0 +PortGroup muniversal 1.0 name gromacs -version 4.0.5 -revision 3 +version 4.0.7 +revision 1 categories science math maintainers adfernandes openmaintainer description The World's fastest Molecular Dynamics package @@ -25,20 +26,12 @@ master_sites ftp://ftp.gromacs.org/pub/gromacs \ http://cluster.earlham.edu/detail/home/charliep/packages -checksums sha1 9969aae6f77e2216add22a7b29805c4de8df649f +checksums sha1 8519bef2fa989fb487d54612b0a2d0228f228b30 -patchfiles ffG53aX_rtp.diff - # Fixes a typo in the .rtp file for ffG53a6 and ffG53a5 in Gromacs versions up to (and including) version 4.0.5. - # See http://www.bevanlab.biochem.vt.edu/Pages/Personal/justin/gmx-tutorials/membrane_protein/01_pdb2gmx.html - depends_lib port:fftw-3-single port:libxml2 port:openmotif configure.args --bindir=${prefix}/lib/${name}/bin --enable-shared --with-x -platform darwin 10 { - configure.args-append --enable-apple-64bit -} - variant no_x11 { depends_lib-delete port:openmotif configure.args-delete --with-x Modified: trunk/dports/science/gromacs-double/Portfile =================================================================== --- trunk/dports/science/gromacs-double/Portfile 2010-01-01 23:54:36 UTC (rev 62253) +++ trunk/dports/science/gromacs-double/Portfile 2010-01-02 04:54:14 UTC (rev 62254) @@ -3,9 +3,10 @@ # Important: keep in sync with the 'gromacs' port! PortSystem 1.0 +PortGroup muniversal 1.0 name gromacs-double -version 4.0.5 -revision 3 +version 4.0.7 +revision 1 categories science math maintainers adfernandes openmaintainer description The World's fastest Molecular Dynamics package (double-precision) @@ -25,19 +26,12 @@ master_sites ftp://ftp.gromacs.org/pub/gromacs \ http://cluster.earlham.edu/detail/home/charliep/packages -checksums sha1 9969aae6f77e2216add22a7b29805c4de8df649f +checksums sha1 8519bef2fa989fb487d54612b0a2d0228f228b30 -# Currently, no patchfiles are needed since the only patch is in -# a data file for the dependent gromacs (single-precision) port. - depends_lib port:fftw-3 port:libxml2 port:openmotif port:gromacs configure.args --bindir=${prefix}/lib/${name}/bin --enable-shared --with-x --enable-double -platform darwin 10 { - configure.args-append --enable-apple-64bit -} - variant no_x11 { depends_lib-delete port:openmotif configure.args-delete --with-x -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Fri Jan 1 21:56:04 2010 From: portindex at macports.org (portindex at macports.org) Date: Fri, 1 Jan 2010 21:56:04 -0800 (PST) Subject: [62255] trunk/dports Message-ID: <20100102055607.4987F3A19EC4@beta.macosforge.org> Revision: 62255 http://trac.macports.org/changeset/62255 Author: portindex at macports.org Date: 2010-01-01 21:56:02 -0800 (Fri, 01 Jan 2010) Log Message: ----------- Total number of ports parsed: 6468 Ports successfully parsed: 6468 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex trunk/dports/PortIndex.quick Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-02 04:54:14 UTC (rev 62254) +++ trunk/dports/PortIndex 2010-01-02 05:56:02 UTC (rev 62255) @@ -10342,10 +10342,10 @@ variants universal depends_build {port:ImageMagick bin:tex:texlive port:ghostscript path:bin/perl:perl5} portdir science/gri description {A scientific graphics programming language} homepage http://gri.sourceforge.net epoch 0 platforms darwin name gri long_description {Gri is a language for scientific graphics programming. The word language is important: Gri is command-driven, not point/click. Some users consider Gri similar to LaTeX, since both provide extensive power in exchange for patience in learning syntax. Gri can make x-y graphs, contour graphs, and image graphs, in PostScript and (someday) SVG formats. Control is provided over all aspects of drawing, e.g. line widths, colors, and fonts. A TeX-like syntax provides common mathematical symbols.} maintainers {dal.ca:dan.kelley neu.edu:j.stalnaker} categories {science graphics} version 2.12.18 revision 0 grib_api 618 variants {gcc43 g95 universal} depends_build port:emos portdir science/grib_api description {GRIB decoder} homepage http://www.ecmwf.int/products/data/software/grib_api.html epoch 0 platforms darwin name grib_api depends_lib {port:jasper port:openjpeg port:libpng} long_description {The ECMWF GRIB API is an application program interface accessible from C and FORTRAN programs developed for encoding and decoding WMO FM-92 GRIB edition 1 and edition 2 messages. A useful set of command line tools is also provided to give quick access to grib messages.} maintainers takeshi categories science version 1.8.0 revision 0 -gromacs 847 -variants {darwin_10 no_x11 gsl openmpi gcc42 gcc43 gcc44 universal} portdir science/gromacs description {The World's fastest Molecular Dynamics package} homepage http://www.gromacs.org/ epoch 0 platforms darwin name gromacs depends_lib port:gcc44 long_description {GROMACS is a versatile package to perform molecular dynamics, i.e. simulate the Newtonian equations of motion for systems with hundreds to millions of particles. It is primarily designed for biochemical molecules like proteins and lipids that have a lot of complicated bonded interactions, but since GROMACS is extremely fast at calculating the nonbonded interactions (that usually dominate simulations) many groups are also using it for research on non-biological systems, e.g. polymers.} maintainers {adfernandes openmaintainer} categories {science math} version 4.0.5 revision 3 -gromacs-double 899 -variants {darwin_10 no_x11 gsl openmpi gcc42 gcc43 gcc44 universal} portdir science/gromacs-double description {The World's fastest Molecular Dynamics package (double-precision)} homepage http://www.gromacs.org/ epoch 0 platforms darwin name gromacs-double depends_lib port:gcc44 long_description {GROMACS is a versatile package to perform molecular dynamics, i.e. simulate the Newtonian equations of motion for systems with hundreds to millions of particles. It is primarily designed for biochemical molecules like proteins and lipids that have a lot of complicated bonded interactions, but since GROMACS is extremely fast at calculating the nonbonded interactions (that usually dominate simulations) many groups are also using it for research on non-biological systems, e.g. polymers (double-precision).} maintainers {adfernandes openmaintainer} categories {science math} version 4.0.5 revision 3 +gromacs 837 +variants {universal no_x11 gsl openmpi gcc42 gcc43 gcc44} portdir science/gromacs description {The World's fastest Molecular Dynamics package} homepage http://www.gromacs.org/ epoch 0 platforms darwin depends_lib port:gcc44 name gromacs long_description {GROMACS is a versatile package to perform molecular dynamics, i.e. simulate the Newtonian equations of motion for systems with hundreds to millions of particles. It is primarily designed for biochemical molecules like proteins and lipids that have a lot of complicated bonded interactions, but since GROMACS is extremely fast at calculating the nonbonded interactions (that usually dominate simulations) many groups are also using it for research on non-biological systems, e.g. polymers.} maintainers {adfernandes openmaintainer} categories {science math} version 4.0.7 revision 1 +gromacs-double 889 +variants {universal no_x11 gsl openmpi gcc42 gcc43 gcc44} portdir science/gromacs-double description {The World's fastest Molecular Dynamics package (double-precision)} homepage http://www.gromacs.org/ epoch 0 platforms darwin depends_lib port:gcc44 name gromacs-double long_description {GROMACS is a versatile package to perform molecular dynamics, i.e. simulate the Newtonian equations of motion for systems with hundreds to millions of particles. It is primarily designed for biochemical molecules like proteins and lipids that have a lot of complicated bonded interactions, but since GROMACS is extremely fast at calculating the nonbonded interactions (that usually dominate simulations) many groups are also using it for research on non-biological systems, e.g. polymers (double-precision).} maintainers {adfernandes openmaintainer} categories {science math} version 4.0.7 revision 1 gvemod-cplxview 565 variants {darwin_9 universal} portdir science/gvemod-cplxview description {a Geomview plugin for the visualisation of complex functions} homepage http://www.geomview.org/ epoch 0 platforms darwin name gvemod-cplxview depends_lib {port:geomview port:xforms} long_description {This is the Cplxview emodule, a Geomview plugin for the visualisation of complex functions. emodules are kind of plugins which extend the functionality of Geomview (an interactive 3d viewing program).} maintainers ira.uka.de:raphael categories {science graphics x11} version 0.2 revision 0 gvemod-crayola 590 Modified: trunk/dports/PortIndex.quick =================================================================== (Binary files differ) -------------- next part -------------- An HTML attachment was scrubbed... URL: From jmr at macports.org Fri Jan 1 22:11:09 2010 From: jmr at macports.org (jmr at macports.org) Date: Fri, 1 Jan 2010 22:11:09 -0800 (PST) Subject: [62256] trunk/www/includes/common.inc Message-ID: <20100102061110.4459A3A19FCE@beta.macosforge.org> Revision: 62256 http://trac.macports.org/changeset/62256 Author: jmr at macports.org Date: 2010-01-01 22:11:06 -0800 (Fri, 01 Jan 2010) Log Message: ----------- www: bump release version to 1.8.2 Modified Paths: -------------- trunk/www/includes/common.inc Modified: trunk/www/includes/common.inc =================================================================== --- trunk/www/includes/common.inc 2010-01-02 05:56:02 UTC (rev 62255) +++ trunk/www/includes/common.inc 2010-01-02 06:11:06 UTC (rev 62256) @@ -9,7 +9,7 @@ ###################################################################### # MacPorts version variables: -$macports_version_latest = '1.8.1'; +$macports_version_latest = '1.8.2'; ###################################################################### -------------- next part -------------- An HTML attachment was scrubbed... URL: From noreply at macports.org Sat Jan 2 01:55:54 2010 From: noreply at macports.org (MacPorts) Date: Sat, 02 Jan 2010 09:55:54 -0000 Subject: [MacPorts] UsingTheRightCompiler modified Message-ID: <20100102095554.D43097EC430F@mail-out3.apple.com> Changed page "UsingTheRightCompiler" by ryandesign at macports.org from 70.253.75.177* Page URL: Diff URL: Revision 7 Comment: update for 10.6 -------8<------8<------8<------8<------8<------8<------8<------8<-------- Index: UsingTheRightCompiler ========================================================================= --- UsingTheRightCompiler (version: 6) +++ UsingTheRightCompiler (version: 7) @@ -4,7 +4,7 @@ and the various versions of Xcode for Mac OS X come with different versions of gcc. For example, with Xcode 2.5 on Mac OS X 10.4, gcc 3.3 and 4.0 are available, with 4.0 being the default. With Xcode 3.1 on Mac OS X 10.5, gcc 4.2 is also available; -this might become the default in a future version of Mac OS X. +with Xcode 3.2 on Mac OS X 10.6, gcc 4.2 is the default compiler. = The problem with the default compiler = #default-compiler -------8<------8<------8<------8<------8<------8<------8<------8<-------- * The IP shown here might not mean anything if the user or the server is behind a proxy. -- MacPorts Ports system for Mac OS This is an automated message. Someone at http://www.macports.org/ added your email address to be notified of changes on UsingTheRightCompiler. If it was not you, please report to . From ryandesign at macports.org Sat Jan 2 04:21:55 2010 From: ryandesign at macports.org (ryandesign at macports.org) Date: Sat, 2 Jan 2010 04:21:55 -0800 (PST) Subject: [62257] trunk/dports/security/aircrack-ng/Portfile Message-ID: <20100102122156.5E8913A1CCC7@beta.macosforge.org> Revision: 62257 http://trac.macports.org/changeset/62257 Author: ryandesign at macports.org Date: 2010-01-02 04:21:51 -0800 (Sat, 02 Jan 2010) Log Message: ----------- aircrack-ng: use gmake to fix build on Tiger; see #23099 Modified Paths: -------------- trunk/dports/security/aircrack-ng/Portfile Modified: trunk/dports/security/aircrack-ng/Portfile =================================================================== --- trunk/dports/security/aircrack-ng/Portfile 2010-01-02 06:11:06 UTC (rev 62256) +++ trunk/dports/security/aircrack-ng/Portfile 2010-01-02 12:21:51 UTC (rev 62257) @@ -21,6 +21,8 @@ sha1 8a3c5b8e322ea11e5559109a9f9d668ad6aee5f0 \ rmd160 e8360aabbec1e7e038f86579e1004234f0899409 +build.cmd ${prefix}/bin/gmake + post-patch { reinplace s@/usr/local@${prefix}@ ${worksrcpath}/common.mak reinplace s/-Werror// ${worksrcpath}/common.mak @@ -31,6 +33,9 @@ ${worksrcpath}/src/sha1-sse2.h } +depends_build \ + port:gmake + depends_lib \ port:openssl -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Sat Jan 2 04:55:05 2010 From: portindex at macports.org (portindex at macports.org) Date: Sat, 2 Jan 2010 04:55:05 -0800 (PST) Subject: [62258] trunk/dports Message-ID: <20100102125508.5B6A23A1D27F@beta.macosforge.org> Revision: 62258 http://trac.macports.org/changeset/62258 Author: portindex at macports.org Date: 2010-01-02 04:55:03 -0800 (Sat, 02 Jan 2010) Log Message: ----------- Total number of ports parsed: 6468 Ports successfully parsed: 6468 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex trunk/dports/PortIndex.quick Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-02 12:21:51 UTC (rev 62257) +++ trunk/dports/PortIndex 2010-01-02 12:55:03 UTC (rev 62258) @@ -10558,8 +10558,8 @@ variants universal depends_build port:bison portdir security/aide description {Advanced Intrusion Detection Environment} homepage http://www.cs.tut.fi/~rammer/aide.html epoch 0 platforms darwin depends_lib {port:mhash port:gettext} name aide long_description {AIDE (Advanced Intrusion Detection Environment) is a free replacement for Tripwire. It does the same things as the semi-free Tripwire and more. It creates a database from the regular expression rules that it finds from the config file. Once this database is initialized it can be used to verify the integrity of the files. It has several message digest algorithms (md5,sha1,rmd160,tiger,haval,etc.) that are used to check the integrity of the file. More algorithms can be added with relative ease. All of the usual file attributes can also be checked for inconsistencies. It can read databases from older or newer versions. See the manual pages within the distribution for further info. There is also a beginning of a manual.} maintainers nomaintainer categories security version 0.13.1 revision 0 aimage 415 variants universal portdir security/aimage description {The Advanced Disk Imager} homepage http://www.afflib.org/ epoch 0 platforms darwin name aimage depends_lib {port:libewf port:afflib port:openssl port:zlib} long_description {AFF(R) is an open and extensible file format designed to store disk images and associated metadata.} maintainers darkart.com:opendarwin.org categories security version 3.2.1 revision 0 -aircrack-ng 658 -portdir security/aircrack-ng description {Aircrack-ng is the next generation of aircrack with lots of new features} homepage http://aircrack-ng.org epoch 0 platforms darwin name aircrack-ng depends_lib port:openssl maintainers nomaintainer long_description {aircrack is an 802.11 WEP and WPA-PSK keys cracking program that can recover keys once enough data packets have been captured. It implements the standard FMS attack along with some optimizations like KoreK attacks, thus making the attack much faster compared to other WEP cracking tools. In fact, aircrack is a set of tools for auditing wireless networks.} categories security version 1.0 revision 0 +aircrack-ng 683 +depends_build port:gmake portdir security/aircrack-ng description {Aircrack-ng is the next generation of aircrack with lots of new features} homepage http://aircrack-ng.org epoch 0 platforms darwin depends_lib port:openssl name aircrack-ng maintainers nomaintainer long_description {aircrack is an 802.11 WEP and WPA-PSK keys cracking program that can recover keys once enough data packets have been captured. It implements the standard FMS attack along with some optimizations like KoreK attacks, thus making the attack much faster compared to other WEP cracking tools. In fact, aircrack is a set of tools for auditing wireless networks.} categories security version 1.0 revision 0 apg 540 portdir security/apg description {tool set for random password generation} homepage http://www.adel.nursat.kz/apg/ epoch 0 platforms darwin name apg depends_lib lib:crypto:openssl maintainers css long_description {APG generates random passwords. Its pronounceable password generation algorithm conforms to NIST FIPS 181, and its random character algorithm has 35 configurable modes. APG supports ANSI X9.17 random number generation (CAST/SHA1) with a built-in password quality checking system.} categories security version 2.2.3 revision 0 authforce 768 Modified: trunk/dports/PortIndex.quick =================================================================== (Binary files differ) -------------- next part -------------- An HTML attachment was scrubbed... URL: From akitada at macports.org Sat Jan 2 05:03:23 2010 From: akitada at macports.org (akitada at macports.org) Date: Sat, 2 Jan 2010 05:03:23 -0800 (PST) Subject: [62259] trunk/dports/python/py26-memcached/Portfile Message-ID: <20100102130324.8B81E3A1D32A@beta.macosforge.org> Revision: 62259 http://trac.macports.org/changeset/62259 Author: akitada at macports.org Date: 2010-01-02 05:03:21 -0800 (Sat, 02 Jan 2010) Log Message: ----------- Updated py26-memcached to 1.45 release. Modified Paths: -------------- trunk/dports/python/py26-memcached/Portfile Modified: trunk/dports/python/py26-memcached/Portfile =================================================================== --- trunk/dports/python/py26-memcached/Portfile 2010-01-02 12:55:03 UTC (rev 62258) +++ trunk/dports/python/py26-memcached/Portfile 2010-01-02 13:03:21 UTC (rev 62259) @@ -5,7 +5,7 @@ PortGroup python26 1.0 name py26-memcached -version 1.44 +version 1.45 categories python devel net platforms darwin maintainers akitada openmaintainer @@ -18,9 +18,9 @@ homepage http://www.tummy.com/Community/software/python-memcached/ master_sites ftp://ftp.tummy.com/pub/python-memcached/old-releases/ -checksums md5 03c74e39a9598f27ba5e3c3f714d04cf \ - sha1 951b70f8f9b0bd3835523abd1d58d0c3c5d951a3 \ - rmd160 b22bf24d5275342e5a8987687bb878e230127d99 +checksums md5 8ced76d87f13bc0a3a1b6c343ae83413 \ + sha1 869919041c85bb1215108b928b724a0cfb404706 \ + rmd160 12db87c5ccfcd30c27b05977226f52f6738ed878 distname python-memcached-${version} depends_build port:py26-setuptools -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Sat Jan 2 05:54:50 2010 From: portindex at macports.org (portindex at macports.org) Date: Sat, 2 Jan 2010 05:54:50 -0800 (PST) Subject: [62260] trunk/dports/PortIndex Message-ID: <20100102135452.573CE3A1DDA1@beta.macosforge.org> Revision: 62260 http://trac.macports.org/changeset/62260 Author: portindex at macports.org Date: 2010-01-02 05:54:47 -0800 (Sat, 02 Jan 2010) Log Message: ----------- Total number of ports parsed: 6468 Ports successfully parsed: 6468 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-02 13:03:21 UTC (rev 62259) +++ trunk/dports/PortIndex 2010-01-02 13:54:47 UTC (rev 62260) @@ -9435,7 +9435,7 @@ py26-mechanize 415 portdir python/py26-mechanize description {Stateful programmatic web browsing} homepage http://wwwsearch.sourceforge.net/mechanize epoch 0 platforms darwin depends_lib {port:python26 port:py26-clientform} name py26-mechanize maintainers {openmaintainer krischik} long_description {Stateful programmatic web browsing, after Andy Lester's Perl module WWW::Mechanize.} version 0.1.9 categories {python www} revision 0 py26-memcached 596 -depends_build port:py26-setuptools portdir python/py26-memcached description {Pure python memcached client} homepage http://www.tummy.com/Community/software/python-memcached/ epoch 0 platforms darwin depends_lib port:python26 name py26-memcached maintainers {akitada openmaintainer} long_description {This software is a 100% Python interface to the memcached memory cache daemon. It is the client side software which allows storing values in one or more, possibly remote, memcached servers. Search google for memcached for more information.} version 1.44 categories {python devel net} revision 0 +depends_build port:py26-setuptools portdir python/py26-memcached description {Pure python memcached client} homepage http://www.tummy.com/Community/software/python-memcached/ epoch 0 platforms darwin depends_lib port:python26 name py26-memcached maintainers {akitada openmaintainer} long_description {This software is a 100% Python interface to the memcached memory cache daemon. It is the client side software which allows storing values in one or more, possibly remote, memcached servers. Search google for memcached for more information.} version 1.45 categories {python devel net} revision 0 py26-midgard2 360 portdir python/py26-midgard2 description {Python interface to the Midgard content repository} homepage http://www.midgard-project.org/ epoch 0 platforms darwin depends_lib {port:midgard2-core port:py26-gobject} name py26-midgard2 maintainers jwa long_description {Python interface to the Midgard content repository} version 9.09.1 categories python revision 0 py26-minfx 355 -------------- next part -------------- An HTML attachment was scrubbed... URL: From snc at macports.org Sat Jan 2 11:03:42 2010 From: snc at macports.org (snc at macports.org) Date: Sat, 2 Jan 2010 11:03:42 -0800 (PST) Subject: [62261] trunk/dports/mail/imap-uw/Portfile Message-ID: <20100102190343.36C7B3A220F2@beta.macosforge.org> Revision: 62261 http://trac.macports.org/changeset/62261 Author: snc at macports.org Date: 2010-01-02 11:03:38 -0800 (Sat, 02 Jan 2010) Log Message: ----------- add mix variant, #23090 Modified Paths: -------------- trunk/dports/mail/imap-uw/Portfile Modified: trunk/dports/mail/imap-uw/Portfile =================================================================== --- trunk/dports/mail/imap-uw/Portfile 2010-01-02 13:54:47 UTC (rev 62260) +++ trunk/dports/mail/imap-uw/Portfile 2010-01-02 19:03:38 UTC (rev 62261) @@ -82,10 +82,15 @@ } # Variant to set the default for creating new mailboxes to "mbx" format -variant mbx description { default new mailboxes to "mbx" format } { +variant mbx conflicts mix description { default new mailboxes to "mbx" format } { build.args-append CREATEPROTO=mbxproto } +# Variant to set the default for creating new mailboxes to "mix" format +variant mix conflicts mbx description { default new mailboxes to "mix" format } { + build.args-append CREATEPROTO=mixproto +} + # Variant to set the default mail subdirectory name to "Mail" variant subdir description { set "Mail" as subdirectory name } { patchfiles-append patch-env_unix.c.diff -------------- next part -------------- An HTML attachment was scrubbed... URL: From macsforever2000 at macports.org Sat Jan 2 11:08:18 2010 From: macsforever2000 at macports.org (macsforever2000 at macports.org) Date: Sat, 2 Jan 2010 11:08:18 -0800 (PST) Subject: [62262] trunk/dports/lang/clojure Message-ID: <20100102190818.4ACDE3A22198@beta.macosforge.org> Revision: 62262 http://trac.macports.org/changeset/62262 Author: macsforever2000 at macports.org Date: 2010-01-02 11:08:16 -0800 (Sat, 02 Jan 2010) Log Message: ----------- Update to version 1.1. (#23081) Modified Paths: -------------- trunk/dports/lang/clojure/Portfile trunk/dports/lang/clojure/files/clj-jline.sh trunk/dports/lang/clojure/files/clj-rlwrap.sh trunk/dports/lang/clojure/files/clj.sh Modified: trunk/dports/lang/clojure/Portfile =================================================================== --- trunk/dports/lang/clojure/Portfile 2010-01-02 19:03:38 UTC (rev 62261) +++ trunk/dports/lang/clojure/Portfile 2010-01-02 19:08:16 UTC (rev 62262) @@ -4,9 +4,8 @@ name clojure conflicts clojure-devel -version 1.0.0 -epoch 20090504 -revision 1 +version 1.1.0 +epoch 20091231 categories lang java maintainers gmail.com:mdippery description The Clojure programming language @@ -20,10 +19,10 @@ distname clojure_${version} master_sites googlecode:clojure -checksums md5 e7a50129040df7fe52287006988ecbb2 \ - sha1 fa7c03be9b30e9462b71aead03ea4487c6b9aeac \ - rmd160 cb4533bf24c96613cfa3a1643cafa2b689c32f83 -distname ${name}_${version} +checksums md5 9c9e92f85351721b76f40578f5c1a94a \ + sha1 c253dd52734a008321a1db34439744a6d02587ea \ + rmd160 8cb486181edf2a8e8d9ea061602d396304e503c4 +distname ${name}-${version} use_zip yes use_configure no @@ -38,13 +37,12 @@ } destroot { - set javadir ${destroot}${prefix}/share/java + set javadir ${prefix}/share/java set clojuredir ${javadir}/clojure - set clojurejar ${clojuredir}/lib/clojure.jar - set clojurebin ${clojuredir}/bin/clj - set clojurelink ${prefix}/share/java/clojure/bin/clj + set clojurelibdir ${clojuredir}/lib + set clojurebindir ${clojuredir}/bin + set clojurebin ${clojurebindir}/clj set clojuresh clj.sh - set bindir ${destroot}${prefix}/bin if {[variant_isset readline]} { set clojuresh clj-jline.sh @@ -54,16 +52,16 @@ set clojuresh clj-rlwrap.sh } - xinstall -m 0755 -d ${javadir} - xinstall -m 0755 -d ${clojuredir} - xinstall -m 0755 -d ${clojuredir}/lib - xinstall -m 0755 -d ${clojuredir}/bin - xinstall -m 0644 -W ${workpath} clojure-${version}.jar ${clojurejar} - xinstall -m 0755 -W ${filespath} ${clojuresh} ${clojurebin} + xinstall -m 0755 -d ${destroot}${javadir} + xinstall -m 0755 -d ${destroot}${clojuredir} + xinstall -m 0755 -d ${destroot}${clojurelibdir} + xinstall -m 0755 -d ${destroot}${clojurebindir} + xinstall -m 0644 -W ${workpath} clojure-${version}/clojure.jar ${destroot}${clojurelibdir}/clojure.jar + xinstall -m 0755 -W ${filespath} ${clojuresh} ${destroot}${clojurebin} if {[variant_isset rlwrap]} { - xinstall -m 0644 -W ${filespath} .clj_completions ${clojuredir}/.clj_completions + xinstall -m 0644 -W ${filespath} .clj_completions ${destroot}${clojuredir}/.clj_completions } - ln -s ${clojurelink} ${bindir}/clj + ln -s ${clojurebin} ${destroot}${prefix}/bin/clj } Modified: trunk/dports/lang/clojure/files/clj-jline.sh =================================================================== --- trunk/dports/lang/clojure/files/clj-jline.sh 2010-01-02 19:03:38 UTC (rev 62261) +++ trunk/dports/lang/clojure/files/clj-jline.sh 2010-01-02 19:08:16 UTC (rev 62262) @@ -4,8 +4,7 @@ cljjar='lib/clojure.jar' -cljclass='clojure.lang.Repl' -cljscript='clojure.lang.Script' +cljclass='clojure.main' jlineclass='jline.ConsoleRunner' dir=$0 @@ -36,5 +35,5 @@ exec java -classpath $cp $jlineclass $cljclass else scriptname=$1 - exec java -classpath $cp $jlineclass $cljscript $scriptname --$* + exec java -classpath $cp $jlineclass $cljclass $scriptname -- $* fi Modified: trunk/dports/lang/clojure/files/clj-rlwrap.sh =================================================================== --- trunk/dports/lang/clojure/files/clj-rlwrap.sh 2010-01-02 19:03:38 UTC (rev 62261) +++ trunk/dports/lang/clojure/files/clj-rlwrap.sh 2010-01-02 19:08:16 UTC (rev 62262) @@ -5,8 +5,7 @@ BREAK_CHARS="\(\){}[],^%$#@\"\";:''|\\" cljjar='lib/clojure.jar' -cljclass='clojure.lang.Repl' -cljscript='clojure.lang.Script' +cljclass='clojure.main' cljcompletions='.clj_completions' dir=$0 @@ -37,6 +36,6 @@ rlwrap --remember -c -b $BREAK_CHARS -f $cljcompletions java -cp $cp $cljclass else scriptname=$1 - exec java -classpath $cp $cljscript $scriptname --$* + exec java -classpath $cp $cljclass $scriptname -- $* fi Modified: trunk/dports/lang/clojure/files/clj.sh =================================================================== --- trunk/dports/lang/clojure/files/clj.sh 2010-01-02 19:03:38 UTC (rev 62261) +++ trunk/dports/lang/clojure/files/clj.sh 2010-01-02 19:08:16 UTC (rev 62262) @@ -4,8 +4,7 @@ cljjar='lib/clojure.jar' -cljclass='clojure.lang.Repl' -cljscript='clojure.lang.Script' +cljclass='clojure.main' dir=$0 while [ -h "$dir" ]; do @@ -34,5 +33,5 @@ exec java -classpath $cp $cljclass else scriptname=$1 - exec java -classpath $cp $cljscript $scriptname --$* + exec java -classpath $cp $cljclass $scriptname -- $* fi -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Sat Jan 2 11:54:28 2010 From: portindex at macports.org (portindex at macports.org) Date: Sat, 2 Jan 2010 11:54:28 -0800 (PST) Subject: [62263] trunk/dports Message-ID: <20100102195429.7FC843A22D9A@beta.macosforge.org> Revision: 62263 http://trac.macports.org/changeset/62263 Author: portindex at macports.org Date: 2010-01-02 11:54:27 -0800 (Sat, 02 Jan 2010) Log Message: ----------- Total number of ports parsed: 6468 Ports successfully parsed: 6468 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex trunk/dports/PortIndex.quick Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-02 19:08:16 UTC (rev 62262) +++ trunk/dports/PortIndex 2010-01-02 19:54:27 UTC (rev 62263) @@ -4299,7 +4299,7 @@ clisp 766 variants {nolibsigsegv darwin darwin_7 darwin_10} portdir lang/clisp description {The Clisp Common Lisp Implementation} homepage http://clisp.cons.org/ epoch 0 platforms darwin name clisp depends_lib {port:readline port:gettext port:libsigsegv} long_description {CLISP is a Common Lisp implementation by Bruno Haible, formerly of Karlsruhe University, and Michael Stoll, formerly of Munich University, both in Germany. It mostly supports the Lisp described in the ANSI Common Lisp standard. CLISP includes an interpreter, a compiler, almost all of CLOS, a foreign language interface and a socket interface. An X11 interface is available through CLX and Garnet. Command line editing is provided by readline.} maintainers waqar categories lang version 2.48 revision 0 clojure 546 -variants {readline rlwrap} portdir lang/clojure description {The Clojure programming language} homepage http://clojure.org/ epoch 20090504 platforms darwin name clojure long_description {Clojure is a dynamic programming language for the JVM. It is interactive, yet compiled, with a robust infrastructure for concurrency. It is a functional dialect of Lisp, with a rich set of immutable, persistent data structures and a macro system.} maintainers gmail.com:mdippery depends_extract bin:unzip:unzip categories {lang java} version 1.0.0 revision 1 +variants {readline rlwrap} portdir lang/clojure description {The Clojure programming language} homepage http://clojure.org/ epoch 20091231 platforms darwin name clojure long_description {Clojure is a dynamic programming language for the JVM. It is interactive, yet compiled, with a robust infrastructure for concurrency. It is a functional dialect of Lisp, with a rich set of immutable, persistent data structures and a macro system.} maintainers gmail.com:mdippery depends_extract bin:unzip:unzip categories {lang java} version 1.1.0 revision 0 clojure-contrib 577 depends_build port:clojure portdir lang/clojure-contrib depends_fetch bin:git:git-core description {The Clojure programming language (1.0) - Contrib} homepage http://clojure.org/ epoch 0 platforms darwin name clojure-contrib maintainers gmail.com:ian.eure long_description {Clojure is a dynamic programming language for the JVM. It is interactive, yet compiled, with a robust infrastructure for concurrency. It is a functional dialect of Lisp, with a rich set of immutable, persistent data structures and a macro system.} categories {lang java} version git-20091102 revision 0 clojure-contrib-devel 603 @@ -4738,8 +4738,8 @@ variants universal portdir mail/hello description {utility for saying hello and reading email} homepage http://www.gnu.org/software/hello/ epoch 0 platforms darwin name hello long_description {The GNU hello program produces a familiar, friendly greeting. It allows nonprogrammers to use a classic computer science tool which would otherwise be unavailable to them. Because it is protected by the GNU General Public License, users are free to share and change it.} maintainers nomaintainer categories mail version 2.1.1 revision 0 hypermail 430 variants {gdbm universal} portdir mail/hypermail description {Hypermail, mail to cross-referenced HTML converter} homepage http://www.hypermail-project.org/ epoch 0 platforms darwin name hypermail long_description {Hypermail is a program that takes a file of mail messages in UNIX mailbox format and generates a set of cross-referenced HTML documents.} maintainers nomaintainer categories {mail textproc} version 2.3.0 revision 0 -imap-uw 525 -variants {ssl_plain ssl_pam nopwd mbx subdir} portdir mail/imap-uw description {University of Washington IMAP daemon} homepage http://www.washington.edu/imap/ epoch 0 platforms darwin name imap-uw long_description {IMAP (Internet Message Access Protocol) is a method of accessing electronic messages kept on a (possibly shared) mail server. This port provides the University of Washington IMAP toolkit (IMAP supporting software developed by the UW).} maintainers {snc openmaintainer} categories mail version 2007e revision 0 +imap-uw 529 +variants {ssl_plain ssl_pam nopwd mbx mix subdir} portdir mail/imap-uw description {University of Washington IMAP daemon} homepage http://www.washington.edu/imap/ epoch 0 platforms darwin name imap-uw long_description {IMAP (Internet Message Access Protocol) is a method of accessing electronic messages kept on a (possibly shared) mail server. This port provides the University of Washington IMAP toolkit (IMAP supporting software developed by the UW).} maintainers {snc openmaintainer} categories mail version 2007e revision 0 imapcp 501 portdir mail/imapcp description {imapcp is a simple tool to copy mailbox accounts} homepage http://www.jplanglois.com/products/imapcp/ epoch 0 depends_run bin:python:python24 platforms darwin name imapcp maintainers nomaintainer long_description {imapcp is a simple tool to copy mailbox accounts. It was used successfully to transfer mailboxes from a Washington University IMAP server to a Courier IMAP server, and from an OpenMail server to a WU IMAP server.} categories mail version 0.97 revision 0 imapfilter 469 Modified: trunk/dports/PortIndex.quick =================================================================== (Binary files differ) -------------- next part -------------- An HTML attachment was scrubbed... URL: From jonas at macports.org Sat Jan 2 13:28:25 2010 From: jonas at macports.org (jonas at macports.org) Date: Sat, 2 Jan 2010 13:28:25 -0800 (PST) Subject: [62264] trunk/dports/kde/krusader Message-ID: <20100102212826.9BAC03A24FDE@beta.macosforge.org> Revision: 62264 http://trac.macports.org/changeset/62264 Author: jonas at macports.org Date: 2010-01-02 13:28:22 -0800 (Sat, 02 Jan 2010) Log Message: ----------- fixed install location and application icon Modified Paths: -------------- trunk/dports/kde/krusader/Portfile Added Paths: ----------- trunk/dports/kde/krusader/files/ trunk/dports/kde/krusader/files/app-install-bug.patch trunk/dports/kde/krusader/files/hi128-app-krusader_user.png Modified: trunk/dports/kde/krusader/Portfile =================================================================== --- trunk/dports/kde/krusader/Portfile 2010-01-02 19:54:27 UTC (rev 62263) +++ trunk/dports/kde/krusader/Portfile 2010-01-02 21:28:22 UTC (rev 62264) @@ -6,6 +6,7 @@ name krusader version 2.0.0 +revision 1 categories kde kde4 maintainers jonas openmaintainer description Advanced twin panel (commander style) file manager for KDE. @@ -24,4 +25,13 @@ depends_lib-append port:kdelibs4 \ port:kdebase4-runtime +post-extract { + # if there is no 128x128 icon, no Mac OS X application icon will be generated + # (at least cmake-2.8 shows this behaviour) + copy ${filespath}/hi128-app-krusader_user.png ${workpath}/${distname}/krusader/ +} + +patchfiles app-install-bug.patch +patch.dir ${workpath}/${distname} + configure.args-append ../${distname} Added: trunk/dports/kde/krusader/files/app-install-bug.patch =================================================================== --- trunk/dports/kde/krusader/files/app-install-bug.patch (rev 0) +++ trunk/dports/kde/krusader/files/app-install-bug.patch 2010-01-02 21:28:22 UTC (rev 62264) @@ -0,0 +1,11 @@ +--- krusader/CMakeLists.txt.orig 2010-01-02 00:37:03.000000000 +0100 ++++ krusader/CMakeLists.txt 2010-01-02 00:38:05.000000000 +0100 +@@ -46,7 +46,7 @@ kde4_add_executable(krusader ${krusader_ + + target_link_libraries(krusader BookMan Dialogs DiskUsage GUI Konfigurator KViewer MountMan Panel Queue VFS Search Splitter Synchronizer UserMenu Locate UserAction ActionMan KViewer Filter Dialogs GUI ${KDE4_KPARTS_LIBS} ${KDE4_KHTML_LIBS} ${KDE4_KDEUI_LIBS} ${KDE4_KFILE_LIBS} ${QT_QT3SUPPORT_LIBRARY} ${KDE4_KDE3SUPPORT_LIBS} ${KDE4_KDECORE_LIBS} ) + +-install(TARGETS krusader DESTINATION ${BIN_INSTALL_DIR}) ++install(TARGETS krusader ${INSTALL_TARGETS_DEFAULT_ARGS}) + + + ########### install files ############### Added: trunk/dports/kde/krusader/files/hi128-app-krusader_user.png =================================================================== (Binary files differ) Property changes on: trunk/dports/kde/krusader/files/hi128-app-krusader_user.png ___________________________________________________________________ Added: svn:mime-type + application/octet-stream -------------- next part -------------- An HTML attachment was scrubbed... URL: From easieste at macports.org Sat Jan 2 13:33:43 2010 From: easieste at macports.org (easieste at macports.org) Date: Sat, 2 Jan 2010 13:33:43 -0800 (PST) Subject: [62265] trunk/dports/lang/sbcl Message-ID: <20100102213343.8D1F83A25096@beta.macosforge.org> Revision: 62265 http://trac.macports.org/changeset/62265 Author: easieste at macports.org Date: 2010-01-02 13:33:42 -0800 (Sat, 02 Jan 2010) Log Message: ----------- Patch SB-POSIX tests to get through compilation on Snow Leopard. SBCL has this logged in https://bugs.launchpad.net/sbcl/+bug/421779, which also notes an addtional test ('SB-POSIX-TESTS::READDIR.1') as failing. Modified Paths: -------------- trunk/dports/lang/sbcl/Portfile Added Paths: ----------- trunk/dports/lang/sbcl/files/patch-posix-tests.diff Modified: trunk/dports/lang/sbcl/Portfile =================================================================== --- trunk/dports/lang/sbcl/Portfile 2010-01-02 21:28:22 UTC (rev 62264) +++ trunk/dports/lang/sbcl/Portfile 2010-01-02 21:33:42 UTC (rev 62265) @@ -4,6 +4,7 @@ name sbcl version 1.0.33 +revision 1 set subrevision "" categories lang maintainers gwright waqar @@ -61,7 +62,8 @@ set host_lisp "\"${workpath}/${name}-${bootversion}-x86-darwin/src/runtime/sbcl --core ${workpath}/${name}-${bootversion}-x86-darwin/output/sbcl.core --disable-debugger --sysinit /dev/null --userinit /dev/null\" " } -patchfiles patch-use-mach-exception-handler.diff +patchfiles patch-use-mach-exception-handler.diff \ + patch-posix-tests.diff distfiles ${name}-${version}-source${subrevision}${extract.suffix} Added: trunk/dports/lang/sbcl/files/patch-posix-tests.diff =================================================================== --- trunk/dports/lang/sbcl/files/patch-posix-tests.diff (rev 0) +++ trunk/dports/lang/sbcl/files/patch-posix-tests.diff 2010-01-02 21:33:42 UTC (rev 62265) @@ -0,0 +1,20 @@ +--- contrib/sb-posix/posix-tests.lisp.orig 2009-10-29 13:36:30.000000000 +0100 ++++ contrib/sb-posix/posix-tests.lisp 2009-10-29 13:37:17.000000000 +0100 +@@ -109,7 +109,7 @@ + (sb-posix:syscall-error (c) + (sb-posix:syscall-errno c))) + #-win32 +- #.sb-posix::eexist ++ #.sb-posix::eisdir + #+win32 + #.sb-posix:eacces) + +@@ -168,7 +168,7 @@ + (sb-posix:syscall-error (c) + (sb-posix:syscall-errno c))) + #-win32 +- #.sb-posix::ebusy ++ #.sb-posix::eisdir + #+win32 + #.sb-posix::eacces) + -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Sat Jan 2 13:45:21 2010 From: ryandesign at macports.org (ryandesign at macports.org) Date: Sat, 2 Jan 2010 13:45:21 -0800 (PST) Subject: [62266] trunk/dports/lang/clojure/Portfile Message-ID: <20100102214521.5FADF3A2524D@beta.macosforge.org> Revision: 62266 http://trac.macports.org/changeset/62266 Author: ryandesign at macports.org Date: 2010-01-02 13:45:19 -0800 (Sat, 02 Jan 2010) Log Message: ----------- clojure: remove unnecessary distname lines Modified Paths: -------------- trunk/dports/lang/clojure/Portfile Modified: trunk/dports/lang/clojure/Portfile =================================================================== --- trunk/dports/lang/clojure/Portfile 2010-01-02 21:33:42 UTC (rev 62265) +++ trunk/dports/lang/clojure/Portfile 2010-01-02 21:45:19 UTC (rev 62266) @@ -16,13 +16,12 @@ persistent data structures and a macro system. homepage http://clojure.org/ platforms darwin -distname clojure_${version} master_sites googlecode:clojure checksums md5 9c9e92f85351721b76f40578f5c1a94a \ sha1 c253dd52734a008321a1db34439744a6d02587ea \ rmd160 8cb486181edf2a8e8d9ea061602d396304e503c4 -distname ${name}-${version} + use_zip yes use_configure no -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Sat Jan 2 13:55:04 2010 From: portindex at macports.org (portindex at macports.org) Date: Sat, 2 Jan 2010 13:55:04 -0800 (PST) Subject: [62267] trunk/dports/PortIndex Message-ID: <20100102215505.2B6023A252F4@beta.macosforge.org> Revision: 62267 http://trac.macports.org/changeset/62267 Author: portindex at macports.org Date: 2010-01-02 13:55:03 -0800 (Sat, 02 Jan 2010) Log Message: ----------- Total number of ports parsed: 6468 Ports successfully parsed: 6468 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-02 21:45:19 UTC (rev 62266) +++ trunk/dports/PortIndex 2010-01-02 21:55:03 UTC (rev 62267) @@ -4243,7 +4243,7 @@ konversation11 408 depends_build {port:autoconf263 port:unsermake} portdir kde/konversation11 description {KDE IRC client. NB No KDE sound support.} homepage http://konversation.kde.org/ epoch 0 platforms darwin depends_lib {port:kdebase3 port:doxygen path:bin/dot:graphviz} name konversation11 maintainers nomaintainer long_description {{KDE IRC client. NB No KDE sound support.}} categories {kde kde3} version 1.1 revision 1 krusader 684 -variants {debug docs universal} depends_build {port:cmake port:automoc} portdir kde/krusader description {Advanced twin panel (commander style) file manager for KDE.} homepage http://krusader.org epoch 0 platforms darwin depends_lib {path:libexec/qt4-mac:qt4-mac port:kdelibs4 port:kdebase4-runtime} name krusader maintainers {jonas openmaintainer} long_description {Krusader is an advanced twin panel (commander style) file manager for KDE, similar to Midnight or Total Commander (formerly Windows Commander), with many extras such as directory synchronization, transparent archive handling, FTP, advanced search, internal viewer, ...} categories {kde kde4} version 2.0.0 revision 0 +variants {debug docs universal} depends_build {port:cmake port:automoc} portdir kde/krusader description {Advanced twin panel (commander style) file manager for KDE.} homepage http://krusader.org epoch 0 platforms darwin depends_lib {path:libexec/qt4-mac:qt4-mac port:kdelibs4 port:kdebase4-runtime} name krusader maintainers {jonas openmaintainer} long_description {Krusader is an advanced twin panel (commander style) file manager for KDE, similar to Midnight or Total Commander (formerly Windows Commander), with many extras such as directory synchronization, transparent archive handling, FTP, advanced search, internal viewer, ...} categories {kde kde4} version 2.0.0 revision 1 ktorrent 444 variants {debug docs universal} depends_build {port:cmake port:automoc} portdir kde/ktorrent description {KDE4 bittorrent client.} homepage http://www.kde.org epoch 0 platforms darwin depends_lib {path:libexec/qt4-mac:qt4-mac port:kdebase4-runtime port:qca port:gmp} name ktorrent maintainers nomaintainer long_description {Bittorrent client for KDE4 supporting a variety of features such as uPNP.} categories {kde kde4} version 3.2 revision 0 oxygen-icons 366 @@ -4583,7 +4583,7 @@ ruby19 735 variants {nosuffix c_api_docs tk mactk universal} portdir lang/ruby19 description {Powerful and clean object-oriented scripting language} homepage http://www.ruby-lang.org/ epoch 0 platforms darwin name ruby19 depends_lib {port:libiconv port:readline port:openssl port:zlib port:ncurses} long_description {Ruby is the interpreted scripting language for quick and easy object-oriented programming. It has many features to process text files and to do system management tasks (as in Perl). It is simple, straight-forward, extensible, and portable. Version 1.9 contains a new VM called YARV, is faster and slightly incompatible from version 1.8.} maintainers {febeling openmaintainer} categories {lang ruby} version 1.9.1-p376 revision 0 sbcl 585 -variants {powerpc darwin_8_i386 darwin_9_i386 darwin_10_i386 html threads} portdir lang/sbcl description {The Steel Bank Common Lisp system} homepage http://www.sbcl.org epoch 0 platforms darwin name sbcl long_description {Steel Bank Common Lisp (SBCL) is a Open Source development system for ANSI Common Lisp. It provides an interactive environment including an integrated native compiler, interpreter, and debugger. (And it, and its generated code, can also play nicely with Unix when running noninteractively.)} maintainers {gwright waqar} categories lang version 1.0.33 revision 0 +variants {powerpc darwin_8_i386 darwin_9_i386 darwin_10_i386 html threads} portdir lang/sbcl description {The Steel Bank Common Lisp system} homepage http://www.sbcl.org epoch 0 platforms darwin name sbcl long_description {Steel Bank Common Lisp (SBCL) is a Open Source development system for ANSI Common Lisp. It provides an interactive environment including an integrated native compiler, interpreter, and debugger. (And it, and its generated code, can also play nicely with Unix when running noninteractively.)} maintainers {gwright waqar} categories lang version 1.0.33 revision 1 scala 518 portdir lang/scala description {The Scala Programming Language} homepage http://www.scala-lang.org/ epoch 0 platforms darwin name scala maintainers blair long_description {Scala is a modern multi-paradigm programming language designed to express common programming patterns in a concise, elegant, and type-safe way. It smoothly integrates features of object-oriented and functional languages. It runs inside a Java Virtual Machine and is fully interoperable with Java.} version 2.7.7 categories {lang java} revision 0 scala-devel 557 -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Sat Jan 2 13:55:45 2010 From: ryandesign at macports.org (ryandesign at macports.org) Date: Sat, 2 Jan 2010 13:55:45 -0800 (PST) Subject: [62268] trunk/dports/www/tidy/Portfile Message-ID: <20100102215545.D0FDE3A25321@beta.macosforge.org> Revision: 62268 http://trac.macports.org/changeset/62268 Author: ryandesign at macports.org Date: 2010-01-02 13:55:44 -0800 (Sat, 02 Jan 2010) Log Message: ----------- tidy: simplify livecheck Modified Paths: -------------- trunk/dports/www/tidy/Portfile Modified: trunk/dports/www/tidy/Portfile =================================================================== --- trunk/dports/www/tidy/Portfile 2010-01-02 21:55:03 UTC (rev 62267) +++ trunk/dports/www/tidy/Portfile 2010-01-02 21:55:44 UTC (rev 62268) @@ -42,25 +42,7 @@ system "ln -fs libtidy-0.99.0.0.0.dylib ${destroot}${prefix}/lib/libtidy.0.dylib" } -proc get_livecheck_version version { - set d [string range ${version} 6 7] - if {[string index ${d} 0] eq "0"} { - set d [string index ${d} 1] - } - set months { - January February March April May June July August September October - November December - } - set m [string range ${version} 4 5] - if {[string index ${m} 0] eq "0"} { - set m [string index ${m} 1] - } - return "${d} [lindex ${months} [expr ${m} - 1]] [string range ${version} 0 3]" -} - -ui_msg [get_livecheck_version ${version}] - livecheck.type regex livecheck.url http://tidy.cvs.sourceforge.net/viewvc/*checkout*/tidy/tidy/src/version.h livecheck.regex {"(.+)"} -eval livecheck.version [get_livecheck_version ${version}] +eval livecheck.version [clock format [clock scan ${version}] -format {%d %B %Y}] -------------- next part -------------- An HTML attachment was scrubbed... URL: From akitada at macports.org Sat Jan 2 20:00:12 2010 From: akitada at macports.org (akitada at macports.org) Date: Sat, 2 Jan 2010 20:00:12 -0800 (PST) Subject: [62269] trunk/dports/lang/mit-scheme/Portfile Message-ID: <20100103040013.7E2BE3A28634@beta.macosforge.org> Revision: 62269 http://trac.macports.org/changeset/62269 Author: akitada at macports.org Date: 2010-01-02 20:00:10 -0800 (Sat, 02 Jan 2010) Log Message: ----------- Updated mit-scheme. Modified Paths: -------------- trunk/dports/lang/mit-scheme/Portfile Modified: trunk/dports/lang/mit-scheme/Portfile =================================================================== --- trunk/dports/lang/mit-scheme/Portfile 2010-01-02 21:55:44 UTC (rev 62268) +++ trunk/dports/lang/mit-scheme/Portfile 2010-01-03 04:00:10 UTC (rev 62269) @@ -4,8 +4,7 @@ PortSystem 1.0 name mit-scheme -version 20080130 -revision 2 +version 20090107 categories lang platforms darwin maintainers nomaintainer @@ -23,7 +22,7 @@ homepage http://www.gnu.org/software/mit-scheme/ master_sites http://ftp.gnu.org/gnu/mit-scheme/snapshot.pkg/${version}/ distname ${name}-c-${version} -checksums md5 75e11fcba96c9efd49cd283b43d6839a +checksums md5 55cc891cf6321ae71506c8699204d165 depends_lib \ port:xorg-libX11 -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Sat Jan 2 20:55:01 2010 From: portindex at macports.org (portindex at macports.org) Date: Sat, 2 Jan 2010 20:55:01 -0800 (PST) Subject: [62270] trunk/dports/PortIndex Message-ID: <20100103045503.EB5E03A28917@beta.macosforge.org> Revision: 62270 http://trac.macports.org/changeset/62270 Author: portindex at macports.org Date: 2010-01-02 20:54:58 -0800 (Sat, 02 Jan 2010) Log Message: ----------- Total number of ports parsed: 6468 Ports successfully parsed: 6468 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-03 04:00:10 UTC (rev 62269) +++ trunk/dports/PortIndex 2010-01-03 04:54:58 UTC (rev 62270) @@ -4461,7 +4461,7 @@ mercury-extras 803 portdir lang/mercury-extras description {Extra packages for the Mercury Programming Language} homepage http://www.cs.mu.oz.au/research/mercury/ epoch 0 depends_run port:mercury platforms darwin name mercury-extras maintainers nomaintainer long_description {Mercury is a new logic/functional programming language, which combines the clarity and expressiveness of declarative programming with advanced static analysis and error detection features. Its highly optimized execution algorithm delivers efficiency far in excess of existing logic programming systems, and close to conventional programming systems. Mercury addresses the problems of large-scale program development, allowing modularity, separate compilation, and numerous optimization/time trade-offs.} categories lang version 0.13.1 revision 0 mit-scheme 545 -portdir lang/mit-scheme description {MIT/GNU Scheme} homepage http://www.gnu.org/software/mit-scheme/ epoch 0 platforms darwin name mit-scheme depends_lib port:xorg-libX11 maintainers nomaintainer long_description {MIT/GNU Scheme is an implementation of the Scheme programming language, providing an interpreter, compiler, source-code debugger, integrated Emacs-like editor, and a large runtime library. MIT/GNU Scheme is best suited to programming large applications with a rapid development cycle.} categories lang version 20080130 revision 2 +portdir lang/mit-scheme description {MIT/GNU Scheme} homepage http://www.gnu.org/software/mit-scheme/ epoch 0 platforms darwin name mit-scheme depends_lib port:xorg-libX11 maintainers nomaintainer long_description {MIT/GNU Scheme is an implementation of the Scheme programming language, providing an interpreter, compiler, source-code debugger, integrated Emacs-like editor, and a large runtime library. MIT/GNU Scheme is best suited to programming large applications with a rapid development cycle.} categories lang version 20090107 revision 0 mosml 519 variants universal portdir lang/mosml description {Moscow ML is an implementation of Standard ML (SML)} homepage http://www.dina.dk/~sestoft/mosml.html epoch 0 platforms darwin name mosml long_description {Moscow ML is a light-weight implementation of Standard ML (SML), a strict functional language widely used in teaching and research. Version 2.01 implements the full SML language, including SML Modules, and much of the SML Basis Library.} maintainers rift.dk:cso categories {lang devel ml} version 2.01 revision 2 mosml-dynlibs 411 -------------- next part -------------- An HTML attachment was scrubbed... URL: From snc at macports.org Sat Jan 2 21:54:58 2010 From: snc at macports.org (snc at macports.org) Date: Sat, 2 Jan 2010 21:54:58 -0800 (PST) Subject: [62271] trunk/dports/net/kismet/Portfile Message-ID: <20100103055459.D78913A28C50@beta.macosforge.org> Revision: 62271 http://trac.macports.org/changeset/62271 Author: snc at macports.org Date: 2010-01-02 21:54:55 -0800 (Sat, 02 Jan 2010) Log Message: ----------- enable nested functions, ticket #23096 Modified Paths: -------------- trunk/dports/net/kismet/Portfile Modified: trunk/dports/net/kismet/Portfile =================================================================== --- trunk/dports/net/kismet/Portfile 2010-01-03 04:54:58 UTC (rev 62270) +++ trunk/dports/net/kismet/Portfile 2010-01-03 05:54:55 UTC (rev 62271) @@ -34,6 +34,8 @@ patchfiles patch-kis_panel_frontend.h.diff \ patch-plugintracker.h.diff +configure.env-append CFLAGS=-fnested-functions + # Dependency building command fails but dependecies are built nevertheless pre-build { system "(cd ${worksrcpath} && gnumake depend ) || true" -------------- next part -------------- An HTML attachment was scrubbed... URL: From snc at macports.org Sat Jan 2 21:57:45 2010 From: snc at macports.org (snc at macports.org) Date: Sat, 2 Jan 2010 21:57:45 -0800 (PST) Subject: [62272] trunk/dports/kde/kdebase4-runtime/Portfile Message-ID: <20100103055745.F2CFC3A28CA5@beta.macosforge.org> Revision: 62272 http://trac.macports.org/changeset/62272 Author: snc at macports.org Date: 2010-01-02 21:57:44 -0800 (Sat, 02 Jan 2010) Log Message: ----------- add dependency to access critical file that collides with other ports, #23105 Modified Paths: -------------- trunk/dports/kde/kdebase4-runtime/Portfile Modified: trunk/dports/kde/kdebase4-runtime/Portfile =================================================================== --- trunk/dports/kde/kdebase4-runtime/Portfile 2010-01-03 05:54:55 UTC (rev 62271) +++ trunk/dports/kde/kdebase4-runtime/Portfile 2010-01-03 05:57:44 UTC (rev 62272) @@ -24,7 +24,8 @@ port:qimageblitz \ port:kdepimlibs4 \ port:oxygen-icons \ - port:kdelibs4-experimental + port:kdelibs4-experimental \ + port:hicolor-icon-theme configure.args-append ../${distname} \ -DWITH_PulseAudio=OFF \ -------------- next part -------------- An HTML attachment was scrubbed... URL: From snc at macports.org Sat Jan 2 21:59:43 2010 From: snc at macports.org (snc at macports.org) Date: Sat, 2 Jan 2010 21:59:43 -0800 (PST) Subject: [62273] trunk/dports/kde/kdebase4-runtime/Portfile Message-ID: <20100103055944.224C53A28CDC@beta.macosforge.org> Revision: 62273 http://trac.macports.org/changeset/62273 Author: snc at macports.org Date: 2010-01-02 21:59:43 -0800 (Sat, 02 Jan 2010) Log Message: ----------- bump revision for r62272 Revision Links: -------------- http://trac.macports.org/changeset/62272 Modified Paths: -------------- trunk/dports/kde/kdebase4-runtime/Portfile Modified: trunk/dports/kde/kdebase4-runtime/Portfile =================================================================== --- trunk/dports/kde/kdebase4-runtime/Portfile 2010-01-03 05:57:44 UTC (rev 62272) +++ trunk/dports/kde/kdebase4-runtime/Portfile 2010-01-03 05:59:43 UTC (rev 62273) @@ -6,6 +6,7 @@ name kdebase4-runtime version 4.3.4 +revision 1 categories kde kde4 maintainers snc sharky description Shared data needed by KDE4 programs -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Sat Jan 2 22:54:39 2010 From: portindex at macports.org (portindex at macports.org) Date: Sat, 2 Jan 2010 22:54:39 -0800 (PST) Subject: [62274] trunk/dports Message-ID: <20100103065441.A88053A28FAA@beta.macosforge.org> Revision: 62274 http://trac.macports.org/changeset/62274 Author: portindex at macports.org Date: 2010-01-02 22:54:36 -0800 (Sat, 02 Jan 2010) Log Message: ----------- Total number of ports parsed: 6468 Ports successfully parsed: 6468 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex trunk/dports/PortIndex.quick Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-03 05:59:43 UTC (rev 62273) +++ trunk/dports/PortIndex 2010-01-03 06:54:36 UTC (rev 62274) @@ -4072,8 +4072,8 @@ variants {with_doxygen darwin_10 puredarwin} depends_build {port:autoconf263 port:imake port:unsermake} portdir kde/kdebase3 description {Base KDE programs -- e.g. kicker (taskbar). NB No KDE sound support.} homepage http://www.kde.org/ epoch 0 platforms darwin depends_lib {port:cyrus-sasl2 port:kdelibs3 port:libusb-compat port:xorg-libXau port:xorg-libXcomposite port:xorg-libXcursor port:xorg-libXdamage port:xorg-libXinerama port:xorg-libxkbfile port:xorg-libXrandr port:xorg-libXScrnSaver port:xorg-libXtst port:xorg-libXxf86misc} name kdebase3 long_description {{Base KDE programs -- e.g. kicker (taskbar). NB No KDE sound support.}} maintainers nomaintainer categories {kde kde3} version 3.5.10 revision 4 kdebase4 552 variants {debug docs universal} depends_build {port:cmake port:automoc} portdir kde/kdebase4 description {KDE4 applications and libraries from the base package} homepage http://www.kde.org epoch 0 platforms darwin depends_lib {path:libexec/qt4-mac:qt4-mac port:kdelibs4 port:qimageblitz port:kdepimlibs4 port:kdebase4-runtime} name kdebase4 maintainers {snc sharky} long_description {Core desktop applications and libraries for the KDE4 desktop. This port installs the file manager dolphin file manager.} categories {kde kde4} version 4.3.4 revision 0 -kdebase4-runtime 542 -variants {debug docs xine universal} depends_build {port:cmake port:automoc} portdir kde/kdebase4-runtime description {Shared data needed by KDE4 programs} homepage http://www.kde.org epoch 0 platforms darwin depends_lib {path:libexec/qt4-mac:qt4-mac port:kdelibs4 port:qimageblitz port:kdepimlibs4 port:oxygen-icons port:kdelibs4-experimental} name kdebase4-runtime maintainers {snc sharky} long_description {Provides data which is required by KDE4 applications. e.g. icons and mimetype data.} categories {kde kde4} version 4.3.4 revision 0 +kdebase4-runtime 566 +variants {debug docs xine universal} depends_build {port:cmake port:automoc} portdir kde/kdebase4-runtime description {Shared data needed by KDE4 programs} homepage http://www.kde.org epoch 0 platforms darwin depends_lib {path:libexec/qt4-mac:qt4-mac port:kdelibs4 port:qimageblitz port:kdepimlibs4 port:oxygen-icons port:kdelibs4-experimental port:hicolor-icon-theme} name kdebase4-runtime maintainers {snc sharky} long_description {Provides data which is required by KDE4 applications. e.g. icons and mimetype data.} categories {kde kde4} version 4.3.4 revision 1 kdebase4-workspace 504 variants {debug docs universal} depends_build {port:cmake port:automoc} portdir kde/kdebase4-workspace description {Shared data needed by KDE4 programs} homepage http://www.kde.org epoch 0 platforms darwin depends_lib {path:libexec/qt4-mac:qt4-mac port:kdebase4-runtime port:qimageblitz port:kdepimlibs4} name kdebase4-workspace maintainers nomaintainer long_description {Provides data which is required by KDE4 applications. e.g. icons and mimetype data.} categories {kde kde4} version 4.2.4 revision 0 kdeedu3 391 Modified: trunk/dports/PortIndex.quick =================================================================== (Binary files differ) -------------- next part -------------- An HTML attachment was scrubbed... URL: From jmr at macports.org Sun Jan 3 00:15:22 2010 From: jmr at macports.org (jmr at macports.org) Date: Sun, 3 Jan 2010 00:15:22 -0800 (PST) Subject: [62275] trunk/dports/sysutils/port_cutleaves/Portfile Message-ID: <20100103081523.E480A3A298D4@beta.macosforge.org> Revision: 62275 http://trac.macports.org/changeset/62275 Author: jmr at macports.org Date: 2010-01-03 00:15:17 -0800 (Sun, 03 Jan 2010) Log Message: ----------- port_cutleaves: update for imminent distfiles relocation Modified Paths: -------------- trunk/dports/sysutils/port_cutleaves/Portfile Modified: trunk/dports/sysutils/port_cutleaves/Portfile =================================================================== --- trunk/dports/sysutils/port_cutleaves/Portfile 2010-01-03 06:54:36 UTC (rev 62274) +++ trunk/dports/sysutils/port_cutleaves/Portfile 2010-01-03 08:15:17 UTC (rev 62275) @@ -13,10 +13,10 @@ long_description Inspired by FreeBSD's pkg_cutleaves, port_cutleaves is \ an interactive script that eases the uninstallation of \ \"leaves\" - ports that have no dependents. -homepage http://svn.macports.org/repository/macports/contrib/port_cutleaves/files/ +homepage http://svn.macports.org/repository/macports/contrib/port_cutleaves/ livecheck.type none -master_sites ${homepage} +master_sites macports checksums rmd160 93de02ea153ef97323153d831b87cbef05c1c1f0 -------------- next part -------------- An HTML attachment was scrubbed... URL: From jmr at macports.org Sun Jan 3 00:16:25 2010 From: jmr at macports.org (jmr at macports.org) Date: Sun, 3 Jan 2010 00:16:25 -0800 (PST) Subject: [62276] distfiles/port_cutleaves Message-ID: <20100103081625.F16573A298F1@beta.macosforge.org> Revision: 62276 http://trac.macports.org/changeset/62276 Author: jmr at macports.org Date: 2010-01-03 00:16:23 -0800 (Sun, 03 Jan 2010) Log Message: ----------- move port_cutleaves distfiles to distfiles/port_cutleaves/ Added Paths: ----------- distfiles/port_cutleaves/ distfiles/port_cutleaves/port_cutleaves-0.1.1.tar.gz distfiles/port_cutleaves/port_cutleaves-0.1.tar.gz Removed Paths: ------------- contrib/port_cutleaves/files/port_cutleaves-0.1.1.tar.gz contrib/port_cutleaves/files/port_cutleaves-0.1.tar.gz Deleted: contrib/port_cutleaves/files/port_cutleaves-0.1.1.tar.gz =================================================================== (Binary files differ) Deleted: contrib/port_cutleaves/files/port_cutleaves-0.1.tar.gz =================================================================== (Binary files differ) Copied: distfiles/port_cutleaves/port_cutleaves-0.1.1.tar.gz (from rev 62275, contrib/port_cutleaves/files/port_cutleaves-0.1.1.tar.gz) =================================================================== (Binary files differ) Copied: distfiles/port_cutleaves/port_cutleaves-0.1.tar.gz (from rev 62275, contrib/port_cutleaves/files/port_cutleaves-0.1.tar.gz) =================================================================== (Binary files differ) -------------- next part -------------- An HTML attachment was scrubbed... URL: From jmr at macports.org Sun Jan 3 00:16:51 2010 From: jmr at macports.org (jmr at macports.org) Date: Sun, 3 Jan 2010 00:16:51 -0800 (PST) Subject: [62277] contrib/port_cutleaves/files/ Message-ID: <20100103081651.B06973A29900@beta.macosforge.org> Revision: 62277 http://trac.macports.org/changeset/62277 Author: jmr at macports.org Date: 2010-01-03 00:16:50 -0800 (Sun, 03 Jan 2010) Log Message: ----------- delete empty dir Removed Paths: ------------- contrib/port_cutleaves/files/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Sun Jan 3 00:35:21 2010 From: ryandesign at macports.org (ryandesign at macports.org) Date: Sun, 3 Jan 2010 00:35:21 -0800 (PST) Subject: [62279] trunk/dports/lang/mit-scheme/Portfile Message-ID: <20100103083521.3C6BA3A29A2D@beta.macosforge.org> Revision: 62279 http://trac.macports.org/changeset/62279 Author: ryandesign at macports.org Date: 2010-01-03 00:35:19 -0800 (Sun, 03 Jan 2010) Log Message: ----------- mit-scheme: add sha1 and rmd160 checksums Modified Paths: -------------- trunk/dports/lang/mit-scheme/Portfile Modified: trunk/dports/lang/mit-scheme/Portfile =================================================================== --- trunk/dports/lang/mit-scheme/Portfile 2010-01-03 08:35:15 UTC (rev 62278) +++ trunk/dports/lang/mit-scheme/Portfile 2010-01-03 08:35:19 UTC (rev 62279) @@ -22,8 +22,11 @@ homepage http://www.gnu.org/software/mit-scheme/ master_sites http://ftp.gnu.org/gnu/mit-scheme/snapshot.pkg/${version}/ distname ${name}-c-${version} -checksums md5 55cc891cf6321ae71506c8699204d165 +checksums md5 55cc891cf6321ae71506c8699204d165 \ + sha1 7c73cff5a48e6bb83c8c36fb895bd70ab1482251 \ + rmd160 43ad4c5bb1a67972f1a5059981de3de9fed4b908 + depends_lib \ port:xorg-libX11 -------------- next part -------------- An HTML attachment was scrubbed... URL: From jmr at macports.org Sun Jan 3 00:35:19 2010 From: jmr at macports.org (jmr at macports.org) Date: Sun, 3 Jan 2010 00:35:19 -0800 (PST) Subject: [62278] contrib/port_cutleaves/port_cutleaves Message-ID: <20100103083519.8FDF83A29A1E@beta.macosforge.org> Revision: 62278 http://trac.macports.org/changeset/62278 Author: jmr at macports.org Date: 2010-01-03 00:35:15 -0800 (Sun, 03 Jan 2010) Log Message: ----------- port_cutleaves: case insensitive matching for exclusions (#22763), bump version to 0.1.2 Modified Paths: -------------- contrib/port_cutleaves/port_cutleaves Modified: contrib/port_cutleaves/port_cutleaves =================================================================== --- contrib/port_cutleaves/port_cutleaves 2010-01-03 08:16:50 UTC (rev 62277) +++ contrib/port_cutleaves/port_cutleaves 2010-01-03 08:35:15 UTC (rev 62278) @@ -1,9 +1,10 @@ #!/bin/sh +# -*- 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 # \ exec /usr/bin/tclsh "$0" "$@" # $Id$ -set VERSION 0.1.1 +set VERSION 0.1.2 # - Procedures --------------------------------------------------------------- @@ -226,7 +227,7 @@ proc should_be_excluded {port exclusions} { foreach exclusion $exclusions { set full_name [full_name $port] - if {$exclusion eq $full_name || [regexp $exclusion $full_name]} { + if {[string equal -nocase $exclusion $full_name] || [regexp -nocase $exclusion $full_name]} { return 1 } } -------------- next part -------------- An HTML attachment was scrubbed... URL: From jmr at macports.org Sun Jan 3 00:41:32 2010 From: jmr at macports.org (jmr at macports.org) Date: Sun, 3 Jan 2010 00:41:32 -0800 (PST) Subject: [62280] distfiles/port_cutleaves/port_cutleaves-0.1.2.tar.gz Message-ID: <20100103084132.8F7293A29A95@beta.macosforge.org> Revision: 62280 http://trac.macports.org/changeset/62280 Author: jmr at macports.org Date: 2010-01-03 00:41:29 -0800 (Sun, 03 Jan 2010) Log Message: ----------- distfile for port_cutleaves 0.1.2 Added Paths: ----------- distfiles/port_cutleaves/port_cutleaves-0.1.2.tar.gz Added: distfiles/port_cutleaves/port_cutleaves-0.1.2.tar.gz =================================================================== (Binary files differ) Property changes on: distfiles/port_cutleaves/port_cutleaves-0.1.2.tar.gz ___________________________________________________________________ Added: svn:mime-type + application/octet-stream -------------- next part -------------- An HTML attachment was scrubbed... URL: From jmr at macports.org Sun Jan 3 00:52:01 2010 From: jmr at macports.org (jmr at macports.org) Date: Sun, 3 Jan 2010 00:52:01 -0800 (PST) Subject: [62281] contrib/port_cutleaves Message-ID: <20100103085201.F1B503A29B61@beta.macosforge.org> Revision: 62281 http://trac.macports.org/changeset/62281 Author: jmr at macports.org Date: 2010-01-03 00:51:58 -0800 (Sun, 03 Jan 2010) Log Message: ----------- port_cutleaves: finish documentation of -b option Modified Paths: -------------- contrib/port_cutleaves/port_cutleaves contrib/port_cutleaves/port_cutleaves.8 Modified: contrib/port_cutleaves/port_cutleaves =================================================================== --- contrib/port_cutleaves/port_cutleaves 2010-01-03 08:41:29 UTC (rev 62280) +++ contrib/port_cutleaves/port_cutleaves 2010-01-03 08:51:58 UTC (rev 62281) @@ -271,7 +271,7 @@ "Specify a different location for the base MacPorts Tcl file" } { V "Display version information and exit" } } -set usage "\[-F value] \[-l] \[-t value] \[-V] \[-help] \[-?]\n\nOptions:" +set usage "\[-b] \[-F value] \[-l] \[-t value] \[-V] \[-help] \[-?]\n\nOptions:" if {[catch {array set option [::cmdline::getoptions argv $options]}]} { puts [::cmdline::usage $options $usage] exit 1 Modified: contrib/port_cutleaves/port_cutleaves.8 =================================================================== --- contrib/port_cutleaves/port_cutleaves.8 2010-01-03 08:41:29 UTC (rev 62280) +++ contrib/port_cutleaves/port_cutleaves.8 2010-01-03 08:51:58 UTC (rev 62281) @@ -4,12 +4,15 @@ .SH NAME \fBport_cutleaves\fR \-\- uninstall "leaves" - ports that have no dependents .SH SYNOPSIS -\fBport_cutleaves\fR [\fB\-F\fR \fIfile\fR] [\fB\-l\fR] [\fB\-t\fR \fIpath\fR] [\fB\-V\fR] +\fBport_cutleaves\fR [\fB\-b\fR] [\fB\-F\fR \fIfile\fR] [\fB\-l\fR] [\fB\-t\fR \fIpath\fR] [\fB\-V\fR] .SH DESCRIPTION Inspired by FreeBSD's pkg_cutleaves, \fBport_cutleaves\fR is an interactive script that eases the uninstallation of "leaves" \- ports that have no dependents. .SH OPTIONS .TP +\fB\-b\fR +Don't count ports as leaves when they are needed (only) at build time +.TP \fB\-F\fR \fIfile\fR Specify a different file to read exclusions from <\fI~/.port_leaves.exclude\fR> .TP -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Sun Jan 3 00:54:39 2010 From: portindex at macports.org (portindex at macports.org) Date: Sun, 3 Jan 2010 00:54:39 -0800 (PST) Subject: [62282] trunk/dports Message-ID: <20100103085441.4A0773A29B9B@beta.macosforge.org> Revision: 62282 http://trac.macports.org/changeset/62282 Author: portindex at macports.org Date: 2010-01-03 00:54:36 -0800 (Sun, 03 Jan 2010) Log Message: ----------- Total number of ports parsed: 6468 Ports successfully parsed: 6468 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex trunk/dports/PortIndex.quick Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-03 08:51:58 UTC (rev 62281) +++ trunk/dports/PortIndex 2010-01-03 08:54:36 UTC (rev 62282) @@ -11062,8 +11062,8 @@ portdir sysutils/pdi2iso description {converts instant copy bin image to standard ISO-9660} homepage https://developer.berlios.de/projects/pdi2iso/ epoch 0 platforms darwin name pdi2iso maintainers nomaintainer long_description {pdi2iso is a very simple utility to convert an instant copy bin image to the standard ISO-9660 format.} version 0.1 categories sysutils revision 0 poldek 836 variants universal depends_build {port:autoconf port:automake port:libtool} portdir sysutils/poldek description {A full-featured frontend to RPM} homepage http://poldek.pld-linux.org/ epoch 0 platforms darwin name poldek depends_lib {port:rpm port:argp-standalone port:ncurses lib:libpcre:pcre lib:libcheck:check lib:libxml2:libxml2} long_description {poldek is an RPM package management tool which allows you to easily perform package verification, installation (including system installation from scratch), upgrading, and removal. Program can be used in batch (like apt-get from Debian's APT) or interactive mode. The interactive mode puts you into a readline interface with command line autocompletion and history, similar to the shell mode of Perl's CPAN.} maintainers afb categories sysutils version 0.30-cvs20080225.00 revision 0 -port_cutleaves 500 -variants universal portdir sysutils/port_cutleaves description {Uninstall {"leaves"} - ports that have no dependents.} homepage http://svn.macports.org/repository/macports/contrib/port_cutleaves/files/ epoch 0 platforms darwin name port_cutleaves long_description {Inspired by FreeBSD's pkg_cutleaves, port_cutleaves is an interactive script that eases the uninstallation of {"leaves"} - ports that have no dependents.} maintainers {perry openmaintainer} categories sysutils version 0.1.1 revision 0 +port_cutleaves 494 +variants universal portdir sysutils/port_cutleaves description {Uninstall {"leaves"} - ports that have no dependents.} homepage http://svn.macports.org/repository/macports/contrib/port_cutleaves/ epoch 0 platforms darwin name port_cutleaves long_description {Inspired by FreeBSD's pkg_cutleaves, port_cutleaves is an interactive script that eases the uninstallation of {"leaves"} - ports that have no dependents.} maintainers {perry openmaintainer} categories sysutils version 0.1.1 revision 0 proctools 374 variants darwin portdir sysutils/proctools description {pgrep, pkill and pfind for OpenBSD and Darwin (Mac OS X)} homepage http://sourceforge.net/projects/proctools/ epoch 0 platforms darwin name proctools long_description {The proctools are text-based utilities to scan for and send signals to processes.} maintainers akitada categories sysutils version 0.4pre1 revision 2 pstree 336 Modified: trunk/dports/PortIndex.quick =================================================================== (Binary files differ) -------------- next part -------------- An HTML attachment was scrubbed... URL: From jmr at macports.org Sun Jan 3 00:55:41 2010 From: jmr at macports.org (jmr at macports.org) Date: Sun, 3 Jan 2010 00:55:41 -0800 (PST) Subject: [62283] distfiles/port_cutleaves/port_cutleaves-0.1.2.tar.gz Message-ID: <20100103085541.38A8F3A29BB3@beta.macosforge.org> Revision: 62283 http://trac.macports.org/changeset/62283 Author: jmr at macports.org Date: 2010-01-03 00:55:40 -0800 (Sun, 03 Jan 2010) Log Message: ----------- delete not quite complete distfile Removed Paths: ------------- distfiles/port_cutleaves/port_cutleaves-0.1.2.tar.gz Deleted: distfiles/port_cutleaves/port_cutleaves-0.1.2.tar.gz =================================================================== (Binary files differ) -------------- next part -------------- An HTML attachment was scrubbed... URL: From jmr at macports.org Sun Jan 3 01:02:59 2010 From: jmr at macports.org (jmr at macports.org) Date: Sun, 3 Jan 2010 01:02:59 -0800 (PST) Subject: [62284] distfiles/port_cutleaves/port_cutleaves-0.1.2.tar.gz Message-ID: <20100103090300.B5A603A29BFA@beta.macosforge.org> Revision: 62284 http://trac.macports.org/changeset/62284 Author: jmr at macports.org Date: 2010-01-03 01:02:55 -0800 (Sun, 03 Jan 2010) Log Message: ----------- second try at port_cutleaves 0.1.2 distfile Added Paths: ----------- distfiles/port_cutleaves/port_cutleaves-0.1.2.tar.gz Added: distfiles/port_cutleaves/port_cutleaves-0.1.2.tar.gz =================================================================== (Binary files differ) Property changes on: distfiles/port_cutleaves/port_cutleaves-0.1.2.tar.gz ___________________________________________________________________ Added: svn:mime-type + application/octet-stream -------------- next part -------------- An HTML attachment was scrubbed... URL: From jmr at macports.org Sun Jan 3 01:06:28 2010 From: jmr at macports.org (jmr at macports.org) Date: Sun, 3 Jan 2010 01:06:28 -0800 (PST) Subject: [62285] trunk/dports/sysutils/port_cutleaves/Portfile Message-ID: <20100103090628.9CC333A29C61@beta.macosforge.org> Revision: 62285 http://trac.macports.org/changeset/62285 Author: jmr at macports.org Date: 2010-01-03 01:06:25 -0800 (Sun, 03 Jan 2010) Log Message: ----------- port_cutleaves: update to 0.1.2 Modified Paths: -------------- trunk/dports/sysutils/port_cutleaves/Portfile Modified: trunk/dports/sysutils/port_cutleaves/Portfile =================================================================== --- trunk/dports/sysutils/port_cutleaves/Portfile 2010-01-03 09:02:55 UTC (rev 62284) +++ trunk/dports/sysutils/port_cutleaves/Portfile 2010-01-03 09:06:25 UTC (rev 62285) @@ -3,8 +3,7 @@ PortSystem 1.0 name port_cutleaves -version 0.1.1 -revision 0 +version 0.1.2 categories sysutils maintainers perry openmaintainer platforms darwin @@ -19,4 +18,6 @@ master_sites macports -checksums rmd160 93de02ea153ef97323153d831b87cbef05c1c1f0 +checksums md5 dfb0dff60d964ea1560665058cddd07a \ + sha1 deea19c8294d95fb5a2304c70847158087f86401 \ + rmd160 d61ae0576bf648013ce71bbe2851925218ce6523 -------------- next part -------------- An HTML attachment was scrubbed... URL: From toby at macports.org Sun Jan 3 01:40:54 2010 From: toby at macports.org (toby at macports.org) Date: Sun, 3 Jan 2010 01:40:54 -0800 (PST) Subject: [62286] trunk/dports/devel/vttest/Portfile Message-ID: <20100103094055.485413A29ECD@beta.macosforge.org> Revision: 62286 http://trac.macports.org/changeset/62286 Author: toby at macports.org Date: 2010-01-03 01:40:51 -0800 (Sun, 03 Jan 2010) Log Message: ----------- vttest 20091231 Modified Paths: -------------- trunk/dports/devel/vttest/Portfile Modified: trunk/dports/devel/vttest/Portfile =================================================================== --- trunk/dports/devel/vttest/Portfile 2010-01-03 09:06:25 UTC (rev 62285) +++ trunk/dports/devel/vttest/Portfile 2010-01-03 09:40:51 UTC (rev 62286) @@ -3,7 +3,7 @@ PortSystem 1.0 name vttest -version 20071216 +version 20091231 categories devel platforms darwin maintainers vinc17 @@ -12,11 +12,9 @@ emulators. homepage http://invisible-island.net/vttest/ master_sites ftp://invisible-island.net/vttest/ -dist_subdir ${name}/${version} -distname ${name} -checksums md5 490cebc85e531c833dcf14c32790184b \ - sha1 f740b4554c7ae5f04301cd553fd83fdaf915a229 \ - rmd160 bec2e53cc1ada2813aca62f93ab1cafbaa77b93b -worksrcdir ${name}-${version} +extract.suffix .tgz +checksums md5 1978be481e4b923b789ce1e2fb4497f5 \ + sha1 c42328989a272865afbce2b609fc1f1b7190c993 \ + rmd160 7cb5fdd080d3582a3842d00b56088ad1dcddcad3 configure.args --mandir=${prefix}/share/man livecheck.type none -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Sun Jan 3 01:53:54 2010 From: ryandesign at macports.org (ryandesign at macports.org) Date: Sun, 3 Jan 2010 01:53:54 -0800 (PST) Subject: [62287] trunk/dports/php/php5-mysql/Portfile Message-ID: <20100103095354.E59AC3A29F73@beta.macosforge.org> Revision: 62287 http://trac.macports.org/changeset/62287 Author: ryandesign at macports.org Date: 2010-01-03 01:53:51 -0800 (Sun, 03 Jan 2010) Log Message: ----------- php5-mysql: use archcheck portgroup because mysql5 cannot build universal without the no_embedded_server variant Modified Paths: -------------- trunk/dports/php/php5-mysql/Portfile Modified: trunk/dports/php/php5-mysql/Portfile =================================================================== --- trunk/dports/php/php5-mysql/Portfile 2010-01-03 09:40:51 UTC (rev 62286) +++ trunk/dports/php/php5-mysql/Portfile 2010-01-03 09:53:51 UTC (rev 62287) @@ -2,6 +2,7 @@ PortSystem 1.0 PortGroup php5extension 1.0 +PortGroup archcheck 1.0 php5extension.setup {mysql mysqli pdo_mysql} 5.3.1 bundled revision 2 @@ -41,12 +42,14 @@ variant mysql4 conflicts mysql5 mysqlnd description {Use MySQL 4 libraries} { depends_lib-append port:mysql4 + archcheck.files-append lib/mysql/libmysqlclient.dylib configure.args-append --with-mysql=${prefix} \ --with-pdo-mysql=${prefix} } variant mysql5 conflicts mysql4 mysqlnd description {Use MySQL 5 libraries} { depends_lib-append path:bin/mysql_config5:mysql5 + archcheck.files-append lib/mysql5/mysql/libmysqlclient.dylib configure.args-append --with-mysql=${workpath}/mysql5 \ --with-mysqli=${prefix}/bin/mysql_config5 \ --with-pdo-mysql=${prefix}/bin/mysql_config5 \ -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Sun Jan 3 01:54:45 2010 From: portindex at macports.org (portindex at macports.org) Date: Sun, 3 Jan 2010 01:54:45 -0800 (PST) Subject: [62288] trunk/dports/PortIndex Message-ID: <20100103095446.2EC223A29F98@beta.macosforge.org> Revision: 62288 http://trac.macports.org/changeset/62288 Author: portindex at macports.org Date: 2010-01-03 01:54:44 -0800 (Sun, 03 Jan 2010) Log Message: ----------- Total number of ports parsed: 6468 Ports successfully parsed: 6468 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-03 09:53:51 UTC (rev 62287) +++ trunk/dports/PortIndex 2010-01-03 09:54:44 UTC (rev 62288) @@ -2211,7 +2211,7 @@ vstr 274 variants universal portdir devel/vstr description {Vstr string library} homepage http://www.and.org/vstr/ epoch 0 platforms darwin name vstr long_description {Vstr is a safe and fast string library for C.} maintainers nomaintainer categories devel version 1.0.15 revision 0 vttest 314 -variants universal portdir devel/vttest description {VT100/VT220/XTerm test utility} homepage http://invisible-island.net/vttest/ epoch 0 platforms darwin name vttest long_description {Test the compatibility of VT100/VT220/XTerm terminal emulators.} maintainers vinc17 categories devel version 20071216 revision 0 +variants universal portdir devel/vttest description {VT100/VT220/XTerm test utility} homepage http://invisible-island.net/vttest/ epoch 0 platforms darwin name vttest long_description {Test the compatibility of VT100/VT220/XTerm terminal emulators.} maintainers vinc17 categories devel version 20091231 revision 0 vxl 612 variants universal depends_build port:cmake portdir devel/vxl description {C++ libraries for computer vision} homepage http://vxl.sourceforge.net/ epoch 0 platforms darwin name vxl long_description {VXL (the Vision-something-Libraries) is a collection of C++ libraries designed for computer vision research and implementation. It was created from TargetJr and the IUE with the aim of making a light, fast and consistent system. VXL is written in ANSI/ISO C++ and is designed to be portable over many platforms.} maintainers nomaintainer depends_extract bin:unzip:unzip categories devel version 1.12.0 revision 0 wsdlpull 550 @@ -11063,7 +11063,7 @@ poldek 836 variants universal depends_build {port:autoconf port:automake port:libtool} portdir sysutils/poldek description {A full-featured frontend to RPM} homepage http://poldek.pld-linux.org/ epoch 0 platforms darwin name poldek depends_lib {port:rpm port:argp-standalone port:ncurses lib:libpcre:pcre lib:libcheck:check lib:libxml2:libxml2} long_description {poldek is an RPM package management tool which allows you to easily perform package verification, installation (including system installation from scratch), upgrading, and removal. Program can be used in batch (like apt-get from Debian's APT) or interactive mode. The interactive mode puts you into a readline interface with command line autocompletion and history, similar to the shell mode of Perl's CPAN.} maintainers afb categories sysutils version 0.30-cvs20080225.00 revision 0 port_cutleaves 494 -variants universal portdir sysutils/port_cutleaves description {Uninstall {"leaves"} - ports that have no dependents.} homepage http://svn.macports.org/repository/macports/contrib/port_cutleaves/ epoch 0 platforms darwin name port_cutleaves long_description {Inspired by FreeBSD's pkg_cutleaves, port_cutleaves is an interactive script that eases the uninstallation of {"leaves"} - ports that have no dependents.} maintainers {perry openmaintainer} categories sysutils version 0.1.1 revision 0 +variants universal portdir sysutils/port_cutleaves description {Uninstall {"leaves"} - ports that have no dependents.} homepage http://svn.macports.org/repository/macports/contrib/port_cutleaves/ epoch 0 platforms darwin name port_cutleaves long_description {Inspired by FreeBSD's pkg_cutleaves, port_cutleaves is an interactive script that eases the uninstallation of {"leaves"} - ports that have no dependents.} maintainers {perry openmaintainer} categories sysutils version 0.1.2 revision 0 proctools 374 variants darwin portdir sysutils/proctools description {pgrep, pkill and pfind for OpenBSD and Darwin (Mac OS X)} homepage http://sourceforge.net/projects/proctools/ epoch 0 platforms darwin name proctools long_description {The proctools are text-based utilities to scan for and send signals to processes.} maintainers akitada categories sysutils version 0.4pre1 revision 2 pstree 336 -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Sun Jan 3 02:18:30 2010 From: ryandesign at macports.org (ryandesign at macports.org) Date: Sun, 3 Jan 2010 02:18:30 -0800 (PST) Subject: [62289] trunk/dports/databases Message-ID: <20100103101831.4E0303A2A0F6@beta.macosforge.org> Revision: 62289 http://trac.macports.org/changeset/62289 Author: ryandesign at macports.org Date: 2010-01-03 02:18:26 -0800 (Sun, 03 Jan 2010) Log Message: ----------- mysql5, mysql5-server: update to 5.1.42 Modified Paths: -------------- trunk/dports/databases/mysql5/Portfile trunk/dports/databases/mysql5-server/Portfile Modified: trunk/dports/databases/mysql5/Portfile =================================================================== --- trunk/dports/databases/mysql5/Portfile 2010-01-03 09:54:44 UTC (rev 62288) +++ trunk/dports/databases/mysql5/Portfile 2010-01-03 10:18:26 UTC (rev 62289) @@ -5,7 +5,7 @@ name mysql5 conflicts mysql5-devel mysql4 -version 5.1.41 +version 5.1.42 set branch [join [lrange [split ${version} .] 0 1] .] homepage http://www.mysql.com/ categories databases @@ -30,9 +30,9 @@ http://ftp.plusline.de/mysql/Downloads/MySQL-${branch}/ checksums \ - md5 b5d39e8789174753f3c782959729e68c \ - sha1 04f7cf87419ca233c2508c2912d72548767b7e2c \ - rmd160 f99d17a2bb43fc45222c7015a3b65c6b4f686129 + md5 b644b219e130b7c6bca81948f75d72d7 \ + sha1 b16a787b61dfc6f57ff6fb723223598c6f529db1 \ + rmd160 03be40ad07238d0b13d82b3e763f5263962e3bef depends_lib \ port:zlib \ Modified: trunk/dports/databases/mysql5-server/Portfile =================================================================== --- trunk/dports/databases/mysql5-server/Portfile 2010-01-03 09:54:44 UTC (rev 62288) +++ trunk/dports/databases/mysql5-server/Portfile 2010-01-03 10:18:26 UTC (rev 62289) @@ -3,7 +3,7 @@ PortSystem 1.0 name mysql5-server -version 5.1.41 +version 5.1.42 set branch [join [lrange [split ${version} .] 0 1] .] homepage http://www.mysql.com/ categories databases -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Sun Jan 3 02:54:24 2010 From: portindex at macports.org (portindex at macports.org) Date: Sun, 3 Jan 2010 02:54:24 -0800 (PST) Subject: [62290] trunk/dports/PortIndex Message-ID: <20100103105426.BBC8A3A2A433@beta.macosforge.org> Revision: 62290 http://trac.macports.org/changeset/62290 Author: portindex at macports.org Date: 2010-01-03 02:54:21 -0800 (Sun, 03 Jan 2010) Log Message: ----------- Total number of ports parsed: 6468 Ports successfully parsed: 6468 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-03 10:18:26 UTC (rev 62289) +++ trunk/dports/PortIndex 2010-01-03 10:54:21 UTC (rev 62290) @@ -777,11 +777,11 @@ mysql4 397 variants {server universal} portdir databases/mysql4 description {Multithreaded SQL database server} homepage http://www.mysql.com/ epoch 0 platforms darwin depends_lib port:openssl name mysql4 long_description {MySQL is an open-source, multi-threaded SQL database with a command syntax very similar to mSQL.} maintainers {ryandesign openmaintainer} categories databases version 4.1.22 revision 0 mysql5 406 -variants no_embedded_server portdir databases/mysql5 description {Multithreaded SQL database server} homepage http://www.mysql.com/ epoch 0 platforms darwin depends_lib {port:zlib port:openssl port:readline} name mysql5 long_description {MySQL is an open-source, multi-threaded SQL database with a command syntax very similar to mSQL.} maintainers ryandesign categories databases version 5.1.41 revision 0 +variants no_embedded_server portdir databases/mysql5 description {Multithreaded SQL database server} homepage http://www.mysql.com/ epoch 0 platforms darwin depends_lib {port:zlib port:openssl port:readline} name mysql5 long_description {MySQL is an open-source, multi-threaded SQL database with a command syntax very similar to mSQL.} maintainers ryandesign categories databases version 5.1.42 revision 0 mysql5-devel 426 variants no_embedded_server portdir databases/mysql5-devel description {Multithreaded SQL database server} homepage http://www.mysql.com/ epoch 0 platforms darwin depends_lib {port:zlib port:openssl port:readline} name mysql5-devel long_description {MySQL is an open-source, multi-threaded SQL database with a command syntax very similar to mSQL.} maintainers {jwa ryandesign} categories databases version 5.5.0-m2 revision 0 mysql5-server 365 -portdir databases/mysql5-server description {Multithreaded SQL database server} homepage http://www.mysql.com/ epoch 0 depends_run port:mysql5 platforms darwin name mysql5-server maintainers ryandesign long_description {MySQL is an open-source, multi-threaded SQL database with a command syntax very similar to mSQL.} categories databases version 5.1.41 revision 0 +portdir databases/mysql5-server description {Multithreaded SQL database server} homepage http://www.mysql.com/ epoch 0 depends_run port:mysql5 platforms darwin name mysql5-server maintainers ryandesign long_description {MySQL is an open-source, multi-threaded SQL database with a command syntax very similar to mSQL.} categories databases version 5.1.42 revision 0 mysql5-server-devel 391 portdir databases/mysql5-server-devel description {Multithreaded SQL database server} homepage http://www.mysql.com/ epoch 0 depends_run port:mysql5-devel platforms darwin name mysql5-server-devel maintainers {ryandesign jwa} long_description {MySQL is an open-source, multi-threaded SQL database with a command syntax very similar to mSQL.} categories databases version 5.5.0-m2 revision 0 mysqltcl 487 -------------- next part -------------- An HTML attachment was scrubbed... URL: From tommyd at macports.org Sun Jan 3 03:09:22 2010 From: tommyd at macports.org (tommyd at macports.org) Date: Sun, 3 Jan 2010 03:09:22 -0800 (PST) Subject: [62291] trunk/dports/www/ikiwiki/Portfile Message-ID: <20100103110923.312643A2A5B3@beta.macosforge.org> Revision: 62291 http://trac.macports.org/changeset/62291 Author: tommyd at macports.org Date: 2010-01-03 03:09:19 -0800 (Sun, 03 Jan 2010) Log Message: ----------- * new upstream version Modified Paths: -------------- trunk/dports/www/ikiwiki/Portfile Modified: trunk/dports/www/ikiwiki/Portfile =================================================================== --- trunk/dports/www/ikiwiki/Portfile 2010-01-03 10:54:21 UTC (rev 62290) +++ trunk/dports/www/ikiwiki/Portfile 2010-01-03 11:09:19 UTC (rev 62291) @@ -3,7 +3,7 @@ PortSystem 1.0 PortGroup perl5 1.0 -perl5.setup ikiwiki 3.20091218 +perl5.setup ikiwiki 3.20100102.3 revision 1 name ikiwiki categories www perl @@ -23,9 +23,9 @@ patchfiles patch-Makefile.PL.diff -checksums md5 33bbce7eff91c574ef563a9fb18ff7d9 \ - sha1 34259660bc2f502aab2ea3a27fb8406b6cea18bd \ - rmd160 400ce23eb48e20defbee4c8911e3e8a02a17b021 +checksums md5 3f98f8ed2e09e4c63863a365ddba9b1b \ + sha1 fe3ecc98faaae8dbe23346612d70848de5f64bca \ + rmd160 951b63bf1657ed27b83c3b78f26ff6977aa419ba depends_build port:coreutils -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Sun Jan 3 03:54:33 2010 From: portindex at macports.org (portindex at macports.org) Date: Sun, 3 Jan 2010 03:54:33 -0800 (PST) Subject: [62292] trunk/dports Message-ID: <20100103115436.39DAF3A2A951@beta.macosforge.org> Revision: 62292 http://trac.macports.org/changeset/62292 Author: portindex at macports.org Date: 2010-01-03 03:54:30 -0800 (Sun, 03 Jan 2010) Log Message: ----------- Total number of ports parsed: 6468 Ports successfully parsed: 6468 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex trunk/dports/PortIndex.quick Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-03 11:09:19 UTC (rev 62291) +++ trunk/dports/PortIndex 2010-01-03 11:54:30 UTC (rev 62292) @@ -11868,8 +11868,8 @@ variants universal portdir www/http-fetcher description {small, robust, flexible library for HTTP downloads} homepage http://http-fetcher.sourceforge.net/ epoch 0 platforms darwin name http-fetcher long_description {http-fetcher is a small, robust, flexible library for downloading files via HTTP using the GET method.} maintainers nomaintainer categories www version 1.1.0 revision 0 httperf 922 variants universal portdir www/httperf description {tool for measuring webserver performance} homepage http://www.hpl.hp.com/research/linux/httperf/ epoch 0 platforms darwin name httperf depends_lib port:openssl long_description {httperf is a tool for measuring web server performance. It provides a flexible facility for generating various HTTP workloads and for measuring server performance. The focus of httperf is not on implementing one particular benchmark but on providing a robust, high-performance tool that facilitates the construction of both micro- and macro-level benchmarks. The three distinguishing characteristics of httperf are its robustness, which includes the ability to generate and sustain server overload, support for the HTTP/1.1 protocol, and its extensibility to new workload generators and performance measurements.} maintainers nomaintainer categories {www benchmarks} version 0.9.0 revision 1 -ikiwiki 964 -depends_build port:coreutils portdir www/ikiwiki description {A wiki compiler.} homepage http://ikiwiki.info/ epoch 0 platforms darwin name ikiwiki depends_lib {path:bin/perl:perl5 port:p5-cgi-formbuilder port:p5-cgi-session port:p5-data-dumper port:p5-html-parser port:p5-html-scrubber port:p5-html-template port:p5-html-tree port:p5-mail-sendmail port:p5-text-markdown port:p5-uri port:p5-timedate port:p5-xml-simple port:p5-crypt-ssleay port:p5-digest-sha1 port:p5-file-mimeinfo port:p5-locale-gettext port:p5-rpc-xml port:p5-text-csv port:p5-text-wikiformat port:p5-xml-feed} long_description {Ikiwiki is a wiki compiler. It converts wiki pages into HTML pages suitable for publishing on a website. Ikiwiki stores pages and history in a revision control system such as Subversion or Git. There are many other features, including support for blogging, as well as a large array of plugins.} maintainers tommyd categories {www perl} version 3.20091218 revision 1 +ikiwiki 966 +depends_build port:coreutils portdir www/ikiwiki description {A wiki compiler.} homepage http://ikiwiki.info/ epoch 0 platforms darwin name ikiwiki depends_lib {path:bin/perl:perl5 port:p5-cgi-formbuilder port:p5-cgi-session port:p5-data-dumper port:p5-html-parser port:p5-html-scrubber port:p5-html-template port:p5-html-tree port:p5-mail-sendmail port:p5-text-markdown port:p5-uri port:p5-timedate port:p5-xml-simple port:p5-crypt-ssleay port:p5-digest-sha1 port:p5-file-mimeinfo port:p5-locale-gettext port:p5-rpc-xml port:p5-text-csv port:p5-text-wikiformat port:p5-xml-feed} long_description {Ikiwiki is a wiki compiler. It converts wiki pages into HTML pages suitable for publishing on a website. Ikiwiki stores pages and history in a revision control system such as Subversion or Git. There are many other features, including support for blogging, as well as a large array of plugins.} maintainers tommyd categories {www perl} version 3.20100102.3 revision 1 jetty 685 portdir www/jetty description {Java HTTP Servlet Server} homepage http://www.mortbay.org/jetty/ epoch 0 platforms darwin name jetty maintainers landonf long_description {Jetty is a 100% Java HTTP Server and Servlet Container. Jetty is a fully featured web server for static and dynamic content. Unlike separate server/container solutions, this means that your web server and web application run in the same process, without interconnection overheads and complications. Furthermore, as a pure java component, Jetty can be simply included in your application for demonstration, distribution or deployment.} depends_extract bin:unzip:unzip categories {www java} version 5.1.10 revision 0 libhtmlparse 493 Modified: trunk/dports/PortIndex.quick =================================================================== (Binary files differ) -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Sun Jan 3 04:40:28 2010 From: ryandesign at macports.org (ryandesign at macports.org) Date: Sun, 3 Jan 2010 04:40:28 -0800 (PST) Subject: [62293] trunk/dports/php Message-ID: <20100103124028.820B13A2B0B1@beta.macosforge.org> Revision: 62293 http://trac.macports.org/changeset/62293 Author: ryandesign at macports.org Date: 2010-01-03 04:40:25 -0800 (Sun, 03 Jan 2010) Log Message: ----------- php5-htscanner: new port, version 0.9.0 Added Paths: ----------- trunk/dports/php/php5-htscanner/ trunk/dports/php/php5-htscanner/Portfile Added: trunk/dports/php/php5-htscanner/Portfile =================================================================== --- trunk/dports/php/php5-htscanner/Portfile (rev 0) +++ trunk/dports/php/php5-htscanner/Portfile 2010-01-03 12:40:25 UTC (rev 62293) @@ -0,0 +1,28 @@ +# $Id$ + +PortSystem 1.0 +PortGroup php5extension 1.0 + +php5extension.setup htscanner 0.9.0 pecl +categories-append www +platforms darwin +maintainers ryandesign + +description a PHP extension to enable the use of per-directory \ + htaccess-like PHP configuration files + +long_description ${name} is ${description}, especially useful when \ + using PHP as a FastCGI executable. + +checksums md5 ad8f28e4cdfec6d3a5a990e1531a1a12 \ + sha1 7aacd63b56df54a1b465fe1e0e30a91ede91f3af \ + rmd160 2dc035d98d3caa0054fafbe3fc12b04caed6b7dc + +use_parallel_build yes + +post-destroot { + xinstall -d ${destroot}${prefix}/share/doc/${name} + xinstall -m 644 -W ${worksrcpath} CREDITS README docs/htscanner.ini ${destroot}${prefix}/share/doc/${name} +} + +livecheck.regex {>(\d+(?:\.\d+)*(?:p\d+)?)} Property changes on: trunk/dports/php/php5-htscanner/Portfile ___________________________________________________________________ Added: svn:keywords + Id Added: svn:eol-style + native -------------- next part -------------- An HTML attachment was scrubbed... URL: From nox at macports.org Sun Jan 3 04:47:59 2010 From: nox at macports.org (nox at macports.org) Date: Sun, 3 Jan 2010 04:47:59 -0800 (PST) Subject: [62294] trunk/dports/databases/mysql5/files/patch-mysql_secure_installation .sh.diff Message-ID: <20100103124800.3D9DE3A2B178@beta.macosforge.org> Revision: 62294 http://trac.macports.org/changeset/62294 Author: nox at macports.org Date: 2010-01-03 04:47:59 -0800 (Sun, 03 Jan 2010) Log Message: ----------- Fix mysql5 patch which was not updated for 5.1.42 Modified Paths: -------------- trunk/dports/databases/mysql5/files/patch-mysql_secure_installation.sh.diff Modified: trunk/dports/databases/mysql5/files/patch-mysql_secure_installation.sh.diff =================================================================== --- trunk/dports/databases/mysql5/files/patch-mysql_secure_installation.sh.diff 2010-01-03 12:40:25 UTC (rev 62293) +++ trunk/dports/databases/mysql5/files/patch-mysql_secure_installation.sh.diff 2010-01-03 12:47:59 UTC (rev 62294) @@ -1,9 +1,9 @@ --- scripts/mysql_secure_installation.sh 2008-08-04 07:20:02.000000000 -0500 +++ scripts/mysql_secure_installation.sh 2008-09-13 20:46:27.000000000 -0500 -@@ -39,7 +39,7 @@ - +@@ -40,7 +40,7 @@ do_query() { - echo $1 >$command + echo "$1" >$command + #sed 's,^,> ,' < $command # Debugging - mysql --defaults-file=$config <$command + @BINDIR@/mysql --defaults-file=$config <$command return $? -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Sun Jan 3 04:54:55 2010 From: portindex at macports.org (portindex at macports.org) Date: Sun, 3 Jan 2010 04:54:55 -0800 (PST) Subject: [62295] trunk/dports Message-ID: <20100103125456.214723A2B1D1@beta.macosforge.org> Revision: 62295 http://trac.macports.org/changeset/62295 Author: portindex at macports.org Date: 2010-01-03 04:54:54 -0800 (Sun, 03 Jan 2010) Log Message: ----------- Total number of ports parsed: 6469 Ports successfully parsed: 6469 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex trunk/dports/PortIndex.quick Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-03 12:47:59 UTC (rev 62294) +++ trunk/dports/PortIndex 2010-01-03 12:54:54 UTC (rev 62295) @@ -7678,6 +7678,8 @@ variants {debug universal} portdir php/php5-gmp description {a PHP interface to GMP, the GNU multiprocessing library through which you can work with arbitrary-length integers} homepage http://www.php.net/gmp epoch 0 platforms darwin name php5-gmp depends_lib {path:bin/phpize:php5 port:gmp} maintainers ryandesign long_description {{a PHP interface to GMP, the GNU multiprocessing library through which you can work with arbitrary-length integers}} categories {php devel math} version 5.3.1 revision 2 php5-gtk 487 variants {extra html libsexy sourceview spell universal} portdir php/php5-gtk description {PHP-GTK: Gtk+ bindings for PHP 5.} homepage http://gtk.php.net/ epoch 0 platforms {darwin freebsd} name php5-gtk depends_lib {port:gtk2 path:bin/php:php5 port:libglade2} long_description {PHP-GTK is a Gtk+ bindings for the PHP 5 scripting language, allowing you to build rich, cross-platform desktop applications using PHP.} maintainers kix.in:anant categories {php x11} version 2.0.1 revision 0 +php5-htscanner 539 +variants {debug universal} portdir php/php5-htscanner description {a PHP extension to enable the use of per-directory htaccess-like PHP configuration files} homepage http://pecl.php.net/package/htscanner/ epoch 0 platforms darwin name php5-htscanner depends_lib path:bin/phpize:php5 maintainers ryandesign long_description {php5-htscanner is {a PHP extension to enable the use of per-directory htaccess-like PHP configuration files,} especially useful when using PHP as a FastCGI executable.} categories {php www} version 0.9.0 revision 0 php5-http 813 variants {debug universal} portdir php/php5-http description {Extended HTTP Support} homepage http://pecl.php.net/package/pecl_http/ epoch 0 platforms darwin name php5-http depends_lib {path:bin/phpize:php5 port:curl port:zlib} maintainers {nox openmaintainer} long_description {This HTTP extension aims to provide a convenient and powerful set of functionality for one of PHPs major applications. It eases handling of HTTP urls, dates, redirects, headers and messages, provides means for negotiation of clients preferred language and charset, as well as a convenient way to send any arbitrary data with caching and resuming capabilities. It provides powerful request functionality, if built with CURL support. Parallel requests are available for PHP 5 and greater.} categories {php www} version 1.6.6 revision 1 php5-iconv 427 Modified: trunk/dports/PortIndex.quick =================================================================== (Binary files differ) -------------- next part -------------- An HTML attachment was scrubbed... URL: From easieste at macports.org Sun Jan 3 06:38:27 2010 From: easieste at macports.org (easieste at macports.org) Date: Sun, 3 Jan 2010 06:38:27 -0800 (PST) Subject: [62296] trunk/dports/lang/sbcl Message-ID: <20100103143827.E2A5F3A2BA72@beta.macosforge.org> Revision: 62296 http://trac.macports.org/changeset/62296 Author: easieste at macports.org Date: 2010-01-03 06:38:22 -0800 (Sun, 03 Jan 2010) Log Message: ----------- Another try at SBCL: remove all tests that fail via macros for darwin. Modified Paths: -------------- trunk/dports/lang/sbcl/Portfile trunk/dports/lang/sbcl/files/patch-posix-tests.diff Modified: trunk/dports/lang/sbcl/Portfile =================================================================== --- trunk/dports/lang/sbcl/Portfile 2010-01-03 12:54:54 UTC (rev 62295) +++ trunk/dports/lang/sbcl/Portfile 2010-01-03 14:38:22 UTC (rev 62296) @@ -4,10 +4,10 @@ name sbcl version 1.0.33 -revision 1 +revision 2 set subrevision "" categories lang -maintainers gwright waqar +maintainers gwright waqar easieste platforms darwin description The Steel Bank Common Lisp system long_description \ @@ -64,7 +64,6 @@ patchfiles patch-use-mach-exception-handler.diff \ patch-posix-tests.diff - distfiles ${name}-${version}-source${subrevision}${extract.suffix} Modified: trunk/dports/lang/sbcl/files/patch-posix-tests.diff =================================================================== --- trunk/dports/lang/sbcl/files/patch-posix-tests.diff 2010-01-03 12:54:54 UTC (rev 62295) +++ trunk/dports/lang/sbcl/files/patch-posix-tests.diff 2010-01-03 14:38:22 UTC (rev 62296) @@ -1,20 +1,34 @@ ---- contrib/sb-posix/posix-tests.lisp.orig 2009-10-29 13:36:30.000000000 +0100 -+++ contrib/sb-posix/posix-tests.lisp 2009-10-29 13:37:17.000000000 +0100 -@@ -109,7 +109,7 @@ - (sb-posix:syscall-error (c) +--- contrib/sb-posix/posix-tests.lisp.orig 2009-10-25 09:24:59.000000000 +0100 ++++ contrib/sb-posix/posix-tests.lisp 2010-01-03 15:25:54.000000000 +0100 +@@ -103,6 +103,7 @@ (sb-posix:syscall-errno c))) - #-win32 -- #.sb-posix::eexist -+ #.sb-posix::eisdir - #+win32 - #.sb-posix:eacces) + #.sb-posix::eexist) -@@ -168,7 +168,7 @@ - (sb-posix:syscall-error (c) - (sb-posix:syscall-errno c))) - #-win32 -- #.sb-posix::ebusy -+ #.sb-posix::eisdir ++#-darwin + (deftest mkdir.error.2 + (handler-case + (sb-posix:mkdir #-win32 "/" #+win32 "C:/" 0) +@@ -162,6 +163,7 @@ #+win32 - #.sb-posix::eacces) + #.sb-posix::einval) ++#-darwin + (deftest rmdir.error.3 + (handler-case + (sb-posix:rmdir #-win32 "/" #+win32 "C:/") +@@ -326,6 +328,7 @@ + (,mode (sb-posix::stat-mode ,stat))) + , at body))) + ++#-darwin + (deftest stat-mode.1 + (with-stat-mode (mode *test-directory*) + (sb-posix:s-isreg mode)) +@@ -506,6 +509,7 @@ + (sb-posix:closedir dir)))) + nil) + ++#-darwin + (deftest readdir.1 + (let ((dir (sb-posix:opendir "/"))) + (unwind-protect -------------- next part -------------- An HTML attachment was scrubbed... URL: From nox at macports.org Sun Jan 3 06:39:24 2010 From: nox at macports.org (nox at macports.org) Date: Sun, 3 Jan 2010 06:39:24 -0800 (PST) Subject: [62297] trunk/dports/devel/iso-codes/Portfile Message-ID: <20100103143924.33B143A2BAD3@beta.macosforge.org> Revision: 62297 http://trac.macports.org/changeset/62297 Author: nox at macports.org Date: 2010-01-03 06:39:23 -0800 (Sun, 03 Jan 2010) Log Message: ----------- Update iso-codes to 3.12.1 Modified Paths: -------------- trunk/dports/devel/iso-codes/Portfile Modified: trunk/dports/devel/iso-codes/Portfile =================================================================== --- trunk/dports/devel/iso-codes/Portfile 2010-01-03 14:38:22 UTC (rev 62296) +++ trunk/dports/devel/iso-codes/Portfile 2010-01-03 14:39:23 UTC (rev 62297) @@ -4,9 +4,10 @@ PortSystem 1.0 name iso-codes -version 3.12 +version 3.12.1 categories devel platforms darwin +license LGPLv2.1 maintainers nomaintainer description ISO country, language and currency codes and translations @@ -18,9 +19,9 @@ master_sites ftp://pkg-isocodes.alioth.debian.org/pub/pkg-isocodes/ use_bzip2 yes -checksums md5 eaf4b2141513481eb03b1ab6ccaec298 \ - sha1 7b7c40b59cb94f9d76e7184aa0f26cc4717637d5 \ - rmd160 f5810c6fc1fb3880306efe214dd554dded22cab3 +checksums md5 a7b726594ca9d4b3b71481db7b7630e2 \ + sha1 dc3d9ca09432db590627097f5f5914cfcd165937 \ + rmd160 ffc5d010641fbd16cfdbab367311f4acc5e5ec92 depends_build port:gettext @@ -29,8 +30,16 @@ ${worksrcpath}/iso2pot.py } +use_parallel_build yes + +post-destroot { + xinstall -d ${destroot}${prefix}/share/doc/${name} + xinstall -m 644 -W ${worksrcpath} ChangeLog LICENSE README TODO \ + ${destroot}${prefix}/share/doc/${name} +} + universal_variant no livecheck.type regex livecheck.url ${master_sites} -livecheck.regex "${name}-(\\d+(?:\\.\\d+)*)${extract.suffix}" +livecheck.regex ${name}-(\\d+(?:\\.\\d+)*) -------------- next part -------------- An HTML attachment was scrubbed... URL: From nox at macports.org Sun Jan 3 06:39:41 2010 From: nox at macports.org (nox at macports.org) Date: Sun, 3 Jan 2010 06:39:41 -0800 (PST) Subject: [62298] trunk/dports/perl/p5-uri/Portfile Message-ID: <20100103143941.EC0B23A2BB08@beta.macosforge.org> Revision: 62298 http://trac.macports.org/changeset/62298 Author: nox at macports.org Date: 2010-01-03 06:39:40 -0800 (Sun, 03 Jan 2010) Log Message: ----------- Update p5-uri to 1.52 Modified Paths: -------------- trunk/dports/perl/p5-uri/Portfile Modified: trunk/dports/perl/p5-uri/Portfile =================================================================== --- trunk/dports/perl/p5-uri/Portfile 2010-01-03 14:39:23 UTC (rev 62297) +++ trunk/dports/perl/p5-uri/Portfile 2010-01-03 14:39:40 UTC (rev 62298) @@ -4,7 +4,7 @@ PortSystem 1.0 PortGroup perl5 1.0 -perl5.setup URI 1.51 +perl5.setup URI 1.52 platforms darwin maintainers nox openmaintainer description Uniform Resource Identifiers (absolute and relative) @@ -14,16 +14,16 @@ implements the URI class. Objects of this class represent Uniform Resource \ Identifier references as specified in RFC 2396 and updated by RFC 2732. -checksums md5 cadd0061b5f77dbd5adfad124d1d3cca \ - sha1 33331b4ffb9d61d86507dae007850676fafefd26 \ - rmd160 4414705b11d0389050d1ea78918ad1536abb5575 +checksums md5 d6ba96cc3e650af6537675e016e83d3e \ + sha1 8287bd4ad8e305b0f723ca0db60fb9da14ef1a16 \ + rmd160 f2dc883a9fb052f049a2df0e374bf2c1f3990fb5 use_parallel_build yes post-destroot { set docdir ${prefix}/share/doc/${name} xinstall -d ${destroot}${docdir} - xinstall -m 644 -W $worksrcpath Changes README $destroot$docdir + xinstall -m 644 -W ${worksrcpath} Changes README ${destroot}${docdir} } universal_variant no -------------- next part -------------- An HTML attachment was scrubbed... URL: From nox at macports.org Sun Jan 3 06:39:59 2010 From: nox at macports.org (nox at macports.org) Date: Sun, 3 Jan 2010 06:39:59 -0800 (PST) Subject: [62299] trunk/dports/php/php5-xdebug/Portfile Message-ID: <20100103144000.08DAF3A2BB3D@beta.macosforge.org> Revision: 62299 http://trac.macports.org/changeset/62299 Author: nox at macports.org Date: 2010-01-03 06:39:58 -0800 (Sun, 03 Jan 2010) Log Message: ----------- Fix php5-xdebug livecheck Modified Paths: -------------- trunk/dports/php/php5-xdebug/Portfile Modified: trunk/dports/php/php5-xdebug/Portfile =================================================================== --- trunk/dports/php/php5-xdebug/Portfile 2010-01-03 14:39:40 UTC (rev 62298) +++ trunk/dports/php/php5-xdebug/Portfile 2010-01-03 14:39:58 UTC (rev 62299) @@ -48,4 +48,5 @@ } livecheck.type regex -livecheck.regex {Xdebug (\d+(\.\d+)*)} +livecheck.url http://www.xdebug.org/updates.php +livecheck.regex {Xdebug (\d+(\.\d+)*)<} -------------- next part -------------- An HTML attachment was scrubbed... URL: From nox at macports.org Sun Jan 3 06:40:18 2010 From: nox at macports.org (nox at macports.org) Date: Sun, 3 Jan 2010 06:40:18 -0800 (PST) Subject: [62300] trunk/dports/devel/readline Message-ID: <20100103144018.480763A2BB64@beta.macosforge.org> Revision: 62300 http://trac.macports.org/changeset/62300 Author: nox at macports.org Date: 2010-01-03 06:40:16 -0800 (Sun, 03 Jan 2010) Log Message: ----------- Update readline to 6.1.000 Modified Paths: -------------- trunk/dports/devel/readline/Portfile Removed Paths: ------------- trunk/dports/devel/readline/files/config.cache Modified: trunk/dports/devel/readline/Portfile =================================================================== --- trunk/dports/devel/readline/Portfile 2010-01-03 14:39:58 UTC (rev 62299) +++ trunk/dports/devel/readline/Portfile 2010-01-03 14:40:16 UTC (rev 62300) @@ -4,10 +4,9 @@ PortGroup muniversal 1.0 name readline -set milestone 6.0 +set milestone 6.1 set patchlevel 000 version ${milestone}.${patchlevel} -revision 2 distname ${name}-${milestone} categories devel platforms darwin freebsd @@ -43,9 +42,9 @@ reinplace "s|__MACPORTS_PATCHLEVEL__|${patchlevel}|" ${worksrcpath}/support/shobj-conf } -checksums md5 b7f65a48add447693be6e86f04a63019 \ - sha1 1e511b091514ef631c539552316787c75ace5262 \ - rmd160 9f886f437dfa3387cb3a4ce3439cefecffc2c789 +checksums md5 fc2f7e714fe792db1ce6ddc4c9fb4ef3 \ + sha1 54840a0dc907e7fa598d7ffcdcbd17bae69ace83 \ + rmd160 b50f47a3952e354655056d9684b05ee65027e291 configure.args --with-curses @@ -56,7 +55,7 @@ depends_lib port:ncurses post-destroot { - set docdir ${prefix}/share/doc/${name}-${version} + set docdir ${prefix}/share/doc/${name} xinstall -d ${destroot}${docdir}/html xinstall -m 0644 -W ${worksrcpath} CHANGELOG CHANGES COPYING NEWS README \ ${destroot}${docdir} @@ -82,25 +81,12 @@ configure.args-delete --disable-dependency-tracking } - if { ${os.arch}=="i386" } { - if { ${os.major} >= 10 } { - set merger_configure_args(ppc) --config-cache - } - set merger_configure_args(ppc64) --config-cache - } else { - set merger_configure_args(i386) --config-cache - set merger_configure_args(x86_64) --config-cache - } - - post-extract { - # Answers to questions configure can't determine without running a program. - copy ${filespath}/config.cache ${worksrcpath} - } + configure.args-append bash_cv_must_reinstall_sighandlers=no \ + bash_cv_func_sigsetjmp=present \ + bash_cv_func_strcoll_broken=no \ + bash_cv_func_ctype_nonascii=yes } else { configure.ldflags-append "-arch ${configure.build_arch}" } -livecheck.type regex -livecheck.url http://ftp.gnu.org/pub/gnu/${name}/?C=M&O=D -livecheck.regex ${name}-(\\d+(?:\\.\\d+)*) livecheck.version ${milestone} Deleted: trunk/dports/devel/readline/files/config.cache =================================================================== --- trunk/dports/devel/readline/files/config.cache 2010-01-03 14:39:58 UTC (rev 62299) +++ trunk/dports/devel/readline/files/config.cache 2010-01-03 14:40:16 UTC (rev 62300) @@ -1,4 +0,0 @@ -bash_cv_must_reinstall_sighandlers=no -bash_cv_func_sigsetjmp=present -bash_cv_func_strcoll_broken=no -bash_cv_func_ctype_nonascii=yes -------------- next part -------------- An HTML attachment was scrubbed... URL: From nox at macports.org Sun Jan 3 06:40:36 2010 From: nox at macports.org (nox at macports.org) Date: Sun, 3 Jan 2010 06:40:36 -0800 (PST) Subject: [62301] trunk/dports/net/rsync Message-ID: <20100103144036.D1FA63A2BBB5@beta.macosforge.org> Revision: 62301 http://trac.macports.org/changeset/62301 Author: nox at macports.org Date: 2010-01-03 06:40:35 -0800 (Sun, 03 Jan 2010) Log Message: ----------- Update rsync to 3.0.7 and remove no_macosx_metadata variant The flags provided by the Mac OS X medata patches are not enabled by default, so there is no need to make them a variant. Modified Paths: -------------- trunk/dports/net/rsync/Portfile trunk/dports/net/rsync/files/patch-crtimes.diff trunk/dports/net/rsync/files/patch-fileflags.diff Modified: trunk/dports/net/rsync/Portfile =================================================================== --- trunk/dports/net/rsync/Portfile 2010-01-03 14:40:16 UTC (rev 62300) +++ trunk/dports/net/rsync/Portfile 2010-01-03 14:40:35 UTC (rev 62301) @@ -3,7 +3,7 @@ PortSystem 1.0 name rsync -version 3.0.6 +version 3.0.7 categories net platforms darwin freebsd sunos maintainers simon openmaintainer @@ -13,29 +13,25 @@ under the GNU General Public License and is currently \ being maintained by Wayne Davison. \ \ - Rsync version 3.0.6 has been released. This is a \ + Rsync version ${version} has been released. This is a \ bug-fix release. Related pages: \ http://rsync.samba.org/ftp/rsync/rsync-${version}-NEWS homepage http://samba.org/rsync/ master_sites http://rsync.samba.org/ftp/rsync/ \ http://rsync.samba.org/ftp/rsync/src/ -checksums ${distname}${extract.suffix} \ - md5 e9865d093a18e4668b9d31b635dc8e99 \ - sha1 8853dfd291b3850aafa60169d2eea8601498f713 \ - rmd160 881ecea519b97d1a7f326b021ebac939ac2fe091 -distname rsync-${version} +checksums md5 b53525900817cf1ba7ad3a516ab5bfe9 \ + sha1 63426a1bc71991d93159cd522521fbacdafb7a61 \ + rmd160 aa3bdec0d7692ac1de52f2efc925e9a34bbd917b + depends_lib port:popt port:libiconv patchfiles patch-fileflags.diff \ patch-crtimes.diff patch.pre_args -p1 -configure.args --mandir=${prefix}/share/man \ - --with-rsyncd-conf=${prefix}/etc/rsyncd.conf \ - --enable-ipv6 \ - --enable-xattr-support +configure.args --with-rsyncd-conf=${prefix}/etc/rsyncd.conf configure.cflags "-Os -I${prefix}/include" pre-configure { @@ -43,7 +39,7 @@ } post-destroot { - xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name} + xinstall -d ${destroot}${prefix}/share/doc/${name} xinstall -m 644 -W ${worksrcpath} \ COPYING INSTALL NEWS OLDNEWS TODO README doc/README-SGML \ doc/profile.txt doc/rsync.sgml \ @@ -53,12 +49,6 @@ livecheck.type regex livecheck.regex "Rsync version (\\d+(?:\\.\\d+)*) released" -variant no_macosx_metadata description {Don't preserve Mac OS X file \ - flags and creation times} { - patchfiles-delete fileflags.diff \ - crtimes.diff -} - variant rsyncd description {Installs rsyncd.conf and a StartupItem for rsyncd} { post-destroot { xinstall -m 644 ${filespath}/rsyncd.conf.example \ Modified: trunk/dports/net/rsync/files/patch-crtimes.diff =================================================================== --- trunk/dports/net/rsync/files/patch-crtimes.diff 2010-01-03 14:40:16 UTC (rev 62300) +++ trunk/dports/net/rsync/files/patch-crtimes.diff 2010-01-03 14:40:35 UTC (rev 62301) @@ -8,10 +8,11 @@ ./configure (optional if already run) make +based-on: patch/b3.0.x/fileflags diff --git a/compat.c b/compat.c --- a/compat.c +++ b/compat.c -@@ -45,6 +45,7 @@ extern int force_change; +@@ -46,6 +46,7 @@ extern int force_change; extern int protect_args; extern int preserve_uid; extern int preserve_gid; @@ -19,7 +20,7 @@ extern int preserve_fileflags; extern int preserve_acls; extern int preserve_xattrs; -@@ -63,7 +64,7 @@ extern char *iconv_opt; +@@ -64,7 +65,7 @@ extern char *iconv_opt; #endif /* These index values are for the file-list's extra-attribute array. */ @@ -28,7 +29,7 @@ int receiver_symlink_times = 0; /* receiver can set the time on a symlink */ int sender_symlink_iconv = 0; /* sender should convert symlink content */ -@@ -139,6 +140,8 @@ void setup_protocol(int f_out,int f_in) +@@ -141,6 +142,8 @@ void setup_protocol(int f_out,int f_in) uid_ndx = ++file_extra_cnt; if (preserve_gid) gid_ndx = ++file_extra_cnt; @@ -40,7 +41,7 @@ diff --git a/flist.c b/flist.c --- a/flist.c +++ b/flist.c -@@ -56,6 +56,7 @@ extern int preserve_fileflags; +@@ -56,6 +56,7 @@ extern int delete_during; extern int uid_ndx; extern int gid_ndx; extern int eol_nulls; @@ -48,7 +49,7 @@ extern int relative_paths; extern int implied_dirs; extern int file_extra_cnt; -@@ -394,7 +395,7 @@ static void send_file_entry(int f, const char *fname, struct file_struct *file, +@@ -395,7 +396,7 @@ static void send_file_entry(int f, const char *fname, struct file_struct *file, #endif int ndx, int first_ndx) { @@ -57,7 +58,7 @@ static mode_t mode; #ifdef SUPPORT_FILEFLAGS static uint32 fileflags; -@@ -489,6 +490,13 @@ static void send_file_entry(int f, const char *fname, struct file_struct *file, +@@ -490,6 +491,13 @@ static void send_file_entry(int f, const char *fname, struct file_struct *file, xflags |= XMIT_SAME_TIME; else modtime = file->modtime; @@ -71,7 +72,7 @@ #ifdef SUPPORT_HARD_LINKS if (tmp_dev != 0) { -@@ -558,6 +566,8 @@ static void send_file_entry(int f, const char *fname, struct file_struct *file, +@@ -559,6 +567,8 @@ static void send_file_entry(int f, const char *fname, struct file_struct *file, else write_int(f, modtime); } @@ -80,7 +81,7 @@ if (!(xflags & XMIT_SAME_MODE)) write_int(f, to_wire_mode(mode)); #ifdef SUPPORT_FILEFLAGS -@@ -648,7 +658,7 @@ static void send_file_entry(int f, const char *fname, struct file_struct *file, +@@ -649,7 +659,7 @@ static void send_file_entry(int f, const char *fname, struct file_struct *file, static struct file_struct *recv_file_entry(struct file_list *flist, int xflags, int f) { @@ -89,7 +90,7 @@ static mode_t mode; #ifdef SUPPORT_FILEFLAGS static uint32 fileflags; -@@ -754,6 +764,8 @@ static struct file_struct *recv_file_entry(struct file_list *flist, +@@ -755,6 +765,8 @@ static struct file_struct *recv_file_entry(struct file_list *flist, uid = F_OWNER(first); if (preserve_gid) gid = F_GROUP(first); @@ -98,7 +99,7 @@ if (preserve_devices && IS_DEVICE(mode)) { uint32 *devp = F_RDEV_P(first); rdev = MAKEDEV(DEV_MAJOR(devp), DEV_MINOR(devp)); -@@ -782,6 +794,19 @@ static struct file_struct *recv_file_entry(struct file_list *flist, +@@ -783,6 +795,19 @@ static struct file_struct *recv_file_entry(struct file_list *flist, } else modtime = read_int(f); } @@ -118,7 +119,7 @@ if (!(xflags & XMIT_SAME_MODE)) mode = from_wire_mode(read_int(f)); -@@ -942,6 +967,8 @@ static struct file_struct *recv_file_entry(struct file_list *flist, +@@ -943,6 +968,8 @@ static struct file_struct *recv_file_entry(struct file_list *flist, F_GROUP(file) = gid; file->flags |= gid_flags; } @@ -127,7 +128,7 @@ if (unsort_ndx) F_NDX(file) = flist->used + flist->ndx_start; -@@ -1318,6 +1345,8 @@ struct file_struct *make_file(const char *fname, struct file_list *flist, +@@ -1319,6 +1346,8 @@ struct file_struct *make_file(const char *fname, struct file_list *flist, F_OWNER(file) = st.st_uid; if (gid_ndx) /* Check gid_ndx instead of preserve_gid for del support */ F_GROUP(file) = st.st_gid; @@ -231,7 +232,7 @@ diff --git a/hlink.c b/hlink.c --- a/hlink.c +++ b/hlink.c -@@ -366,6 +366,7 @@ int hard_link_check(struct file_struct *file, int ndx, const char *fname, +@@ -370,6 +370,7 @@ int hard_link_check(struct file_struct *file, int ndx, const char *fname, char cmpbuf[MAXPATHLEN]; stat_x alt_sx; int j = 0; @@ -239,7 +240,7 @@ #ifdef SUPPORT_ACLS alt_sx.acc_acl = alt_sx.def_acl = NULL; #endif -@@ -494,6 +495,7 @@ void finish_hard_link(struct file_struct *file, const char *fname, int fin_ndx, +@@ -498,6 +499,7 @@ void finish_hard_link(struct file_struct *file, const char *fname, int fin_ndx, } else our_name = fname; @@ -303,7 +304,7 @@ int update_only = 0; int cvs_exclude = 0; int dry_run = 0; -@@ -363,6 +364,7 @@ void usage(enum logcode F) +@@ -362,6 +363,7 @@ void usage(enum logcode F) rprintf(F," -D same as --devices --specials\n"); rprintf(F," -t, --times preserve modification times\n"); rprintf(F," -O, --omit-dir-times omit directories from --times\n"); @@ -311,7 +312,7 @@ rprintf(F," --super receiver attempts super-user activities\n"); #ifdef SUPPORT_XATTRS rprintf(F," --fake-super store/recover privileged attrs using xattrs\n"); -@@ -509,6 +511,9 @@ static struct poptOption long_options[] = { +@@ -508,6 +510,9 @@ static struct poptOption long_options[] = { {"times", 't', POPT_ARG_VAL, &preserve_times, 2, 0, 0 }, {"no-times", 0, POPT_ARG_VAL, &preserve_times, 0, 0, 0 }, {"no-t", 0, POPT_ARG_VAL, &preserve_times, 0, 0, 0 }, @@ -321,7 +322,7 @@ {"omit-dir-times", 'O', POPT_ARG_VAL, &omit_dir_times, 1, 0, 0 }, {"no-omit-dir-times",0, POPT_ARG_VAL, &omit_dir_times, 0, 0, 0 }, {"no-O", 0, POPT_ARG_VAL, &omit_dir_times, 0, 0, 0 }, -@@ -1806,6 +1811,8 @@ void server_options(char **args, int *argc_p) +@@ -1805,6 +1810,8 @@ void server_options(char **args, int *argc_p) argstr[x++] = 'D'; if (preserve_times) argstr[x++] = 't'; @@ -333,7 +334,7 @@ diff --git a/rsync.c b/rsync.c --- a/rsync.c +++ b/rsync.c -@@ -428,6 +428,7 @@ int set_file_attrs(const char *fname, struct file_struct *file, stat_x *sxp, +@@ -427,6 +427,7 @@ int set_file_attrs(const char *fname, struct file_struct *file, stat_x *sxp, full_fname(fname)); return 0; } @@ -341,7 +342,7 @@ #ifdef SUPPORT_ACLS sx2.acc_acl = sx2.def_acl = NULL; #endif -@@ -475,6 +476,14 @@ int set_file_attrs(const char *fname, struct file_struct *file, stat_x *sxp, +@@ -474,6 +475,14 @@ int set_file_attrs(const char *fname, struct file_struct *file, stat_x *sxp, else file->flags |= FLAG_TIME_FAILED; } @@ -356,7 +357,7 @@ change_uid = am_root && uid_ndx && sxp->st.st_uid != (uid_t)F_OWNER(file); change_gid = gid_ndx && !(file->flags & FLAG_SKIP_GROUP) -@@ -622,7 +631,7 @@ int finish_transfer(const char *fname, const char *fnametmp, +@@ -621,7 +630,7 @@ int finish_transfer(const char *fname, const char *fnametmp, /* Change permissions before putting the file into place. */ set_file_attrs(fnametmp, file, NULL, fnamecmp, ATTRS_DELAY_IMMUTABLE @@ -365,7 +366,7 @@ /* move tmp file over real file */ if (verbose > 2) -@@ -653,7 +662,7 @@ int finish_transfer(const char *fname, const char *fnametmp, +@@ -652,7 +661,7 @@ int finish_transfer(const char *fname, const char *fnametmp, do_set_file_attrs: set_file_attrs(fnametmp, file, NULL, fnamecmp, @@ -377,15 +378,15 @@ diff --git a/rsync.h b/rsync.h --- a/rsync.h +++ b/rsync.h -@@ -60,6 +60,7 @@ - #define XMIT_RDEV_MINOR_8_pre30 (1<<11) /* protocols 28 - 29 */ +@@ -61,6 +61,7 @@ #define XMIT_GROUP_NAME_FOLLOWS (1<<11) /* protocols 30 - now */ #define XMIT_HLINK_FIRST (1<<12) /* protocols 30 - now (HLINKED files only) */ + #define XMIT_IO_ERROR_ENDLIST (1<<12) /* protocols 31*- now (w/XMIT_EXTENDED_FLAGS) (also protocol 30 w/'f' compat flag) */ +#define XMIT_CRTIME_EQ_MTIME (1<<13) /* protocols ?? - now */ #define XMIT_SAME_FLAGS (1<<14) /* protocols ?? - now */ /* These flags are used in the live flist data. */ -@@ -156,6 +157,7 @@ +@@ -157,6 +158,7 @@ #define ATTRS_REPORT (1<<0) #define ATTRS_SKIP_MTIME (1<<1) #define ATTRS_DELAY_IMMUTABLE (1<<2) @@ -393,7 +394,7 @@ #define FULL_FLUSH 1 #define NORMAL_FLUSH 0 -@@ -172,7 +174,7 @@ +@@ -173,7 +175,7 @@ #define FNAMECMP_FUZZY 0x83 /* For use by the itemize_changes code */ @@ -402,7 +403,7 @@ #define ITEM_REPORT_CHANGE (1<<1) #define ITEM_REPORT_SIZE (1<<2) /* regular files only */ #define ITEM_REPORT_TIMEFAIL (1<<2) /* symlinks only */ -@@ -657,6 +659,7 @@ extern int file_extra_cnt; +@@ -658,6 +660,7 @@ extern int file_extra_cnt; extern int inc_recurse; extern int uid_ndx; extern int gid_ndx; @@ -410,7 +411,7 @@ extern int fileflags_ndx; extern int acls_ndx; extern int xattrs_ndx; -@@ -664,6 +667,7 @@ extern int xattrs_ndx; +@@ -665,6 +668,7 @@ extern int xattrs_ndx; #define FILE_STRUCT_LEN (offsetof(struct file_struct, basename)) #define EXTRA_LEN (sizeof (union file_extras)) #define PTR_EXTRA_CNT ((sizeof (char *) + EXTRA_LEN - 1) / EXTRA_LEN) @@ -418,7 +419,7 @@ #define DEV_EXTRA_CNT 2 #define DIRNODE_EXTRA_CNT 3 #define SUM_EXTRA_CNT ((MAX_DIGEST_LEN + EXTRA_LEN - 1) / EXTRA_LEN) -@@ -931,6 +935,7 @@ typedef struct { +@@ -932,6 +936,7 @@ typedef struct { typedef struct { STRUCT_STAT st; @@ -447,7 +448,7 @@ dit(bf(--super)) This tells the receiving side to attempt super-user activities even if the receiving rsync wasn't run by the super-user. These activities include: preserving users via the bf(--owner) option, preserving -@@ -1715,7 +1719,7 @@ with older versions of rsync, but that also turns on the output of other +@@ -1717,7 +1721,7 @@ with older versions of rsync, but that also turns on the output of other verbose messages). The "%i" escape has a cryptic output that is 11 letters long. The general @@ -456,7 +457,7 @@ type of update being done, bf(X) is replaced by the file-type, and the other letters represent attributes that may be output if they are being modified. -@@ -1774,6 +1778,8 @@ quote(itemization( +@@ -1776,6 +1780,8 @@ quote(itemization( it() The bf(f) means that the fileflags information changed. it() The bf(a) means that the ACL information changed. it() The bf(x) means that the extended attribute information changed. @@ -693,23 +694,23 @@ +.IP .IP "\fB\-\-super\fP" This tells the receiving side to attempt super-user - activities even if the receiving rsync wasn't run by the super-user. These -@@ -1961,7 +1966,7 @@ with older versions of rsync, but that a + activities even if the receiving rsync wasn\(cq\&t run by the super-user. These +@@ -1963,7 +1968,7 @@ with older versions of rsync, but that a verbose messages). .IP - The \(lq%i\(rq escape has a cryptic output that is 11 letters long. The general + The \(dq\&%i\(dq\& escape has a cryptic output that is 11 letters long. The general -format is like the string \fBYXcstpogfax\fP, where \fBY\fP is replaced by the +format is like the string \fBYXcstpogfaxn\fP, where \fBY\fP is replaced by the type of update being done, \fBX\fP is replaced by the file-type, and the other letters represent attributes that may be output if they are being modified. -@@ -2036,6 +2041,9 @@ The \fBf\fP means that the fileflags inf +@@ -2038,6 +2043,9 @@ The \fBf\fP means that the fileflags inf The \fBa\fP means that the ACL information changed. .IP o The \fBx\fP means that the extended attribute information changed. +.IP o +A \fBn\fP means the create time (newness) is different and is being -+updated to the sender's value (requires \fB\-\-crtimes\fP). ++updated to the sender\(cq\&s value (requires \fB\-\-crtimes\fP). .RE .IP Modified: trunk/dports/net/rsync/files/patch-fileflags.diff =================================================================== --- trunk/dports/net/rsync/files/patch-fileflags.diff 2010-01-03 14:40:16 UTC (rev 62300) +++ trunk/dports/net/rsync/files/patch-fileflags.diff 2010-01-03 14:40:35 UTC (rev 62301) @@ -8,6 +8,7 @@ ./configure make +based-on: 54f00c3f89fc147f2f9cba89d26a5bb1d20e783b diff --git a/Makefile.in b/Makefile.in --- a/Makefile.in +++ b/Makefile.in @@ -32,7 +33,7 @@ diff --git a/compat.c b/compat.c --- a/compat.c +++ b/compat.c -@@ -41,9 +41,11 @@ extern int checksum_seed; +@@ -42,9 +42,11 @@ extern int checksum_seed; extern int basis_dir_cnt; extern int prune_empty_dirs; extern int protocol_version; @@ -44,7 +45,7 @@ extern int preserve_acls; extern int preserve_xattrs; extern int need_messages_from_generator; -@@ -61,7 +63,7 @@ extern char *iconv_opt; +@@ -62,7 +64,7 @@ extern char *iconv_opt; #endif /* These index values are for the file-list's extra-attribute array. */ @@ -53,7 +54,7 @@ int receiver_symlink_times = 0; /* receiver can set the time on a symlink */ int sender_symlink_iconv = 0; /* sender should convert symlink content */ -@@ -137,6 +139,8 @@ void setup_protocol(int f_out,int f_in) +@@ -139,6 +141,8 @@ void setup_protocol(int f_out,int f_in) uid_ndx = ++file_extra_cnt; if (preserve_gid) gid_ndx = ++file_extra_cnt; @@ -65,27 +66,26 @@ diff --git a/configure.in b/configure.in --- a/configure.in +++ b/configure.in -@@ -551,7 +551,7 @@ AC_CHECK_FUNCS(waitpid wait4 getcwd strdup chown chmod lchmod mknod mkfifo \ +@@ -567,6 +567,7 @@ AC_FUNC_UTIME_NULL + AC_FUNC_ALLOCA + AC_CHECK_FUNCS(waitpid wait4 getcwd strdup chown chmod lchmod mknod mkfifo \ + fchmod fstat ftruncate strchr readlink link utime utimes lutimes strftime \ ++ chflags \ memmove lchown vsnprintf snprintf vasprintf asprintf setsid strpbrk \ strlcat strlcpy strtol mallinfo getgroups setgroups geteuid getegid \ setlocale setmode open64 lseek64 mkstemp64 mtrace va_copy __va_copy \ -- strerror putenv iconv_open locale_charset nl_langinfo getxattr \ -+ chflags strerror putenv iconv_open locale_charset nl_langinfo getxattr \ - extattr_get_link sigaction sigprocmask setattrlist) - - dnl cygwin iconv.h defines iconv_open as libiconv_open diff --git a/flist.c b/flist.c --- a/flist.c +++ b/flist.c -@@ -52,6 +52,7 @@ extern int preserve_links; +@@ -51,6 +51,7 @@ extern int preserve_links; extern int preserve_hard_links; extern int preserve_devices; extern int preserve_specials; +extern int preserve_fileflags; + extern int delete_during; extern int uid_ndx; extern int gid_ndx; - extern int eol_nulls; -@@ -395,6 +396,9 @@ static void send_file_entry(int f, const char *fname, struct file_struct *file, +@@ -396,6 +397,9 @@ static void send_file_entry(int f, const char *fname, struct file_struct *file, { static time_t modtime; static mode_t mode; @@ -95,7 +95,7 @@ #ifdef SUPPORT_HARD_LINKS static int64 dev; #endif -@@ -424,6 +428,14 @@ static void send_file_entry(int f, const char *fname, struct file_struct *file, +@@ -425,6 +429,14 @@ static void send_file_entry(int f, const char *fname, struct file_struct *file, xflags |= XMIT_SAME_MODE; else mode = file->mode; @@ -110,7 +110,7 @@ if (preserve_devices && IS_DEVICE(mode)) { if (protocol_version < 28) { -@@ -548,6 +560,10 @@ static void send_file_entry(int f, const char *fname, struct file_struct *file, +@@ -549,6 +561,10 @@ static void send_file_entry(int f, const char *fname, struct file_struct *file, } if (!(xflags & XMIT_SAME_MODE)) write_int(f, to_wire_mode(mode)); @@ -121,7 +121,7 @@ if (preserve_uid && !(xflags & XMIT_SAME_UID)) { if (protocol_version < 30) write_int(f, uid); -@@ -634,6 +650,9 @@ static struct file_struct *recv_file_entry(struct file_list *flist, +@@ -635,6 +651,9 @@ static struct file_struct *recv_file_entry(struct file_list *flist, { static int64 modtime; static mode_t mode; @@ -131,7 +131,7 @@ #ifdef SUPPORT_HARD_LINKS static int64 dev; #endif -@@ -768,6 +787,10 @@ static struct file_struct *recv_file_entry(struct file_list *flist, +@@ -769,6 +788,10 @@ static struct file_struct *recv_file_entry(struct file_list *flist, if (chmod_modes && !S_ISLNK(mode)) mode = tweak_mode(mode, chmod_modes); @@ -142,7 +142,7 @@ if (preserve_uid && !(xflags & XMIT_SAME_UID)) { if (protocol_version < 30) -@@ -909,6 +932,10 @@ static struct file_struct *recv_file_entry(struct file_list *flist, +@@ -910,6 +933,10 @@ static struct file_struct *recv_file_entry(struct file_list *flist, } #endif file->mode = mode; @@ -153,7 +153,7 @@ if (preserve_uid) F_OWNER(file) = uid; if (preserve_gid) { -@@ -1283,6 +1310,10 @@ struct file_struct *make_file(const char *fname, struct file_list *flist, +@@ -1284,6 +1311,10 @@ struct file_struct *make_file(const char *fname, struct file_list *flist, } #endif file->mode = st.st_mode; @@ -164,7 +164,7 @@ if (uid_ndx) /* Check uid_ndx instead of preserve_uid for del support */ F_OWNER(file) = st.st_uid; if (gid_ndx) /* Check gid_ndx instead of preserve_gid for del support */ -@@ -1426,6 +1457,7 @@ static struct file_struct *send_file_name(int f, struct file_list *flist, +@@ -1427,6 +1458,7 @@ static struct file_struct *send_file_name(int f, struct file_list *flist, #endif #ifdef SUPPORT_XATTRS if (preserve_xattrs) { @@ -286,10 +286,10 @@ #ifdef SUPPORT_HARD_LINKS if (preserve_hard_links && F_HLINK_NOT_FIRST(file) -@@ -2058,13 +2094,17 @@ static void touch_up_dirs(struct file_list *flist, int ndx) +@@ -2061,13 +2097,17 @@ static void touch_up_dirs(struct file_list *flist, int ndx) continue; fname = f_name(file, NULL); - if (!(file->mode & S_IWUSR)) + if (fix_dir_perms) - do_chmod(fname, file->mode); + do_chmod(fname, file->mode, 0); if (need_retouch_dir_times) { @@ -329,7 +329,7 @@ int preserve_executability = 0; int preserve_devices = 0; int preserve_specials = 0; -@@ -85,6 +86,7 @@ int implied_dirs = 1; +@@ -84,6 +85,7 @@ int implied_dirs = 1; int numeric_ids = 0; int allow_8bit_chars = 0; int force_delete = 0; @@ -337,7 +337,7 @@ int io_timeout = 0; int allowed_lull = 0; int prune_empty_dirs = 0; -@@ -225,6 +227,7 @@ static void print_rsync_version(enum logcode f) +@@ -224,6 +226,7 @@ static void print_rsync_version(enum logcode f) char const *links = "no "; char const *iconv = "no "; char const *ipv6 = "no "; @@ -345,7 +345,7 @@ STRUCT_STAT *dumstat; #if SUBPROTOCOL_VERSION != 0 -@@ -258,6 +261,9 @@ static void print_rsync_version(enum logcode f) +@@ -257,6 +260,9 @@ static void print_rsync_version(enum logcode f) #if defined HAVE_LUTIMES && defined HAVE_UTIMES symtimes = ""; #endif @@ -355,7 +355,7 @@ rprintf(f, "%s version %s protocol version %d%s\n", RSYNC_NAME, RSYNC_VERSION, PROTOCOL_VERSION, subprotocol); -@@ -271,8 +277,8 @@ static void print_rsync_version(enum logcode f) +@@ -270,8 +276,8 @@ static void print_rsync_version(enum logcode f) (int)(sizeof (int64) * 8)); rprintf(f, " %ssocketpairs, %shardlinks, %ssymlinks, %sIPv6, batchfiles, %sinplace,\n", got_socketpair, hardlinks, links, ipv6, have_inplace); @@ -366,7 +366,7 @@ #ifdef MAINTAINER_MODE rprintf(f, "Panic Action: \"%s\"\n", get_panic_action()); -@@ -339,6 +345,9 @@ void usage(enum logcode F) +@@ -338,6 +344,9 @@ void usage(enum logcode F) rprintf(F," -K, --keep-dirlinks treat symlinked dir on receiver as dir\n"); rprintf(F," -H, --hard-links preserve hard links\n"); rprintf(F," -p, --perms preserve permissions\n"); @@ -376,7 +376,7 @@ rprintf(F," -E, --executability preserve the file's executability\n"); rprintf(F," --chmod=CHMOD affect file and/or directory permissions\n"); #ifdef SUPPORT_ACLS -@@ -376,7 +385,12 @@ void usage(enum logcode F) +@@ -375,7 +384,12 @@ void usage(enum logcode F) rprintf(F," --delete-after receiver deletes after transfer, not during\n"); rprintf(F," --delete-excluded also delete excluded files from destination dirs\n"); rprintf(F," --ignore-errors delete even if there are I/O errors\n"); @@ -390,7 +390,7 @@ rprintf(F," --max-delete=NUM don't delete more than NUM files\n"); rprintf(F," --max-size=SIZE don't transfer any file larger than SIZE\n"); rprintf(F," --min-size=SIZE don't transfer any file smaller than SIZE\n"); -@@ -481,6 +495,10 @@ static struct poptOption long_options[] = { +@@ -480,6 +494,10 @@ static struct poptOption long_options[] = { {"perms", 'p', POPT_ARG_VAL, &preserve_perms, 1, 0, 0 }, {"no-perms", 0, POPT_ARG_VAL, &preserve_perms, 0, 0, 0 }, {"no-p", 0, POPT_ARG_VAL, &preserve_perms, 0, 0, 0 }, @@ -401,7 +401,7 @@ {"executability", 'E', POPT_ARG_NONE, &preserve_executability, 0, 0, 0 }, {"acls", 'A', POPT_ARG_NONE, 0, 'A', 0, 0 }, {"no-acls", 0, POPT_ARG_VAL, &preserve_acls, 0, 0, 0 }, -@@ -559,6 +577,14 @@ static struct poptOption long_options[] = { +@@ -558,6 +576,14 @@ static struct poptOption long_options[] = { {"remove-source-files",0,POPT_ARG_VAL, &remove_source_files, 1, 0, 0 }, {"force", 0, POPT_ARG_VAL, &force_delete, 1, 0, 0 }, {"no-force", 0, POPT_ARG_VAL, &force_delete, 0, 0, 0 }, @@ -454,7 +454,7 @@ extern int preserve_executability; extern int preserve_times; extern int am_root; -@@ -377,6 +378,39 @@ mode_t dest_mode(mode_t flist_mode, mode_t stat_mode, int dflt_perms, +@@ -376,6 +377,39 @@ mode_t dest_mode(mode_t flist_mode, mode_t stat_mode, int dflt_perms, return new_mode; } @@ -494,7 +494,7 @@ int set_file_attrs(const char *fname, struct file_struct *file, stat_x *sxp, const char *fnamecmp, int flags) { -@@ -430,7 +464,7 @@ int set_file_attrs(const char *fname, struct file_struct *file, stat_x *sxp, +@@ -429,7 +463,7 @@ int set_file_attrs(const char *fname, struct file_struct *file, stat_x *sxp, flags |= ATTRS_SKIP_MTIME; if (!(flags & ATTRS_SKIP_MTIME) && cmp_time(sxp->st.st_mtime, file->modtime) != 0) { @@ -503,7 +503,7 @@ if (ret < 0) { rsyserr(FERROR_XFER, errno, "failed to set times on %s", full_fname(fname)); -@@ -466,7 +500,8 @@ int set_file_attrs(const char *fname, struct file_struct *file, stat_x *sxp, +@@ -465,7 +499,8 @@ int set_file_attrs(const char *fname, struct file_struct *file, stat_x *sxp, if (am_root >= 0) { if (do_lchown(fname, change_uid ? (uid_t)F_OWNER(file) : sxp->st.st_uid, @@ -513,7 +513,7 @@ /* We shouldn't have attempted to change uid * or gid unless have the privilege. */ rsyserr(FERROR_XFER, errno, "%s %s failed", -@@ -498,7 +533,7 @@ int set_file_attrs(const char *fname, struct file_struct *file, stat_x *sxp, +@@ -497,7 +532,7 @@ int set_file_attrs(const char *fname, struct file_struct *file, stat_x *sxp, #ifdef HAVE_CHMOD if (!BITS_EQUAL(sxp->st.st_mode, new_mode, CHMOD_BITS)) { @@ -522,7 +522,7 @@ if (ret < 0) { rsyserr(FERROR_XFER, errno, "failed to set permissions on %s", -@@ -510,6 +545,19 @@ int set_file_attrs(const char *fname, struct file_struct *file, stat_x *sxp, +@@ -509,6 +544,19 @@ int set_file_attrs(const char *fname, struct file_struct *file, stat_x *sxp, } #endif @@ -542,7 +542,7 @@ if (verbose > 1 && flags & ATTRS_REPORT) { if (updated) rprintf(FCLIENT, "%s\n", fname); -@@ -573,7 +621,8 @@ int finish_transfer(const char *fname, const char *fnametmp, +@@ -572,7 +620,8 @@ int finish_transfer(const char *fname, const char *fnametmp, /* Change permissions before putting the file into place. */ set_file_attrs(fnametmp, file, NULL, fnamecmp, @@ -552,7 +552,7 @@ /* move tmp file over real file */ if (verbose > 2) -@@ -592,6 +641,10 @@ int finish_transfer(const char *fname, const char *fnametmp, +@@ -591,6 +640,10 @@ int finish_transfer(const char *fname, const char *fnametmp, } if (ret == 0) { /* The file was moved into place (not copied), so it's done. */ @@ -566,15 +566,15 @@ diff --git a/rsync.h b/rsync.h --- a/rsync.h +++ b/rsync.h -@@ -60,6 +60,7 @@ - #define XMIT_RDEV_MINOR_8_pre30 (1<<11) /* protocols 28 - 29 */ +@@ -61,6 +61,7 @@ #define XMIT_GROUP_NAME_FOLLOWS (1<<11) /* protocols 30 - now */ #define XMIT_HLINK_FIRST (1<<12) /* protocols 30 - now (HLINKED files only) */ + #define XMIT_IO_ERROR_ENDLIST (1<<12) /* protocols 31*- now (w/XMIT_EXTENDED_FLAGS) (also protocol 30 w/'f' compat flag) */ +#define XMIT_SAME_FLAGS (1<<14) /* protocols ?? - now */ /* These flags are used in the live flist data. */ -@@ -154,6 +155,7 @@ +@@ -155,6 +156,7 @@ #define ATTRS_REPORT (1<<0) #define ATTRS_SKIP_MTIME (1<<1) @@ -582,7 +582,7 @@ #define FULL_FLUSH 1 #define NORMAL_FLUSH 0 -@@ -180,6 +182,7 @@ +@@ -181,6 +183,7 @@ #define ITEM_REPORT_GROUP (1<<6) #define ITEM_REPORT_ACL (1<<7) #define ITEM_REPORT_XATTR (1<<8) @@ -590,7 +590,7 @@ #define ITEM_BASIS_TYPE_FOLLOWS (1<<11) #define ITEM_XNAME_FOLLOWS (1<<12) #define ITEM_IS_NEW (1<<13) -@@ -462,6 +465,28 @@ typedef unsigned int size_t; +@@ -463,6 +466,28 @@ typedef unsigned int size_t; #endif #endif @@ -619,7 +619,7 @@ /* Find a variable that is either exactly 32-bits or longer. * If some code depends on 32-bit truncation, it will need to * take special action in a "#if SIZEOF_INT32 > 4" section. */ -@@ -632,6 +657,7 @@ extern int file_extra_cnt; +@@ -633,6 +658,7 @@ extern int file_extra_cnt; extern int inc_recurse; extern int uid_ndx; extern int gid_ndx; @@ -627,7 +627,7 @@ extern int acls_ndx; extern int xattrs_ndx; -@@ -669,6 +695,11 @@ extern int xattrs_ndx; +@@ -670,6 +696,11 @@ extern int xattrs_ndx; /* When the associated option is on, all entries will have these present: */ #define F_OWNER(f) REQ_EXTRA(f, uid_ndx)->unum #define F_GROUP(f) REQ_EXTRA(f, gid_ndx)->unum @@ -710,8 +710,8 @@ + dit(bf(--chmod)) This option tells rsync to apply one or more comma-separated "chmod" strings to the permission of the files in the - transfer. The resulting value is treated as though it was the permissions -@@ -1216,12 +1244,13 @@ See bf(--delete) (which is implied) for more details on file-deletion. + transfer. The resulting value is treated as though it were the permissions +@@ -1217,12 +1245,13 @@ See bf(--delete) (which is implied) for more details on file-deletion. dit(bf(--ignore-errors)) Tells bf(--delete) to go ahead and delete files even when there are I/O errors. @@ -728,7 +728,7 @@ bf(--recursive) option was also enabled. dit(bf(--max-delete=NUM)) This tells rsync not to delete more than NUM -@@ -1686,7 +1715,7 @@ with older versions of rsync, but that also turns on the output of other +@@ -1688,7 +1717,7 @@ with older versions of rsync, but that also turns on the output of other verbose messages). The "%i" escape has a cryptic output that is 11 letters long. The general @@ -737,7 +737,7 @@ type of update being done, bf(X) is replaced by the file-type, and the other letters represent attributes that may be output if they are being modified. -@@ -1742,7 +1771,7 @@ quote(itemization( +@@ -1744,7 +1773,7 @@ quote(itemization( sender's value (requires bf(--owner) and super-user privileges). it() A bf(g) means the group is different and is being updated to the sender's value (requires bf(--group) and the authority to set the group). @@ -1097,21 +1097,14 @@ diff -up a/configure.sh b/configure.sh --- a/configure.sh +++ b/configure.sh -@@ -15031,12 +15031,13 @@ fi +@@ -7351,6 +7351,7 @@ fi - - -+ for ac_func in waitpid wait4 getcwd strdup chown chmod lchmod mknod mkfifo \ fchmod fstat ftruncate strchr readlink link utime utimes lutimes strftime \ ++ chflags \ memmove lchown vsnprintf snprintf vasprintf asprintf setsid strpbrk \ strlcat strlcpy strtol mallinfo getgroups setgroups geteuid getegid \ setlocale setmode open64 lseek64 mkstemp64 mtrace va_copy __va_copy \ -- strerror putenv iconv_open locale_charset nl_langinfo getxattr \ -+ chflags strerror putenv iconv_open locale_charset nl_langinfo getxattr \ - extattr_get_link sigaction sigprocmask setattrlist - do - as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` diff -up a/proto.h b/proto.h --- a/proto.h +++ b/proto.h @@ -1168,9 +1161,9 @@ + \-\-force\-change affect user/system immutable files/dirs + \-\-force\-uchange affect user-immutable files/dirs + \-\-force\-schange affect system-immutable files/dirs - \-\-max\-delete=NUM don't delete more than NUM files - \-\-max\-size=SIZE don't transfer any file larger than SIZE - \-\-min\-size=SIZE don't transfer any file smaller than SIZE + \-\-max\-delete=NUM don'\&t delete more than NUM files + \-\-max\-size=SIZE don'\&t transfer any file larger than SIZE + \-\-min\-size=SIZE don'\&t transfer any file smaller than SIZE @@ -638,7 +642,8 @@ specified, in which case \fB\-r\fP is no .IP Note that \fB\-a\fP \fBdoes not preserve hardlinks\fP, because @@ -1223,8 +1216,8 @@ +.IP .IP "\fB\-\-chmod\fP" This option tells rsync to apply one or more - comma-separated \(lqchmod\(rq strings to the permission of the files in the -@@ -1386,13 +1418,14 @@ See \fB\-\-delete\fP (which is implied) + comma-separated \(dq\&chmod\(dq\& strings to the permission of the files in the +@@ -1387,13 +1419,14 @@ See \fB\-\-delete\fP (which is implied) Tells \fB\-\-delete\fP to go ahead and delete files even when there are I/O errors. .IP @@ -1242,18 +1235,18 @@ \fB\-\-recursive\fP option was also enabled. .IP .IP "\fB\-\-max\-delete=NUM\fP" -@@ -1928,7 +1961,7 @@ with older versions of rsync, but that a +@@ -1930,7 +1963,7 @@ with older versions of rsync, but that a verbose messages). .IP - The \(lq%i\(rq escape has a cryptic output that is 11 letters long. The general + The \(dq\&%i\(dq\& escape has a cryptic output that is 11 letters long. The general -format is like the string \fBYXcstpoguax\fP, where \fBY\fP is replaced by the +format is like the string \fBYXcstpogfax\fP, where \fBY\fP is replaced by the type of update being done, \fBX\fP is replaced by the file-type, and the other letters represent attributes that may be output if they are being modified. -@@ -1998,7 +2031,7 @@ sender's value (requires \fB\-\-owner\fP +@@ -2000,7 +2033,7 @@ sender\(cq\&s value (requires \fB\-\-own A \fBg\fP means the group is different and is being updated to the - sender's value (requires \fB\-\-group\fP and the authority to set the group). + sender\(cq\&s value (requires \fB\-\-group\fP and the authority to set the group). .IP o -The \fBu\fP slot is reserved for future use. +The \fBf\fP means that the fileflags information changed. -------------- next part -------------- An HTML attachment was scrubbed... URL: From nox at macports.org Sun Jan 3 06:40:47 2010 From: nox at macports.org (nox at macports.org) Date: Sun, 3 Jan 2010 06:40:47 -0800 (PST) Subject: [62302] trunk/dports/java/xalanj/Portfile Message-ID: <20100103144047.66BF63A2BBE2@beta.macosforge.org> Revision: 62302 http://trac.macports.org/changeset/62302 Author: nox at macports.org Date: 2010-01-03 06:40:45 -0800 (Sun, 03 Jan 2010) Log Message: ----------- Update xalanj to 2.7.1 Modified Paths: -------------- trunk/dports/java/xalanj/Portfile Modified: trunk/dports/java/xalanj/Portfile =================================================================== --- trunk/dports/java/xalanj/Portfile 2010-01-03 14:40:35 UTC (rev 62301) +++ trunk/dports/java/xalanj/Portfile 2010-01-03 14:40:45 UTC (rev 62302) @@ -3,8 +3,7 @@ PortSystem 1.0 name xalanj -version 2.7.0 -revision 1 +version 2.7.1 categories java textproc maintainers jberry openmaintainer @@ -21,8 +20,11 @@ set ver2 [string map ". _" $version] distname xalan-j_${ver2}-src master_sites apache:xml/xalan-j/source/ -checksums md5 7859a78a5564cae42c933adcbbecdd01 +checksums md5 fc805051f0fe505c7a4b1b5c8db9b9e3 \ + sha1 dfaac3bd3e18a8961c27b3d07b7405bd8a15d64a \ + rmd160 021c239122b6b3d0bc9781abd9675c7cb5951b13 + depends_build bin:ant:apache-ant depends_lib bin:java:kaffe depends_run port:xercesj @@ -35,7 +37,7 @@ build.target all docs javadocs destroot { - xinstall -m 755 -d ${destroot}${prefix}/share/java \ + xinstall -d ${destroot}${prefix}/share/java \ ${destroot}${prefix}/share/doc xinstall -m 644 \ ${worksrcpath}/build/xalan.jar \ -------------- next part -------------- An HTML attachment was scrubbed... URL: From nox at macports.org Sun Jan 3 06:41:01 2010 From: nox at macports.org (nox at macports.org) Date: Sun, 3 Jan 2010 06:41:01 -0800 (PST) Subject: [62303] trunk/dports/java/xom/Portfile Message-ID: <20100103144102.17A6D3A2BC0D@beta.macosforge.org> Revision: 62303 http://trac.macports.org/changeset/62303 Author: nox at macports.org Date: 2010-01-03 06:41:00 -0800 (Sun, 03 Jan 2010) Log Message: ----------- Fix xom livecheck Modified Paths: -------------- trunk/dports/java/xom/Portfile Modified: trunk/dports/java/xom/Portfile =================================================================== --- trunk/dports/java/xom/Portfile 2010-01-03 14:40:45 UTC (rev 62302) +++ trunk/dports/java/xom/Portfile 2010-01-03 14:41:00 UTC (rev 62303) @@ -37,3 +37,6 @@ file copy ${worksrcpath}/build/apidocs \ ${destroot}${prefix}/share/doc/${name} } + +livecheck.type regex +livecheck.regex {xom-(\d+(?:\.\d+)*)\.jar} -------------- next part -------------- An HTML attachment was scrubbed... URL: From nox at macports.org Sun Jan 3 06:41:17 2010 From: nox at macports.org (nox at macports.org) Date: Sun, 3 Jan 2010 06:41:17 -0800 (PST) Subject: [62304] trunk/dports/java/xom Message-ID: <20100103144117.506063A2BC40@beta.macosforge.org> Revision: 62304 http://trac.macports.org/changeset/62304 Author: nox at macports.org Date: 2010-01-03 06:41:16 -0800 (Sun, 03 Jan 2010) Log Message: ----------- Update xom to 1.2.4 Modified Paths: -------------- trunk/dports/java/xom/Portfile Added Paths: ----------- trunk/dports/java/xom/files/ trunk/dports/java/xom/files/patch-build.xml.diff Modified: trunk/dports/java/xom/Portfile =================================================================== --- trunk/dports/java/xom/Portfile 2010-01-03 14:41:00 UTC (rev 62303) +++ trunk/dports/java/xom/Portfile 2010-01-03 14:41:16 UTC (rev 62304) @@ -3,7 +3,7 @@ PortSystem 1.0 name xom -version 1.0 +version 1.2.4 categories java devel textproc platforms darwin @@ -16,21 +16,27 @@ homepage http://www.xom.nu/ master_sites http://www.cafeconleche.org/XOM/ -checksums md5 af472e90685eef0ac1e731eb84a49763 +checksums md5 f226cdce8e799ba1e36d5e57ff58e826 \ + sha1 fc57de2fed7b6d950b2d4fde3c1ffbc08fc07cf2 \ + rmd160 936e7da6fabbd7afb9fc0a0adaecd404263dbdf6 + depends_build bin:ant:apache-ant depends_lib bin:java:kaffe worksrcdir XOM + +patchfiles patch-build.xml.diff + use_configure no build.cmd ant build.target jar javadoc build.env "" -build.args "" +build.args -Djaxen.dir=${prefix}/share/java/jaxen.jar destroot { - xinstall -m 755 -d ${destroot}${prefix}/share/java \ + xinstall -d ${destroot}${prefix}/share/java \ ${destroot}${prefix}/share/doc xinstall -m 644 ${worksrcpath}/build/xom-${version}.jar \ ${destroot}${prefix}/share/java/xom.jar Added: trunk/dports/java/xom/files/patch-build.xml.diff =================================================================== --- trunk/dports/java/xom/files/patch-build.xml.diff (rev 0) +++ trunk/dports/java/xom/files/patch-build.xml.diff 2010-01-03 14:41:16 UTC (rev 62304) @@ -0,0 +1,22 @@ +--- build.xml.orig 2010-01-03 15:28:32.000000000 +0100 ++++ build.xml 2010-01-03 15:28:57.000000000 +0100 +@@ -209,7 +209,7 @@ + + + +- + + +- +- +- + + + -------------- next part -------------- An HTML attachment was scrubbed... URL: From nox at macports.org Sun Jan 3 06:41:33 2010 From: nox at macports.org (nox at macports.org) Date: Sun, 3 Jan 2010 06:41:33 -0800 (PST) Subject: [62305] trunk/dports/x11/xorg-libpthread-stubs/Portfile Message-ID: <20100103144133.DF08C3A2BC6F@beta.macosforge.org> Revision: 62305 http://trac.macports.org/changeset/62305 Author: nox at macports.org Date: 2010-01-03 06:41:32 -0800 (Sun, 03 Jan 2010) Log Message: ----------- Update xorg-libpthread-stubs to 0.3 Modified Paths: -------------- trunk/dports/x11/xorg-libpthread-stubs/Portfile Modified: trunk/dports/x11/xorg-libpthread-stubs/Portfile =================================================================== --- trunk/dports/x11/xorg-libpthread-stubs/Portfile 2010-01-03 14:41:16 UTC (rev 62304) +++ trunk/dports/x11/xorg-libpthread-stubs/Portfile 2010-01-03 14:41:32 UTC (rev 62305) @@ -3,7 +3,7 @@ PortSystem 1.0 name xorg-libpthread-stubs -version 0.1 +version 0.3 categories x11 devel maintainers jeremyhu openmaintainer description X.org/Xcb libpthread stubs @@ -13,9 +13,12 @@ master_sites ${homepage}/dist/ distname libpthread-stubs-${version} -checksums sha1 34ef40880d0112dc6d32b386d59ce94f2c139eef use_bzip2 yes +checksums md5 e8fa31b42e13f87e8f5a7a2b731db7ee \ + sha1 7fc486ad0ec54938f8b781cc374218f50eac8b99 \ + rmd160 a3a5f76e103c645749d7b8a8fc00ad472e59987b + universal_variant no livecheck.type regex -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Sun Jan 3 06:54:51 2010 From: portindex at macports.org (portindex at macports.org) Date: Sun, 3 Jan 2010 06:54:51 -0800 (PST) Subject: [62306] trunk/dports Message-ID: <20100103145453.DEA463A2BD39@beta.macosforge.org> Revision: 62306 http://trac.macports.org/changeset/62306 Author: portindex at macports.org Date: 2010-01-03 06:54:48 -0800 (Sun, 03 Jan 2010) Log Message: ----------- Total number of ports parsed: 6469 Ports successfully parsed: 6469 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex trunk/dports/PortIndex.quick Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-03 14:41:32 UTC (rev 62305) +++ trunk/dports/PortIndex 2010-01-03 14:54:48 UTC (rev 62306) @@ -1520,8 +1520,8 @@ variants universal portdir devel/inform description {A Z-Code (Infocom Text Adventures) compiler} homepage http://www.inform-fiction.org/ epoch 0 platforms darwin name inform long_description {Inform is a programming language and design system for interactive fiction, created in 1993 by Graham Nelson.} maintainers tritarget.com:vim categories devel version 6.31.1 revision 0 inventor 825 variants {debug imagelib} portdir devel/inventor description {SGI Open InventorTM graphics toolkit} homepage http://oss.sgi.com/projects/inventor/ epoch 0 platforms darwin name inventor depends_lib {port:xorg-libXi port:xorg-libXt port:freetype port:jpeg port:glw} long_description {Open InventorTM is an object-oriented 3D toolkit offering a comprehensive solution to interactive graphics programming problems. It presents a programming model based on a 3D scene database that dramatically simplifies graphics programming. It includes a rich set of objects such as cubes, polygons, text, materials, cameras, lights, trackballs, handle boxes, 3D viewers, and editors that speed up your programming time and extend your 3D programming capabilities.} maintainers css categories {devel graphics x11} version 2.1.5-10 revision 7 -iso-codes 436 -depends_build port:gettext portdir devel/iso-codes description {ISO country, language and currency codes and translations} homepage http://pkg-isocodes.alioth.debian.org/ epoch 0 platforms darwin name iso-codes maintainers nomaintainer long_description {This package aims to provide the list of the country and language (and currency) names in one place, rather than repeated in many programs.} categories devel version 3.12 revision 0 +iso-codes 438 +depends_build port:gettext portdir devel/iso-codes description {ISO country, language and currency codes and translations} homepage http://pkg-isocodes.alioth.debian.org/ epoch 0 platforms darwin name iso-codes maintainers nomaintainer long_description {This package aims to provide the list of the country and language (and currency) names in one place, rather than repeated in many programs.} categories devel version 3.12.1 revision 0 jam 549 variants {mw debug} portdir devel/jam description {a software build tool like make} homepage http://www.perforce.com/jam/jam.html epoch 0 platforms darwin name jam maintainers nomaintainer long_description {Jam is a software build tool (like make) from Perforce. It is very powerful tool and it is used for various projects. It is particularly adapted for C/C++ development, multiplatform projects or builds spread on several processors. Mac OS X developer tools actually include a customized version of it.} categories devel version 2.5 revision 1 jline 519 @@ -2031,7 +2031,7 @@ re2c 501 variants universal portdir devel/re2c description {A tool for generating C-based recognizers from regular expressions.} homepage http://re2c.org/ epoch 0 platforms darwin name re2c long_description {re2c is a tool for generating C-based recognizers from regular expressions. re2c-based scanners are efficient: an re2c-based scanner is said to be typically almost twice as fast as a flex-based scanner with little or no increase in size.} maintainers landonf categories devel version 0.13.5 revision 0 readline 740 -variants {universal darwin} portdir devel/readline description {Library that provides command line editing} homepage http://cnswww.cns.cwru.edu/~chet/readline/rltop.html epoch 0 platforms {darwin freebsd} depends_lib port:ncurses name readline maintainers {mcalhoun openmaintainer} long_description {The GNU Readline library provides a set of functions for use by applications that allow users to edit command lines as they are typed in. Both Emacs and vi editing modes are available. The Readline library includes additional functions to maintain a list of previously-entered command lines, to recall and perhaps reedit those lines, and perform csh-like history expansion on previous commands.} categories devel version 6.0.000 revision 2 +variants {universal darwin} portdir devel/readline description {Library that provides command line editing} homepage http://cnswww.cns.cwru.edu/~chet/readline/rltop.html epoch 0 platforms {darwin freebsd} depends_lib port:ncurses name readline maintainers {mcalhoun openmaintainer} long_description {The GNU Readline library provides a set of functions for use by applications that allow users to edit command lines as they are typed in. Both Emacs and vi editing modes are available. The Readline library includes additional functions to maintain a list of previously-entered command lines, to recall and perhaps reedit those lines, and perform csh-like history expansion on previous commands.} categories devel version 6.1.000 revision 0 readline-4 897 variants {darwin universal} portdir devel/readline-4 description {Library that provides command line editing} homepage http://cnswww.cns.cwru.edu/~chet/readline/rltop.html epoch 0 platforms darwin name readline-4 long_description {The GNU Readline library provides a set of functions for use by applications that allow users to edit command lines as they are typed in. Both Emacs and vi editing modes are available. The Readline library includes additional functions to maintain a list of previously-entered command lines, to recall and perhaps reedit those lines, and perform csh-like history expansion on previous commands. This version provides limited functionality. It is intended to be used by ports that require version 4.3. Only the dynamic library is installed, and the include files are kept in PREFIX/include/readline4.} maintainers nomaintainer categories devel version 4.3 revision 0 readline-5 903 @@ -3891,7 +3891,7 @@ woodstox 513 depends_build bin:ant:apache-ant portdir java/woodstox description {Woodstox StAX XML parser} homepage http://woodstox.codehaus.org/ epoch 0 platforms darwin depends_lib {bin:java:kaffe port:jakarta-bcel} name woodstox maintainers {jberry openmaintainer} long_description {Woodstox is a fast Open Source fully-validating StAX-compliant (JSR-173) XML-processor written in Java (processor meaning it handles both input (== parsing) and output (== writing, serialization)).} categories java version 3.2.0 revision 0 xalanj 638 -depends_build bin:ant:apache-ant portdir java/xalanj description {Apache Xerces 2 Java XML Parser} homepage http://xml.apache.org/xalan-j/ depends_run port:xercesj epoch 0 platforms darwin depends_lib bin:java:kaffe name xalanj long_description {Xalan-Java is an XSLT processor for transforming XML documents into HTML, text, or other XML document types. It implements XSL Transformations (XSLT) Version 1.0 and XML Path Language (XPath) Version 1.0. It can be used from the command line, in an applet or a servlet, or as a module in other program.} maintainers {jberry openmaintainer} categories {java textproc} version 2.7.0 revision 1 +depends_build bin:ant:apache-ant portdir java/xalanj description {Apache Xerces 2 Java XML Parser} homepage http://xml.apache.org/xalan-j/ depends_run port:xercesj epoch 0 platforms darwin depends_lib bin:java:kaffe name xalanj long_description {Xalan-Java is an XSLT processor for transforming XML documents into HTML, text, or other XML document types. It implements XSL Transformations (XSLT) Version 1.0 and XML Path Language (XPath) Version 1.0. It can be used from the command line, in an applet or a servlet, or as a module in other program.} maintainers {jberry openmaintainer} categories {java textproc} version 2.7.1 revision 0 xdoclet 656 depends_build {port:apache-ant port:maven} portdir java/xdoclet description {XDoclet is an open source code generation engine.} homepage http://xdoclet.sourceforge.net/xdoclet/ epoch 0 platforms darwin depends_lib {bin:java:kaffe port:commons-logging port:commons-lang port:junit} name xdoclet maintainers {stechert openmaintainer} long_description {XDoclet is an open source code generation engine. It enables Attribute-Oriented Programming for java. In short, this means that you can add more significance to your code by adding meta data (attributes) to your java sources. This is done in special JavaDoc tags.} categories java version 1.2.3 revision 1 xercesj 539 @@ -3902,8 +3902,8 @@ depends_build bin:ant:apache-ant portdir java/xmlenc description {fast stream-based XML output library for Java} homepage http://xmlenc.sourceforge.net/ epoch 0 platforms darwin depends_lib bin:java:kaffe name xmlenc maintainers nomaintainer long_description {The xmlenc library is a fast stream-based XML output library for Java. Main design goals are performance, simplicitity and pureness.} categories {java textproc} version 0.50 revision 0 xmlpull 738 depends_build bin:ant:apache-ant portdir java/xmlpull description {XML pullparser API} homepage http://www.xmlpull.org/ epoch 0 platforms darwin depends_lib bin:java:kaffe name xmlpull maintainers nomaintainer long_description {XmlPull v1 API is a simple to use XML pull parsing API that was designed for simplicity and very good performance both in constrained environment such as defined by J2ME and on server side when used in J2EE application servers. XML pull parsing allows incremental (sometimes called streaming) parsing of XML where application is in control - the parsing can be interrupted at any given moment and resumed when application is ready to consume more input.} categories {java textproc} version 1.1.3.4c revision 0 -xom 478 -depends_build bin:ant:apache-ant portdir java/xom description {A tree-based API for XML processing} homepage http://www.xom.nu/ epoch 0 platforms darwin depends_lib bin:java:kaffe name xom maintainers {jberry openmaintainer} long_description {XOM is a new XML object model. It is an open source (LGPL), tree-based API for processing XML with Java that strives for correctness, simplicity, and performance, in that order.} categories {java devel textproc} version 1.0 revision 0 +xom 480 +depends_build bin:ant:apache-ant portdir java/xom description {A tree-based API for XML processing} homepage http://www.xom.nu/ epoch 0 platforms darwin depends_lib bin:java:kaffe name xom maintainers {jberry openmaintainer} long_description {XOM is a new XML object model. It is an open source (LGPL), tree-based API for processing XML with Java that strives for correctness, simplicity, and performance, in that order.} categories {java devel textproc} version 1.2.4 revision 0 amarok 659 variants {debug docs universal} depends_build {port:cmake port:automoc} portdir kde/amarok description {Amarok, the world-renowned media player.} homepage http://amarok.kde.org epoch 0 platforms darwin depends_lib {path:libexec/qt4-mac:qt4-mac port:kdebase4-runtime port:kdelibs4 port:qtscriptgenerator port:liblastfm port:taglib port:taglib-extras port:loudmouth path:bin/mysql_config5:mysql5} name amarok maintainers {illogic-al openmaintainer} long_description {Amarok is a music player and manager with an intuitive interface. It provides a variety of feature which helps to discover and manage your music.} categories {kde kde4} version 2.2.0 revision 0 amarok-devel 723 @@ -4582,8 +4582,8 @@ variants {darwin darwin_9 tk mactk thread_hooks universal} depends_build {port:autoconf port:automake port:libtool} portdir lang/ruby186 description {Powerful and clean object-oriented scripting language} homepage http://www.ruby-lang.org/ epoch 0 platforms darwin name ruby186 depends_lib {port:libiconv port:readline port:openssl port:zlib port:ncurses} long_description {Ruby is the interpreted scripting language for quick and easy object-oriented programming. It has many features to process text files and to do system management tasks (as in Perl). It is simple, straight-forward, extensible, and portable. Note: this port conflicts with the ruby port, so you can have either that or this one active at one time.} maintainers {kimuraw openmaintainer} categories {lang ruby} version 1.8.6-p368 revision 0 ruby19 735 variants {nosuffix c_api_docs tk mactk universal} portdir lang/ruby19 description {Powerful and clean object-oriented scripting language} homepage http://www.ruby-lang.org/ epoch 0 platforms darwin name ruby19 depends_lib {port:libiconv port:readline port:openssl port:zlib port:ncurses} long_description {Ruby is the interpreted scripting language for quick and easy object-oriented programming. It has many features to process text files and to do system management tasks (as in Perl). It is simple, straight-forward, extensible, and portable. Version 1.9 contains a new VM called YARV, is faster and slightly incompatible from version 1.8.} maintainers {febeling openmaintainer} categories {lang ruby} version 1.9.1-p376 revision 0 -sbcl 585 -variants {powerpc darwin_8_i386 darwin_9_i386 darwin_10_i386 html threads} portdir lang/sbcl description {The Steel Bank Common Lisp system} homepage http://www.sbcl.org epoch 0 platforms darwin name sbcl long_description {Steel Bank Common Lisp (SBCL) is a Open Source development system for ANSI Common Lisp. It provides an interactive environment including an integrated native compiler, interpreter, and debugger. (And it, and its generated code, can also play nicely with Unix when running noninteractively.)} maintainers {gwright waqar} categories lang version 1.0.33 revision 1 +sbcl 594 +variants {powerpc darwin_8_i386 darwin_9_i386 darwin_10_i386 html threads} portdir lang/sbcl description {The Steel Bank Common Lisp system} homepage http://www.sbcl.org epoch 0 platforms darwin name sbcl long_description {Steel Bank Common Lisp (SBCL) is a Open Source development system for ANSI Common Lisp. It provides an interactive environment including an integrated native compiler, interpreter, and debugger. (And it, and its generated code, can also play nicely with Unix when running noninteractively.)} maintainers {gwright waqar easieste} categories lang version 1.0.33 revision 2 scala 518 portdir lang/scala description {The Scala Programming Language} homepage http://www.scala-lang.org/ epoch 0 platforms darwin name scala maintainers blair long_description {Scala is a modern multi-paradigm programming language designed to express common programming patterns in a concise, elegant, and type-safe way. It smoothly integrates features of object-oriented and functional languages. It runs inside a Java Virtual Machine and is fully interoperable with Java.} version 2.7.7 categories {lang java} revision 0 scala-devel 557 @@ -5938,8 +5938,8 @@ variants universal depends_build path:bin/pkg-config:pkgconfig portdir net/roadrunner description {implementation of the BEEP protocol (RFC 3080) in C} homepage http://rr.codefactory.se/ epoch 0 platforms darwin depends_lib {lib:libxml2:libxml2 path:lib/pkgconfig/glib-2.0.pc:glib2} name roadrunner long_description {RoadRunner is a full-featured, robust implementation of the BEEP protocol (RFC 3080) written in C.} maintainers nomaintainer categories {net devel} version 0.9.1 revision 0 rrdtool 497 variants {python universal} portdir net/rrdtool description {Round Robin Database} homepage http://oss.oetiker.ch/rrdtool/ epoch 0 platforms darwin name rrdtool depends_lib {port:expat path:lib/pkgconfig/glib-2.0.pc:glib2 port:libiconv port:gettext path:lib/pkgconfig/pango.pc:pango path:bin/perl:perl5 port:tcl port:zlib port:libpng port:libxml2 port:intltool} long_description {RRDtool is a system to store and display time-series data} maintainers markd categories net version 1.3.8 revision 0 -rsync 671 -variants {no_macosx_metadata rsyncd universal} portdir net/rsync description {Tool that provides fast incremental file transfer.} homepage http://samba.org/rsync/ epoch 0 platforms {darwin freebsd sunos} name rsync depends_lib {port:popt port:libiconv} long_description {rsync is an open source utility that provides fast incremental file transfer. rsync is freely available under the GNU General Public License and is currently being maintained by Wayne Davison. Rsync version 3.0.6 has been released. This is a bug-fix release. Related pages: http://rsync.samba.org/ftp/rsync/rsync-3.0.6-NEWS} maintainers {simon openmaintainer} categories net version 3.0.6 revision 0 +rsync 652 +variants {rsyncd universal} portdir net/rsync description {Tool that provides fast incremental file transfer.} homepage http://samba.org/rsync/ epoch 0 platforms {darwin freebsd sunos} name rsync depends_lib {port:popt port:libiconv} long_description {rsync is an open source utility that provides fast incremental file transfer. rsync is freely available under the GNU General Public License and is currently being maintained by Wayne Davison. Rsync version 3.0.7 has been released. This is a bug-fix release. Related pages: http://rsync.samba.org/ftp/rsync/rsync-3.0.7-NEWS} maintainers {simon openmaintainer} categories net version 3.0.7 revision 0 rsync-devel 1076 variants universal portdir net/rsync-devel description {tool that provides fast incremental file transfer} homepage http://samba.org/rsync/ epoch 1203546104 platforms {darwin freebsd sunos} name rsync-devel depends_lib {port:popt port:libiconv} long_description {http://rsync.samba.org/ftp/rsync/rsync-3.0.0pre10-NEWS rsync 3.0.0 is going to be a feature release that has a number of improvements. There has already been work done to lower rsync's memory use, and make recursive transfers start up more rapidly (due to an incremental recursive scan being added). This version has just added xattr support (resource forks), and should also get: ACL support, filename charset-conversion support, renamed-file detection, improved performance for large files, and other changes yet to be decided. Related pages: http://samba.anu.edu.au/ftp/unpacked/rsync/NEWS http://samba.anu.edu.au/ftp/rsync/nightly/rsync.html http://samba.anu.edu.au/ftp/rsync/nightly/rsyncd.conf.html http://samba.anu.edu.au/rsync/lists.html} maintainers reiffert categories net version 3.0.0pre10 revision 0 rsync-lart 775 @@ -7563,7 +7563,7 @@ p5-unix-syslog 364 portdir perl/p5-unix-syslog description {Access to the Unix system logger via Perl's XSUBs} homepage http://search.cpan.org/dist/Unix-Syslog/ epoch 0 platforms darwin name p5-unix-syslog depends_lib path:bin/perl:perl5 maintainers {blair openmaintainer} long_description {{Access to the Unix system logger via Perl's XSUBs}} categories perl version 1.1 revision 0 p5-uri 502 -portdir perl/p5-uri description {Uniform Resource Identifiers (absolute and relative)} homepage http://search.cpan.org/dist/URI/ epoch 0 platforms darwin name p5-uri depends_lib path:bin/perl:perl5 maintainers {nox openmaintainer} long_description {This package contains the URI.pm module with friends. The module implements the URI class. Objects of this class represent Uniform Resource Identifier references as specified in RFC 2396 and updated by RFC 2732.} categories perl version 1.51 revision 0 +portdir perl/p5-uri description {Uniform Resource Identifiers (absolute and relative)} homepage http://search.cpan.org/dist/URI/ epoch 0 platforms darwin name p5-uri depends_lib path:bin/perl:perl5 maintainers {nox openmaintainer} long_description {This package contains the URI.pm module with friends. The module implements the URI class. Objects of this class represent Uniform Resource Identifier references as specified in RFC 2396 and updated by RFC 2732.} categories perl version 1.52 revision 0 p5-uri-fetch 410 portdir perl/p5-uri-fetch description {URI::Fetch module for Perl} homepage http://search.cpan.org/dist/URI-Fetch/ epoch 0 platforms darwin name p5-uri-fetch depends_lib {path:bin/perl:perl5 port:p5-class-errorhandler port:p5-libwww-perl port:p5-uri} maintainers {raimue openmaintainer} long_description {URI::Fetch is a class to intelligently fetch syndication feeds.} categories perl version 0.08 revision 0 p5-uuid 352 @@ -12681,7 +12681,7 @@ xorg-libice 334 variants universal depends_build {port:pkgconfig port:xorg-xtrans port:xorg-xproto} portdir x11/xorg-libice description {X.org libice} homepage http://www.x.org/ epoch 0 platforms {darwin macosx} name xorg-libice long_description {X Inter-Client Exchange Protocol} maintainers jeremyhu categories {x11 devel} version 1.0.6 revision 0 xorg-libpthread-stubs 371 -portdir x11/xorg-libpthread-stubs description {X.org/Xcb libpthread stubs} homepage http://xcb.freedesktop.org epoch 0 platforms {darwin macosx} name xorg-libpthread-stubs maintainers {jeremyhu openmaintainer} long_description {Library that provides pthread stubs that are missing from your platform libc. (used for libxcb)} version 0.1 categories {x11 devel} revision 0 +portdir x11/xorg-libpthread-stubs description {X.org/Xcb libpthread stubs} homepage http://xcb.freedesktop.org epoch 0 platforms {darwin macosx} name xorg-libpthread-stubs maintainers {jeremyhu openmaintainer} long_description {Library that provides pthread stubs that are missing from your platform libc. (used for libxcb)} version 0.3 categories {x11 devel} revision 0 xorg-libs 1035 portdir x11/xorg-libs description {X.org lib meta-package} homepage http://www.x.org epoch 0 platforms {darwin macosx} name xorg-libs depends_lib {port:Xft2 port:mesa port:xorg-libAppleWM port:xorg-libFS port:xorg-libX11 port:xorg-libXScrnSaver port:xorg-libXTrap port:xorg-libXau port:xorg-libXaw port:xorg-libXcomposite port:xorg-libXcursor port:xorg-libXdamage port:xorg-libXdmcp port:xorg-libXevie port:xorg-libXext port:xorg-libXfixes port:xorg-libXfont port:xorg-libXfontcache port:xorg-libXi port:xorg-libXinerama port:xorg-libXmu port:xorg-libXrandr port:xorg-libXres port:xorg-libXt port:xorg-libXtst port:xorg-libXv port:xorg-libXvMC port:xorg-libXxf86dga port:xorg-libXxf86misc port:xorg-libXxf86vm port:xorg-libdmx port:xorg-libfontenc port:xorg-libice port:xorg-libsm port:xorg-libxcb port:xorg-libxkbfile port:xorg-libxkbui port:xorg-xcb-util port:xpm port:xrender} maintainers {jeremyhu openmaintainer} long_description {This package builds all of the x.org libraries} categories {x11 devel} version 20090224 revision 0 xorg-libsm 348 Modified: trunk/dports/PortIndex.quick =================================================================== (Binary files differ) -------------- next part -------------- An HTML attachment was scrubbed... URL: From nox at macports.org Sun Jan 3 07:15:28 2010 From: nox at macports.org (nox at macports.org) Date: Sun, 3 Jan 2010 07:15:28 -0800 (PST) Subject: [62307] trunk/dports/devel/readline Message-ID: <20100103151529.58E7E3A2BF11@beta.macosforge.org> Revision: 62307 http://trac.macports.org/changeset/62307 Author: nox at macports.org Date: 2010-01-03 07:15:25 -0800 (Sun, 03 Jan 2010) Log Message: ----------- Fix readline patch for 6.1 update Modified Paths: -------------- trunk/dports/devel/readline/Portfile trunk/dports/devel/readline/files/patch-shobj-conf.diff Modified: trunk/dports/devel/readline/Portfile =================================================================== --- trunk/dports/devel/readline/Portfile 2010-01-03 14:54:48 UTC (rev 62306) +++ trunk/dports/devel/readline/Portfile 2010-01-03 15:15:25 UTC (rev 62307) @@ -7,6 +7,7 @@ set milestone 6.1 set patchlevel 000 version ${milestone}.${patchlevel} +revision 1 distname ${name}-${milestone} categories devel platforms darwin freebsd Modified: trunk/dports/devel/readline/files/patch-shobj-conf.diff =================================================================== --- trunk/dports/devel/readline/files/patch-shobj-conf.diff 2010-01-03 14:54:48 UTC (rev 62306) +++ trunk/dports/devel/readline/files/patch-shobj-conf.diff 2010-01-03 15:15:25 UTC (rev 62307) @@ -13,7 +13,7 @@ - SHOBJ_LDFLAGS='-dynamiclib -dynamic -undefined dynamic_lookup -arch_only `/usr/bin/arch`' - SHLIB_XLDFLAGS='-dynamiclib -arch_only `/usr/bin/arch` -install_name $(libdir)/$@ -current_version $(SHLIB_MAJOR)$(SHLIB_MINOR) -compatibility_version $(SHLIB_MAJOR) -v' + SHOBJ_LDFLAGS='-dynamiclib -dynamic -undefined dynamic_lookup' -+ SHLIB_XLDFLAGS='-dynamiclib -install_name $(libdir)/${@:$(SHLIB_MAJOR)$(SHLIB_MINOR).$(SHLIB_LIBSUFF)=$(SHLIB_MAJOR).$(SHLIB_LIBSUFF)} -current_version $(SHLIB_MAJOR)$(SHLIB_MINOR)__MACPORTS_PATCHLEVEL__ -compatibility_version $(SHLIB_MAJOR) -v' ++ SHLIB_XLDFLAGS='-dynamiclib -install_name $(libdir)/$@ -current_version $(SHLIB_MAJOR)$(SHLIB_MINOR) -compatibility_version $(SHLIB_MAJOR) -v' SHLIB_LIBS='-lncurses' # see if -lcurses works on MacOS X 10.1 ;; @@ -22,11 +22,11 @@ case "${host_os}" in darwin[789]*|darwin10*) SHOBJ_LDFLAGS='' - SHLIB_XLDFLAGS='-dynamiclib -arch_only `/usr/bin/arch` -install_name $(libdir)/$@ -current_version $(SHLIB_MAJOR)$(SHLIB_MINOR) -compatibility_version $(SHLIB_MAJOR) -v' -+ SHLIB_XLDFLAGS='-dynamiclib -install_name $(libdir)/${@:$(SHLIB_MAJOR)$(SHLIB_MINOR).$(SHLIB_LIBSUFF)=$(SHLIB_MAJOR).$(SHLIB_LIBSUFF)} -current_version $(SHLIB_MAJOR)$(SHLIB_MINOR)__MACPORTS_PATCHLEVEL__ -compatibility_version $(SHLIB_MAJOR) -v' ++ SHLIB_XLDFLAGS='-dynamiclib -install_name $(libdir)/$@ -current_version $(SHLIB_MAJOR)$(SHLIB_MINOR) -compatibility_version $(SHLIB_MAJOR) -v' ;; *) SHOBJ_LDFLAGS='-dynamic' - SHLIB_XLDFLAGS='-arch_only `/usr/bin/arch` -install_name $(libdir)/$@ -current_version $(SHLIB_MAJOR)$(SHLIB_MINOR) -compatibility_version $(SHLIB_MAJOR) -v' -+ SHLIB_XLDFLAGS='-install_name $(libdir)/${@:$(SHLIB_MAJOR)$(SHLIB_MINOR).$(SHLIB_LIBSUFF)=$(SHLIB_MAJOR).$(SHLIB_LIBSUFF)} -current_version $(SHLIB_MAJOR)$(SHLIB_MINOR)__MACPORTS_PATCHLEVEL__ -compatibility_version $(SHLIB_MAJOR) -v' ++ SHLIB_XLDFLAGS='-install_name $(libdir)/$@ -current_version $(SHLIB_MAJOR)$(SHLIB_MINOR) -compatibility_version $(SHLIB_MAJOR) -v' ;; esac -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Sun Jan 3 07:54:52 2010 From: portindex at macports.org (portindex at macports.org) Date: Sun, 3 Jan 2010 07:54:52 -0800 (PST) Subject: [62308] trunk/dports/PortIndex Message-ID: <20100103155455.51F693A2C178@beta.macosforge.org> Revision: 62308 http://trac.macports.org/changeset/62308 Author: portindex at macports.org Date: 2010-01-03 07:54:49 -0800 (Sun, 03 Jan 2010) Log Message: ----------- Total number of ports parsed: 6469 Ports successfully parsed: 6469 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-03 15:15:25 UTC (rev 62307) +++ trunk/dports/PortIndex 2010-01-03 15:54:49 UTC (rev 62308) @@ -2031,7 +2031,7 @@ re2c 501 variants universal portdir devel/re2c description {A tool for generating C-based recognizers from regular expressions.} homepage http://re2c.org/ epoch 0 platforms darwin name re2c long_description {re2c is a tool for generating C-based recognizers from regular expressions. re2c-based scanners are efficient: an re2c-based scanner is said to be typically almost twice as fast as a flex-based scanner with little or no increase in size.} maintainers landonf categories devel version 0.13.5 revision 0 readline 740 -variants {universal darwin} portdir devel/readline description {Library that provides command line editing} homepage http://cnswww.cns.cwru.edu/~chet/readline/rltop.html epoch 0 platforms {darwin freebsd} depends_lib port:ncurses name readline maintainers {mcalhoun openmaintainer} long_description {The GNU Readline library provides a set of functions for use by applications that allow users to edit command lines as they are typed in. Both Emacs and vi editing modes are available. The Readline library includes additional functions to maintain a list of previously-entered command lines, to recall and perhaps reedit those lines, and perform csh-like history expansion on previous commands.} categories devel version 6.1.000 revision 0 +variants {universal darwin} portdir devel/readline description {Library that provides command line editing} homepage http://cnswww.cns.cwru.edu/~chet/readline/rltop.html epoch 0 platforms {darwin freebsd} depends_lib port:ncurses name readline maintainers {mcalhoun openmaintainer} long_description {The GNU Readline library provides a set of functions for use by applications that allow users to edit command lines as they are typed in. Both Emacs and vi editing modes are available. The Readline library includes additional functions to maintain a list of previously-entered command lines, to recall and perhaps reedit those lines, and perform csh-like history expansion on previous commands.} categories devel version 6.1.000 revision 1 readline-4 897 variants {darwin universal} portdir devel/readline-4 description {Library that provides command line editing} homepage http://cnswww.cns.cwru.edu/~chet/readline/rltop.html epoch 0 platforms darwin name readline-4 long_description {The GNU Readline library provides a set of functions for use by applications that allow users to edit command lines as they are typed in. Both Emacs and vi editing modes are available. The Readline library includes additional functions to maintain a list of previously-entered command lines, to recall and perhaps reedit those lines, and perform csh-like history expansion on previous commands. This version provides limited functionality. It is intended to be used by ports that require version 4.3. Only the dynamic library is installed, and the include files are kept in PREFIX/include/readline4.} maintainers nomaintainer categories devel version 4.3 revision 0 readline-5 903 -------------- next part -------------- An HTML attachment was scrubbed... URL: From breskeby at macports.org Sun Jan 3 09:12:54 2010 From: breskeby at macports.org (breskeby at macports.org) Date: Sun, 3 Jan 2010 09:12:54 -0800 (PST) Subject: [62309] trunk/dports/java/gant/Portfile Message-ID: <20100103171255.244003A2CA45@beta.macosforge.org> Revision: 62309 http://trac.macports.org/changeset/62309 Author: breskeby at macports.org Date: 2010-01-03 09:12:50 -0800 (Sun, 03 Jan 2010) Log Message: ----------- version bumb to 1.9.1 Modified Paths: -------------- trunk/dports/java/gant/Portfile Modified: trunk/dports/java/gant/Portfile =================================================================== --- trunk/dports/java/gant/Portfile 2010-01-03 15:54:49 UTC (rev 62308) +++ trunk/dports/java/gant/Portfile 2010-01-03 17:12:50 UTC (rev 62309) @@ -3,7 +3,7 @@ PortSystem 1.0 name gant -version 1.9.0 +version 1.9.1 categories java devel groovy maintainers breskeby description A groovy based tool for scripting ant @@ -20,9 +20,9 @@ distname ${name}-${version}-_groovy-1.7.0 depends_run port:groovy master_sites http://dist.codehaus.org/gant/distributions -checksums md5 b0bc1eb3ae9f925238f3ff2cb1a983d4 \ - sha1 625b5cc6dfc13ed4fa5e7f8554d2323ea42873f2 \ - rmd160 69543ecdb3f19a528a8e4f11547fbdf99119dea6 +checksums md5 a386dc5da961652478582781149df449 \ + sha1 fb5bd3471737262ca9bea99a8ebbe0e592a60b91 \ + rmd160 7c88f35ffbe06417367400ebc5110858f70870f6 worksrcdir ${name}-${version} set workTarget "" -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Sun Jan 3 09:54:33 2010 From: portindex at macports.org (portindex at macports.org) Date: Sun, 3 Jan 2010 09:54:33 -0800 (PST) Subject: [62310] trunk/dports/PortIndex Message-ID: <20100103175434.C2AB73A2E863@beta.macosforge.org> Revision: 62310 http://trac.macports.org/changeset/62310 Author: portindex at macports.org Date: 2010-01-03 09:54:32 -0800 (Sun, 03 Jan 2010) Log Message: ----------- Total number of ports parsed: 6469 Ports successfully parsed: 6469 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-03 17:12:50 UTC (rev 62309) +++ trunk/dports/PortIndex 2010-01-03 17:54:32 UTC (rev 62310) @@ -3731,7 +3731,7 @@ fast-md5 331 depends_build bin:ant:apache-ant portdir java/fast-md5 description {Fast MD5 Implementation in Java} homepage http://fast-md5.sourceforge.net/ epoch 0 platforms darwin name fast-md5 maintainers nomaintainer long_description {{Fast MD5 Implementation in Java}} depends_extract bin:unzip:unzip categories java version 2.6 revision 0 gant 765 -variants darwin portdir java/gant description {A groovy based tool for scripting ant} homepage http://gant.codehaus.org/ epoch 0 depends_run port:groovy platforms darwin name gant long_description {Gant is a tool for scripting Ant tasks using Groovy instead of XML to specify the logic. A Gant specification is a Groovy script and so can bring all the power of Groovy to bear directly, something not possible with Ant scripts. Whilst it might be seen as a competitor to Ant, Gant uses Ant tasks for many of the actions, so Gant is really an alternative way of doing things using Ant, but using a programming language rather than XML to specify the rules.} maintainers breskeby depends_extract bin:unzip:unzip categories {java devel groovy} version 1.9.0 revision 0 +variants darwin portdir java/gant description {A groovy based tool for scripting ant} homepage http://gant.codehaus.org/ epoch 0 depends_run port:groovy platforms darwin name gant long_description {Gant is a tool for scripting Ant tasks using Groovy instead of XML to specify the logic. A Gant specification is a Groovy script and so can bring all the power of Groovy to bear directly, something not possible with Ant scripts. Whilst it might be seen as a competitor to Ant, Gant uses Ant tasks for many of the actions, so Gant is really an alternative way of doing things using Ant, but using a programming language rather than XML to specify the rules.} maintainers breskeby depends_extract bin:unzip:unzip categories {java devel groovy} version 1.9.1 revision 0 gjdb 829 variants universal portdir java/gjdb description {GJDB is a modification of JDB, a debugger that comes with the public JDK (Java Development Kit) from Sun.} homepage http://www.cs.berkeley.edu/~hilfingr/gjdb.html epoch 0 platforms darwin name gjdb long_description {GJDB is a modification of JDB, a debugger that comes with the public JDK (Java Development Kit) from Sun. Unlike Sun's version, it also allows you to debug programs that take input from the terminal. The expression language has been extended to include much more of the language (including numerous features missing from jdb, such as array allocation, initialized array allocation, the .super operator, less fussy overload resolution, and numerous binary numeric and logical operations).} maintainers nomaintainer categories {java devel} version 6.1.2 revision 0 glassfishv3 371 -------------- next part -------------- An HTML attachment was scrubbed... URL: From jwa at macports.org Sun Jan 3 10:42:21 2010 From: jwa at macports.org (jwa at macports.org) Date: Sun, 3 Jan 2010 10:42:21 -0800 (PST) Subject: [62311] trunk/dports/python/py25-midgard2/Portfile Message-ID: <20100103184222.CA2FD3A2F816@beta.macosforge.org> Revision: 62311 http://trac.macports.org/changeset/62311 Author: jwa at macports.org Date: 2010-01-03 10:42:19 -0800 (Sun, 03 Jan 2010) Log Message: ----------- version bump to 9.09.1 Modified Paths: -------------- trunk/dports/python/py25-midgard2/Portfile Modified: trunk/dports/python/py25-midgard2/Portfile =================================================================== --- trunk/dports/python/py25-midgard2/Portfile 2010-01-03 17:54:32 UTC (rev 62310) +++ trunk/dports/python/py25-midgard2/Portfile 2010-01-03 18:42:19 UTC (rev 62311) @@ -7,9 +7,9 @@ name py25-midgard2 set internal_name python-midgard2 -version 9.09.0 -set major 9.09 -categories-append www +version 9.09.1 + +categories python maintainers jwa description Python interface to the Midgard content repository long_description Python interface to the Midgard content repository @@ -21,12 +21,13 @@ port:py25-gobject master_sites http://www.midgard-project.org/midcom-serveattachmentguid-63ed3bd6d43311de9fcaf9a9304436fe36fe/ -distname ${internal_name}-${major} +distname ${internal_name} +set worksrcdir ${internal_name}-${version} #use_bzip2 yes -checksums md5 b03a2fcb5a6982be87f4c288e6729199 \ - sha1 56af03b7d1ba604c8e9ac53814c35027099ba0de \ - rmd160 12cbd114fcb5e0a3932d5fa48e22d22d1dd54b39 +checksums md5 06201b59db5ca064a37eeacfc406b598 \ + sha1 fcdc7b1418304ba5b273a629591e7964b2f574db \ + rmd160 524b00fe168ed0df7e0dd1eaf07b3855eb5bdded #patchfiles setup.py.diff -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Sun Jan 3 10:54:42 2010 From: portindex at macports.org (portindex at macports.org) Date: Sun, 3 Jan 2010 10:54:42 -0800 (PST) Subject: [62312] trunk/dports Message-ID: <20100103185445.8E8503A2F926@beta.macosforge.org> Revision: 62312 http://trac.macports.org/changeset/62312 Author: portindex at macports.org Date: 2010-01-03 10:54:39 -0800 (Sun, 03 Jan 2010) Log Message: ----------- Total number of ports parsed: 6469 Ports successfully parsed: 6469 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex trunk/dports/PortIndex.quick Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-03 18:42:19 UTC (rev 62311) +++ trunk/dports/PortIndex 2010-01-03 18:54:39 UTC (rev 62312) @@ -8884,8 +8884,8 @@ depends_build port:py25-setuptools portdir python/py25-memcached description {Pure python memcached client} homepage http://www.tummy.com/Community/software/python-memcached/ epoch 0 platforms darwin depends_lib port:python25 name py25-memcached maintainers {akitada openmaintainer} long_description {This software is a 100% Python interface to the memcached memory cache daemon. It is the client side software which allows storing values in one or more, possibly remote, memcached servers. Search google for memcached for more information.} version 1.44 categories {python devel net} revision 0 py25-metar 465 portdir python/py25-metar description {python interface to the weather reports of the NOAA} homepage http://www.schwarzvogel.de/software-pymetar.shtml epoch 0 platforms darwin depends_lib port:python25 name py25-metar maintainers nomaintainer long_description {This library downloads the weather report for a given NOAA station ID (get yours here), decodes it and provides easy access to all the data found in the report.} version 0.13 categories python revision 0 -py25-midgard2 366 -portdir python/py25-midgard2 description {Python interface to the Midgard content repository} homepage http://www.midgard-project.org/ epoch 0 platforms darwin depends_lib {port:midgard2-core port:py25-gobject} name py25-midgard2 maintainers jwa long_description {Python interface to the Midgard content repository} version 9.09.0 categories {python www} revision 0 +py25-midgard2 360 +portdir python/py25-midgard2 description {Python interface to the Midgard content repository} homepage http://www.midgard-project.org/ epoch 0 platforms darwin depends_lib {port:midgard2-core port:py25-gobject} name py25-midgard2 maintainers jwa long_description {Python interface to the Midgard content repository} version 9.09.1 categories python revision 0 py25-modulegraph 643 portdir python/py25-modulegraph description {Python module dependency analysis tool} homepage http://undefined.org/python/#modulegraph epoch 0 platforms darwin depends_lib {port:python25 port:py25-altgraph} name py25-modulegraph maintainers {jmr openmaintainer} long_description {modulegraph determines a dependency graph between Python modules primarily by bytecode analysis for import statements. modulegraph uses similar methods to modulefinder from the standard library, but uses a more flexible internal representation, has more extensive knowledge of special cases, and is extensible.} version 0.7.3 categories {python devel} revision 0 py25-modulegraph-devel 685 Modified: trunk/dports/PortIndex.quick =================================================================== (Binary files differ) -------------- next part -------------- An HTML attachment was scrubbed... URL: From jmr at macports.org Sun Jan 3 11:13:34 2010 From: jmr at macports.org (jmr at macports.org) Date: Sun, 3 Jan 2010 11:13:34 -0800 (PST) Subject: [62313] trunk/dports/lang/mit-scheme Message-ID: <20100103191334.ED8C43A2FB04@beta.macosforge.org> Revision: 62313 http://trac.macports.org/changeset/62313 Author: jmr at macports.org Date: 2010-01-03 11:13:30 -0800 (Sun, 03 Jan 2010) Log Message: ----------- mit-scheme: remove use of 10.4 SDK (#21779), use gnu mirror group, use configure.cc Modified Paths: -------------- trunk/dports/lang/mit-scheme/Portfile Added Paths: ----------- trunk/dports/lang/mit-scheme/files/ trunk/dports/lang/mit-scheme/files/patch-src_microcode_configure.diff Modified: trunk/dports/lang/mit-scheme/Portfile =================================================================== --- trunk/dports/lang/mit-scheme/Portfile 2010-01-03 18:54:39 UTC (rev 62312) +++ trunk/dports/lang/mit-scheme/Portfile 2010-01-03 19:13:30 UTC (rev 62313) @@ -20,7 +20,7 @@ development cycle. homepage http://www.gnu.org/software/mit-scheme/ -master_sites http://ftp.gnu.org/gnu/mit-scheme/snapshot.pkg/${version}/ +master_sites gnu:${name}/snapshot.pkg/${version}/ distname ${name}-c-${version} checksums md5 55cc891cf6321ae71506c8699204d165 \ @@ -30,6 +30,8 @@ depends_lib \ port:xorg-libX11 +patchfiles patch-src_microcode_configure.diff + post-patch { reinplace "s|/usr/local|${prefix}|g" \ ${worksrcpath}/doc/configure \ @@ -59,13 +61,14 @@ use_parallel_build no +destroot.cmd ${build.cmd} + build.dir ${worksrcpath}/src build.cmd etc/make-liarc.sh build.args --prefix=${prefix} build.target +build.env CC=${configure.cc} -destroot.cmd make - livecheck.url http://ftp.gnu.org/gnu/${name}/snapshot.pkg/ livecheck.type regex livecheck.regex {([0-9.]+)/} Added: trunk/dports/lang/mit-scheme/files/patch-src_microcode_configure.diff =================================================================== --- trunk/dports/lang/mit-scheme/files/patch-src_microcode_configure.diff (rev 0) +++ trunk/dports/lang/mit-scheme/files/patch-src_microcode_configure.diff 2010-01-03 19:13:30 UTC (rev 62313) @@ -0,0 +1,16 @@ +--- src/microcode/configure.orig 2009-01-08 07:48:43.000000000 +1100 ++++ src/microcode/configure 2009-12-22 17:04:54.000000000 +1100 +@@ -4510,13 +4510,6 @@ + ;; + darwin*) + MACOSX=yes +- MACOSX_SYSROOT=/Developer/SDKs/MacOSX10.4u.sdk +- if test -d ${MACOSX_SYSROOT}; then +- MACOSX_CFLAGS="-mmacosx-version-min=10.4 -isysroot ${MACOSX_SYSROOT}" +- MACOSX_LDFLAGS="${MACOSX_CFLAGS} -Wl,-syslibroot,${MACOSX_SYSROOT}" +- CFLAGS="${CFLAGS} ${MACOSX_CFLAGS}" +- LDFLAGS="${LDFLAGS} ${MACOSX_LDFLAGS}" +- fi + MODULE_LDFLAGS="${MODULE_LDFLAGS} -bundle -bundle_loader "'${SCHEME_EXE}' + ;; + netbsd*) -------------- next part -------------- An HTML attachment was scrubbed... URL: From jmr at macports.org Sun Jan 3 11:16:19 2010 From: jmr at macports.org (jmr at macports.org) Date: Sun, 3 Jan 2010 11:16:19 -0800 (PST) Subject: [62314] trunk/dports/lang/mit-scheme/Portfile Message-ID: <20100103191619.71E803A2FB62@beta.macosforge.org> Revision: 62314 http://trac.macports.org/changeset/62314 Author: jmr at macports.org Date: 2010-01-03 11:16:16 -0800 (Sun, 03 Jan 2010) Log Message: ----------- mit-scheme: new maintainer (see #21779) Modified Paths: -------------- trunk/dports/lang/mit-scheme/Portfile Modified: trunk/dports/lang/mit-scheme/Portfile =================================================================== --- trunk/dports/lang/mit-scheme/Portfile 2010-01-03 19:13:30 UTC (rev 62313) +++ trunk/dports/lang/mit-scheme/Portfile 2010-01-03 19:16:16 UTC (rev 62314) @@ -7,7 +7,7 @@ version 20090107 categories lang platforms darwin -maintainers nomaintainer +maintainers ambulatoryclam.net:dports openmaintainer description MIT/GNU Scheme -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Sun Jan 3 11:54:29 2010 From: portindex at macports.org (portindex at macports.org) Date: Sun, 3 Jan 2010 11:54:29 -0800 (PST) Subject: [62315] trunk/dports Message-ID: <20100103195430.59E103A300BC@beta.macosforge.org> Revision: 62315 http://trac.macports.org/changeset/62315 Author: portindex at macports.org Date: 2010-01-03 11:54:28 -0800 (Sun, 03 Jan 2010) Log Message: ----------- Total number of ports parsed: 6469 Ports successfully parsed: 6469 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex trunk/dports/PortIndex.quick Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-03 19:16:16 UTC (rev 62314) +++ trunk/dports/PortIndex 2010-01-03 19:54:28 UTC (rev 62315) @@ -4460,8 +4460,8 @@ variants universal depends_build port:gcc34 portdir lang/mercury description {The Mercury Programming Language} homepage http://www.mercury.cs.mu.oz.au/ epoch 0 platforms darwin name mercury depends_lib port:readline long_description {Mercury is a new logic/functional programming language, which combines the clarity and expressiveness of declarative programming with advanced static analysis and error detection features. Its highly optimized execution algorithm delivers efficiency far in excess of existing logic programming systems, and close to conventional programming systems. Mercury addresses the problems of large-scale program development, allowing modularity, separate compilation, and numerous optimization/time trade-offs.} maintainers nomaintainer categories lang version 0.13.1 revision 0 mercury-extras 803 portdir lang/mercury-extras description {Extra packages for the Mercury Programming Language} homepage http://www.cs.mu.oz.au/research/mercury/ epoch 0 depends_run port:mercury platforms darwin name mercury-extras maintainers nomaintainer long_description {Mercury is a new logic/functional programming language, which combines the clarity and expressiveness of declarative programming with advanced static analysis and error detection features. Its highly optimized execution algorithm delivers efficiency far in excess of existing logic programming systems, and close to conventional programming systems. Mercury addresses the problems of large-scale program development, allowing modularity, separate compilation, and numerous optimization/time trade-offs.} categories lang version 0.13.1 revision 0 -mit-scheme 545 -portdir lang/mit-scheme description {MIT/GNU Scheme} homepage http://www.gnu.org/software/mit-scheme/ epoch 0 platforms darwin name mit-scheme depends_lib port:xorg-libX11 maintainers nomaintainer long_description {MIT/GNU Scheme is an implementation of the Scheme programming language, providing an interpreter, compiler, source-code debugger, integrated Emacs-like editor, and a large runtime library. MIT/GNU Scheme is best suited to programming large applications with a rapid development cycle.} categories lang version 20090107 revision 0 +mit-scheme 575 +portdir lang/mit-scheme description {MIT/GNU Scheme} homepage http://www.gnu.org/software/mit-scheme/ epoch 0 platforms darwin name mit-scheme depends_lib port:xorg-libX11 maintainers {ambulatoryclam.net:dports openmaintainer} long_description {MIT/GNU Scheme is an implementation of the Scheme programming language, providing an interpreter, compiler, source-code debugger, integrated Emacs-like editor, and a large runtime library. MIT/GNU Scheme is best suited to programming large applications with a rapid development cycle.} categories lang version 20090107 revision 0 mosml 519 variants universal portdir lang/mosml description {Moscow ML is an implementation of Standard ML (SML)} homepage http://www.dina.dk/~sestoft/mosml.html epoch 0 platforms darwin name mosml long_description {Moscow ML is a light-weight implementation of Standard ML (SML), a strict functional language widely used in teaching and research. Version 2.01 implements the full SML language, including SML Modules, and much of the SML Basis Library.} maintainers rift.dk:cso categories {lang devel ml} version 2.01 revision 2 mosml-dynlibs 411 Modified: trunk/dports/PortIndex.quick =================================================================== (Binary files differ) -------------- next part -------------- An HTML attachment was scrubbed... URL: From jann at macports.org Sun Jan 3 13:58:19 2010 From: jann at macports.org (jann at macports.org) Date: Sun, 3 Jan 2010 13:58:19 -0800 (PST) Subject: [62316] trunk/dports/lang/coq Message-ID: <20100103215819.449B03A34149@beta.macosforge.org> Revision: 62316 http://trac.macports.org/changeset/62316 Author: jann at macports.org Date: 2010-01-03 13:58:17 -0800 (Sun, 03 Jan 2010) Log Message: ----------- Fix for ticket #22254 Modified Paths: -------------- trunk/dports/lang/coq/Portfile Added Paths: ----------- trunk/dports/lang/coq/files/patch-tools-coq_makefile.ml4.diff Modified: trunk/dports/lang/coq/Portfile =================================================================== --- trunk/dports/lang/coq/Portfile 2010-01-03 19:54:28 UTC (rev 62315) +++ trunk/dports/lang/coq/Portfile 2010-01-03 21:58:17 UTC (rev 62316) @@ -33,8 +33,13 @@ build.target world destroot.target install destroot.destdir COQINSTALLPREFIX=${destroot} -patchfiles patch-doc-tools-latex_filter.diff +patchfiles patch-doc-tools-latex_filter.diff \ + patch-tools-coq_makefile.ml4.diff +livecheck.type regex +livecheck.url ${homepage}/download/ +livecheck.regex "" + post-activate { ui_msg "The style file for LaTeX documentation," ui_msg "coqdoc.sty, is in ${prefix}/share/coq/latex." ui_msg "Add this to your TEXINPUTS if you wish to" Added: trunk/dports/lang/coq/files/patch-tools-coq_makefile.ml4.diff =================================================================== --- trunk/dports/lang/coq/files/patch-tools-coq_makefile.ml4.diff (rev 0) +++ trunk/dports/lang/coq/files/patch-tools-coq_makefile.ml4.diff 2010-01-03 21:58:17 UTC (rev 62316) @@ -0,0 +1,26 @@ +--- /opt/local/var/macports/build/_Users_kyamada_Documents_Develop_MacPorts_ports_private_coq/work/coq-8.2pl1/tools/coq_makefile.ml4 2009-06-09 18:44:40.000000000 +0900 ++++ tools/coq_makefile.ml4 2009-12-28 16:38:21.000000000 +0900 +@@ -163,7 +163,7 @@ + let ldir = List.assoc "." (List.map (fun (p,l,_) -> (p,l)) inc_r) in + let pdir = physical_dir_of_logical_dir ldir in + printf "\t(for i in $(%s); do \\\n" var; +- printf "\t install -D $$i $(COQLIB)/user-contrib/%s/$$i; \\\n" pdir; ++ printf "\t install -d `dirname $(COQLIB)/user-contrib/%s/$$i`; \\\n\t install $$i $(COQLIB)/user-contrib/%s/$$i; \\\n" pdir pdir; + printf "\t done)\n" + with Not_found -> + (* Files in the scope of a -R option (assuming they are disjoint) *) +@@ -172,12 +172,12 @@ + begin + let pdir' = physical_dir_of_logical_dir ldir in + printf "\t(cd %s; for i in $(%s%d); do \\\n" pdir var i; +- printf "\t install -D $$i $(COQLIB)/user-contrib/%s/$$i; \\\n" pdir'; ++ printf "\t install -d `dirname $(COQLIB)/user-contrib/%s/$$i`; \\\n\t install $$i $(COQLIB)/user-contrib/%s/$$i; \\\n" pdir' pdir'; + printf "\t done)\n" + end) inc_r; + (* Files not in the scope of a -R option *) + printf "\t(for i in $(%s0); do \\\n" var; +- printf "\t install -D $$i $(COQLIB)/user-contrib/$(INSTALLDEFAULTROOT)/$$i; \\\n"; ++ printf "\t install -d `dirname $(COQLIB)/user-contrib/$(INSTALLDEFAULTROOT)/$$i`; \\\n\t install $$i $(COQLIB)/user-contrib/$(INSTALLDEFAULTROOT)/$$i; \\\n"; + printf "\t done)\n" + + let install (vfiles,mlfiles,_,sds) inc = -------------- next part -------------- An HTML attachment was scrubbed... URL: From nox at macports.org Mon Jan 4 04:44:09 2010 From: nox at macports.org (nox at macports.org) Date: Mon, 4 Jan 2010 04:44:09 -0800 (PST) Subject: [62317] trunk/dports/math/eigen/Portfile Message-ID: <20100104124410.7F52E3A41433@beta.macosforge.org> Revision: 62317 http://trac.macports.org/changeset/62317 Author: nox at macports.org Date: 2010-01-04 04:44:06 -0800 (Mon, 04 Jan 2010) Log Message: ----------- Update eigen to 2.0.10 Modified Paths: -------------- trunk/dports/math/eigen/Portfile Modified: trunk/dports/math/eigen/Portfile =================================================================== --- trunk/dports/math/eigen/Portfile 2010-01-03 21:58:17 UTC (rev 62316) +++ trunk/dports/math/eigen/Portfile 2010-01-04 12:44:06 UTC (rev 62317) @@ -4,24 +4,27 @@ PortGroup cmake 1.0 name eigen -version 2.0.0 +version 2.0.10 +license GPLv2+ LGPLv3+ categories math science maintainers nomaintainer description A C++ template library for linear algebra: vectors, matrices, and related algorithms. long_description ${description} homepage http://eigen.tuxfamily.org/ platforms darwin -master_sites http://download.tuxfamily.org/eigen/ + +master_sites http://bitbucket.org/eigen/eigen/get/ +distname ${version} use_bzip2 yes -checksums md5 bedfe344498b926a4b5db17d2846dbb5 \ - sha1 ce7d035b2b27351130d8094375e54a605118233b \ - rmd160 21781944a034792b1c939e48b1d8f54ff1c0e008 +checksums md5 4b73cd71a887b7e501fa9c4760e3d33a \ + sha1 3e3a0884a2c8461a75bcbf68708606e35cc4cf63 \ + rmd160 85d5ce8ba834e9c0f06b11a7f046a4481d81a748 + use_parallel_build yes -worksrcdir build -pre-configure { file mkdir ${worksrcpath} } +worksrcdir ${name} -configure.args-append ../${distname} -DBUILD_SHARED_LIBS=ON +configure.args-append -DEIGEN_BUILD_LIB=ON livecheck.type regex livecheck.url ${homepage}index.php?title=ChangeLog -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Mon Jan 4 04:54:42 2010 From: portindex at macports.org (portindex at macports.org) Date: Mon, 4 Jan 2010 04:54:42 -0800 (PST) Subject: [62318] trunk/dports Message-ID: <20100104125446.00ABC3A41835@beta.macosforge.org> Revision: 62318 http://trac.macports.org/changeset/62318 Author: portindex at macports.org Date: 2010-01-04 04:54:40 -0800 (Mon, 04 Jan 2010) Log Message: ----------- Total number of ports parsed: 6469 Ports successfully parsed: 6469 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex trunk/dports/PortIndex.quick Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-04 12:44:06 UTC (rev 62317) +++ trunk/dports/PortIndex 2010-01-04 12:54:40 UTC (rev 62318) @@ -4918,8 +4918,8 @@ variants universal portdir math/djbfft description {D.J. Bernstein's fast fourier transform library} homepage http://cr.yp.to/djbfft.html epoch 0 platforms darwin name djbfft long_description {djbfft is an extremely fast library for floating-point convolution. The current version holds most of the speed records for double-precision FFTs on general purpose computers. djbfft provides power-of-2 complex FFTs, real FFTs at twice the speed, and fast multiplication of complex arrays. Single precision and double precision are equally supported.} maintainers nomaintainer categories math version 0.76 revision 0 e 348 portdir math/e description {e is a command line expression evaluator.} homepage http://www.softnet.tuc.gr/~apdim/projects/e/ epoch 0 platforms darwin name e maintainers nomaintainer long_description {e is a command line expression evaluator. It was designed to be as small as possible, and quick to use.} version 0.02718 categories math revision 0 -eigen 427 -variants {debug universal} depends_build port:cmake portdir math/eigen description {A C++ template library for linear algebra: vectors, matrices, and related algorithms.} homepage http://eigen.tuxfamily.org/ epoch 0 platforms darwin name eigen maintainers nomaintainer long_description {{A C++ template library for linear algebra: vectors, matrices, and related algorithms.}} categories {math science} version 2.0.0 revision 0 +eigen 428 +variants {debug universal} depends_build port:cmake portdir math/eigen description {A C++ template library for linear algebra: vectors, matrices, and related algorithms.} homepage http://eigen.tuxfamily.org/ epoch 0 platforms darwin name eigen maintainers nomaintainer long_description {{A C++ template library for linear algebra: vectors, matrices, and related algorithms.}} categories {math science} version 2.0.10 revision 0 ent 582 portdir math/ent description {Entropy calculator} homepage http://www.fourmilab.ch/random/ epoch 0 platforms darwin name ent maintainers blb long_description {ent applies various tests to sequences of bytes stored in files and reports the results of those tests. The program is useful for those evaluating pseudorandom number generators for encryption and statistical sampling applications, compression algorithms, and other applications where the information density of a file is of interest.} depends_extract bin:unzip:unzip categories {math security} version 20080128 revision 0 entropy 418 Modified: trunk/dports/PortIndex.quick =================================================================== (Binary files differ) -------------- next part -------------- An HTML attachment was scrubbed... URL: From macsforever2000 at macports.org Mon Jan 4 07:32:57 2010 From: macsforever2000 at macports.org (macsforever2000 at macports.org) Date: Mon, 4 Jan 2010 07:32:57 -0800 (PST) Subject: [62319] trunk/dports/devel/pccts/Portfile Message-ID: <20100104153258.038DB3A44348@beta.macosforge.org> Revision: 62319 http://trac.macports.org/changeset/62319 Author: macsforever2000 at macports.org Date: 2010-01-04 07:32:53 -0800 (Mon, 04 Jan 2010) Log Message: ----------- Fix universal variant. (#21031) Modified Paths: -------------- trunk/dports/devel/pccts/Portfile Modified: trunk/dports/devel/pccts/Portfile =================================================================== --- trunk/dports/devel/pccts/Portfile 2010-01-04 12:54:40 UTC (rev 62318) +++ trunk/dports/devel/pccts/Portfile 2010-01-04 15:32:53 UTC (rev 62319) @@ -34,7 +34,7 @@ build.target variant universal { - build.args-append CC="gcc -isysroot /Developer/SDKs/MacOSX10.4u.sdk -arch i386 -arch ppc" + build.args-append CC="${configure.cc} ${configure.universal_cflags}" } destroot { -------------- next part -------------- An HTML attachment was scrubbed... URL: From dluke at macports.org Mon Jan 4 07:54:50 2010 From: dluke at macports.org (dluke at macports.org) Date: Mon, 4 Jan 2010 07:54:50 -0800 (PST) Subject: [62320] trunk/dports/mail/libmilter/Portfile Message-ID: <20100104155450.7944A3A44751@beta.macosforge.org> Revision: 62320 http://trac.macports.org/changeset/62320 Author: dluke at macports.org Date: 2010-01-04 07:54:49 -0800 (Mon, 04 Jan 2010) Log Message: ----------- Version bump, libmilter to 8.14.4 Modified Paths: -------------- trunk/dports/mail/libmilter/Portfile Modified: trunk/dports/mail/libmilter/Portfile =================================================================== --- trunk/dports/mail/libmilter/Portfile 2010-01-04 15:32:53 UTC (rev 62319) +++ trunk/dports/mail/libmilter/Portfile 2010-01-04 15:54:49 UTC (rev 62320) @@ -4,7 +4,7 @@ name libmilter set major_version 8.14 -version ${major_version}.3 +version ${major_version}.4 categories mail maintainers geeklair.net:dluke platforms darwin @@ -22,15 +22,18 @@ master_sites ftp://ftp.sendmail.org/pub/sendmail/ distname sendmail.${version} -checksums md5 a5ee5d26e1f546a2da5fb9a513bd6bce \ - sha1 814c54c3917aa6b0981b5ea99fb34e0c02f31489 \ - rmd160 5423360ce908c985827cf6524a6de87e3451c27a +checksums md5 1b23d5000c8e7bfe82ec1a27f2f5fdc5 \ + sha1 ba192f9a5114437aaec952f503fa2f09ee6dbe57 \ + rmd160 d998062ee6b4e80eb90cc6e790f971bd02b52254 worksrcdir sendmail-${version} use_configure no build { + file copy ${worksrcpath}/devtools/OS/Darwin.9.x \ + ${worksrcpath}/devtools/Site/site.config.m4 + system "cd ${worksrcpath}/${name} && \ ./Build -O ${worksrcpath}/macports" -------------- next part -------------- An HTML attachment was scrubbed... URL: From macsforever2000 at macports.org Mon Jan 4 08:08:08 2010 From: macsforever2000 at macports.org (macsforever2000 at macports.org) Date: Mon, 4 Jan 2010 08:08:08 -0800 (PST) Subject: [62321] trunk/dports/gnome/gnome-vfsmm/Portfile Message-ID: <20100104160809.0E98A3A44F15@beta.macosforge.org> Revision: 62321 http://trac.macports.org/changeset/62321 Author: macsforever2000 at macports.org Date: 2010-01-04 08:08:05 -0800 (Mon, 04 Jan 2010) Log Message: ----------- Add missing dependency on doxygen. (#22643) Modified Paths: -------------- trunk/dports/gnome/gnome-vfsmm/Portfile Modified: trunk/dports/gnome/gnome-vfsmm/Portfile =================================================================== --- trunk/dports/gnome/gnome-vfsmm/Portfile 2010-01-04 15:54:49 UTC (rev 62320) +++ trunk/dports/gnome/gnome-vfsmm/Portfile 2010-01-04 16:08:05 UTC (rev 62321) @@ -19,6 +19,8 @@ sha1 a8a8093c3b99b3391981b5ff063ba32f91af4479 \ rmd160 3181c6671c0af2e31c9a06a969e1754cae3167ca +depends_build port:doxygen + depends_lib port:glibmm \ port:gnome-vfs -------------- next part -------------- An HTML attachment was scrubbed... URL: From macsforever2000 at macports.org Mon Jan 4 08:10:29 2010 From: macsforever2000 at macports.org (macsforever2000 at macports.org) Date: Mon, 4 Jan 2010 08:10:29 -0800 (PST) Subject: [62322] trunk/dports/gnome/gnome-vfsmm/Portfile Message-ID: <20100104161029.7950D3A4523D@beta.macosforge.org> Revision: 62322 http://trac.macports.org/changeset/62322 Author: macsforever2000 at macports.org Date: 2010-01-04 08:10:28 -0800 (Mon, 04 Jan 2010) Log Message: ----------- detab. whitespace. Modified Paths: -------------- trunk/dports/gnome/gnome-vfsmm/Portfile Modified: trunk/dports/gnome/gnome-vfsmm/Portfile =================================================================== --- trunk/dports/gnome/gnome-vfsmm/Portfile 2010-01-04 16:08:05 UTC (rev 62321) +++ trunk/dports/gnome/gnome-vfsmm/Portfile 2010-01-04 16:10:28 UTC (rev 62322) @@ -1,33 +1,34 @@ # -*- 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 +PortSystem 1.0 -name gnome-vfsmm -version 2.26.0 -set branch [join [lrange [split ${version} .] 0 1] .] -description gnome-vfsmm provides C++ wrappers for gnome-vfs. -long_description ${description} -maintainers nomaintainer -categories gnome -platforms darwin -homepage http://www.gtkmm.org/ -master_sites gnome:sources/${name}/${branch}/ -use_bzip2 yes +name gnome-vfsmm +version 2.26.0 +set branch [join [lrange [split ${version} .] 0 1] .] +description gnome-vfsmm provides C++ wrappers for gnome-vfs. +long_description ${description} +maintainers nomaintainer +categories gnome +platforms darwin -checksums md5 d27d34b6a8722c557366729071c1baab \ - sha1 a8a8093c3b99b3391981b5ff063ba32f91af4479 \ - rmd160 3181c6671c0af2e31c9a06a969e1754cae3167ca +homepage http://www.gtkmm.org/ +master_sites gnome:sources/${name}/${branch}/ +use_bzip2 yes -depends_build port:doxygen +checksums md5 d27d34b6a8722c557366729071c1baab \ + sha1 a8a8093c3b99b3391981b5ff063ba32f91af4479 \ + rmd160 3181c6671c0af2e31c9a06a969e1754cae3167ca -depends_lib port:glibmm \ - port:gnome-vfs +depends_build port:doxygen +depends_lib port:glibmm \ + port:gnome-vfs + configure.cflags-append -no-cpp-precomp configure.cflags-append -flat_namespace configure.cflags-append "-undefined suppress" -livecheck.type regex -livecheck.url http://ftp.gnome.org/pub/gnome/sources/${name}/${branch}/ -livecheck.regex {LATEST-IS-(\d+(?:\.\d+)*)} +livecheck.type regex +livecheck.url http://ftp.gnome.org/pub/gnome/sources/${name}/${branch}/ +livecheck.regex {LATEST-IS-(\d+(?:\.\d+)*)} -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Mon Jan 4 08:54:33 2010 From: portindex at macports.org (portindex at macports.org) Date: Mon, 4 Jan 2010 08:54:33 -0800 (PST) Subject: [62323] trunk/dports Message-ID: <20100104165435.A42553A45857@beta.macosforge.org> Revision: 62323 http://trac.macports.org/changeset/62323 Author: portindex at macports.org Date: 2010-01-04 08:54:31 -0800 (Mon, 04 Jan 2010) Log Message: ----------- Total number of ports parsed: 6469 Ports successfully parsed: 6469 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex trunk/dports/PortIndex.quick Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-04 16:10:28 UTC (rev 62322) +++ trunk/dports/PortIndex 2010-01-04 16:54:31 UTC (rev 62323) @@ -2896,8 +2896,8 @@ variants {universal avahi} portdir gnome/gnome-vfs description {This is the GNOME Virtual File System.} homepage http://www.gnome.org/ depends_run {port:desktop-file-utils port:gnome-mime-data port:shared-mime-info} epoch 0 platforms darwin depends_lib {port:gconf port:openssl port:libidl port:dbus-glib port:libxml2} name gnome-vfs maintainers nomaintainer long_description {This is the GNOME Virtual File System. GNOME VFS is currently used as one of the foundations of the Nautilus file manager.} categories gnome version 2.24.2 revision 0 gnome-vfs-monikers 384 variants universal portdir gnome/gnome-vfs-monikers description {Bonobo components for gnome-vfs.} homepage http://www.gnome.org/ epoch 0 platforms darwin name gnome-vfs-monikers depends_lib {port:gnome-vfs port:libbonobo} maintainers nomaintainer long_description {Programs using bonobo can use the gnome-vfs-monikers to access gnome-vfs.} categories gnome version 2.15.3 revision 0 -gnome-vfsmm 360 -variants universal portdir gnome/gnome-vfsmm description {gnome-vfsmm provides C++ wrappers for gnome-vfs.} homepage http://www.gtkmm.org/ epoch 0 platforms darwin name gnome-vfsmm depends_lib {port:glibmm port:gnome-vfs} maintainers nomaintainer long_description {{gnome-vfsmm provides C++ wrappers for gnome-vfs.}} categories gnome version 2.26.0 revision 0 +gnome-vfsmm 387 +variants universal depends_build port:doxygen portdir gnome/gnome-vfsmm description {gnome-vfsmm provides C++ wrappers for gnome-vfs.} homepage http://www.gtkmm.org/ epoch 0 platforms darwin depends_lib {port:glibmm port:gnome-vfs} name gnome-vfsmm maintainers nomaintainer long_description {{gnome-vfsmm provides C++ wrappers for gnome-vfs.}} categories gnome version 2.26.0 revision 0 gnomeicu 685 variants universal portdir gnome/gnomeicu description {GnomeICU is one of the most popular ICQ programs in the world.} homepage http://gnomeicu.sourceforge.net/ epoch 0 platforms darwin name gnomeicu depends_lib {lib:libgnet:gnet lib:libgdbm:gdbm bin:gnome-session:gnome-session} maintainers nomaintainer long_description {GnomeICU is one of the most popular UN*X-based ICQ programs in the world. Internet chatting has quickly become one of the most popular uses of the Internet - second only to Email. Instant messaging allows users to communicate in real time with friends, family members, and coworkers in an efficient, unobtrusive manner.} categories gnome version 0.99 revision 0 gnomesu 400 @@ -4759,7 +4759,7 @@ libidn 810 variants universal portdir mail/libidn description {international domain name library} homepage http://www.gnu.org/software/libidn/ epoch 0 platforms darwin name libidn depends_lib {port:libiconv port:gettext} maintainers foellinger.de:olaf long_description {Libidn is an implementation of the Stringprep, Punycode and IDNA specifications defined by the IETF Internationalized Domain Names (IDN) working group, used for internationalized domain names. The library contains a generic Stringprep implementation that does Unicode 3.2 NFKC normalization, mapping and prohibitation of characters, and bidirectional character handling. Profiles for iSCSI, Kerberos 5, Nameprep, SASL and XMPP are included. Punycode and ASCII Compatible Encoding (ACE) via IDNA are supported.} categories mail version 1.15 revision 0 libmilter 650 -portdir mail/libmilter description {libmilter library from Sendmail} homepage http://www.sendmail.org/doc/sendmail-current/libmilter/docs/ epoch 0 platforms darwin name libmilter maintainers geeklair.net:dluke long_description {Sendmail's Content Management API (milter) provides third-party programs to access mail messages as they are being processed by the Mail Transfer Agent (MTA), allowing them to examine and modify message content and meta-information. Filtering policies implemented by Milter-conformant filters may then be centrally configured and composed in an end-user's MTA configuration file} version 8.14.3 categories mail revision 0 +portdir mail/libmilter description {libmilter library from Sendmail} homepage http://www.sendmail.org/doc/sendmail-current/libmilter/docs/ epoch 0 platforms darwin name libmilter maintainers geeklair.net:dluke long_description {Sendmail's Content Management API (milter) provides third-party programs to access mail messages as they are being processed by the Mail Transfer Agent (MTA), allowing them to examine and modify message content and meta-information. Filtering policies implemented by Milter-conformant filters may then be centrally configured and composed in an end-user's MTA configuration file} version 8.14.4 categories mail revision 0 librfc822 538 portdir mail/librfc822 description {complete parser for RFC822 addresses} homepage http://cryp.to/librfc822/ epoch 0 platforms darwin name librfc822 maintainers nomaintainer long_description {librfc822 provides application developers with a complete parser for RFC822 addresses. Not only can you use the library to verify that RFC822 addresses are syntactically correct, you can also have an address split up into its semantic parts, what is needed when deciding where to route an address to, etc.} version 1.0 categories mail revision 0 libsieve 638 Modified: trunk/dports/PortIndex.quick =================================================================== (Binary files differ) -------------- next part -------------- An HTML attachment was scrubbed... URL: From nox at macports.org Mon Jan 4 11:10:04 2010 From: nox at macports.org (nox at macports.org) Date: Mon, 4 Jan 2010 11:10:04 -0800 (PST) Subject: [62324] trunk/dports/php Message-ID: <20100104191004.4834D3A4A3AF@beta.macosforge.org> Revision: 62324 http://trac.macports.org/changeset/62324 Author: nox at macports.org Date: 2010-01-04 11:10:02 -0800 (Mon, 04 Jan 2010) Log Message: ----------- Create new port php5-xslcache The XSL Cache extension is a modification of PHP's standard XSL extension that caches the parsed XSL stylesheet representation between sessions for 2.5x boost in performance for sites that repeatedly apply the same transform. Although there is still some further work that could be done on the extension, this code is already proving beneficial in production use for a few applications on the New York Times' website. Added Paths: ----------- trunk/dports/php/php5-xslcache/ trunk/dports/php/php5-xslcache/Portfile Added: trunk/dports/php/php5-xslcache/Portfile =================================================================== --- trunk/dports/php/php5-xslcache/Portfile (rev 0) +++ trunk/dports/php/php5-xslcache/Portfile 2010-01-04 19:10:02 UTC (rev 62324) @@ -0,0 +1,36 @@ +# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:filetype=tcl:et:sw=4:ts=4:sts=4 +# $Id$ + +PortSystem 1.0 +PortGroup php5extension 1.0 + +php5extension.setup xslcache 0.7.1 pecl +license PHP +categories php www devel +platforms darwin +maintainers nox openmaintainer + +description \ + A modification of PHP's standard XSL extension that caches the parsed XSL \ + stylesheet representation + +long_description \ + The XSL Cache extension is a modification of PHP's standard XSL extension \ + that caches the parsed XSL stylesheet representation between sessions for \ + 2.5x boost in performance for sites that repeatedly apply the same \ + transform. Although there is still some further work that could be done on \ + the extension, this code is already proving beneficial in production use \ + for a few applications on the New York Times' website. + +checksums md5 1e32327f62122055ece6f78fa2b851b2 \ + sha1 d185d34e032ab78aa62e4f023567dc26f4af3bac \ + rmd160 09dbdd8f010d8d44891f3da0e6dae37308b92408 + +use_parallel_build yes + +post-destroot { + set docdir ${prefix}/share/doc/${name} + xinstall -d ${destroot}${docdir} + xinstall -m 644 -W ${worksrcpath} CREDITS EXPERIMENTAL \ + ${destroot}${docdir} +} Property changes on: trunk/dports/php/php5-xslcache/Portfile ___________________________________________________________________ Added: svn:keywords + Id Added: svn:eol-style + native -------------- next part -------------- An HTML attachment was scrubbed... URL: From snc at macports.org Mon Jan 4 11:24:41 2010 From: snc at macports.org (snc at macports.org) Date: Mon, 4 Jan 2010 11:24:41 -0800 (PST) Subject: [62325] trunk/dports/graphics/pngcrush/Portfile Message-ID: <20100104192441.4493D3A4B0AD@beta.macosforge.org> Revision: 62325 http://trac.macports.org/changeset/62325 Author: snc at macports.org Date: 2010-01-04 11:24:39 -0800 (Mon, 04 Jan 2010) Log Message: ----------- updated version Modified Paths: -------------- trunk/dports/graphics/pngcrush/Portfile Modified: trunk/dports/graphics/pngcrush/Portfile =================================================================== --- trunk/dports/graphics/pngcrush/Portfile 2010-01-04 19:10:02 UTC (rev 62324) +++ trunk/dports/graphics/pngcrush/Portfile 2010-01-04 19:24:39 UTC (rev 62325) @@ -4,7 +4,7 @@ PortSystem 1.0 name pngcrush -version 1.7.6 +version 1.7.7 categories graphics maintainers snc openmaintainer description optimizer for PNG files @@ -22,9 +22,9 @@ master_sites sourceforge:pmt use_bzip2 yes -checksums md5 2b832dfc19953ff3f030dd311d213910 \ - sha1 8378a0e59c47d15db25e73fde199dce6a5cfde37 \ - rmd160 72d93524650d78c2f4354de34f020627697ea031 +checksums md5 0ac097be4c7eb28504f8a583ee92b103 \ + sha1 422ae452accb35005abf0aeafa872017a5a01c5e \ + rmd160 c696e023ae223ff7380ba4d1c4d1421af909ae34 use_configure no -------------- next part -------------- An HTML attachment was scrubbed... URL: From nox at macports.org Mon Jan 4 11:25:52 2010 From: nox at macports.org (nox at macports.org) Date: Mon, 4 Jan 2010 11:25:52 -0800 (PST) Subject: [62326] trunk/dports/php/php5-xslcache/Portfile Message-ID: <20100104192552.8795E3A4B3D5@beta.macosforge.org> Revision: 62326 http://trac.macports.org/changeset/62326 Author: nox at macports.org Date: 2010-01-04 11:25:51 -0800 (Mon, 04 Jan 2010) Log Message: ----------- Add php5-xslcache homepage Modified Paths: -------------- trunk/dports/php/php5-xslcache/Portfile Modified: trunk/dports/php/php5-xslcache/Portfile =================================================================== --- trunk/dports/php/php5-xslcache/Portfile 2010-01-04 19:24:39 UTC (rev 62325) +++ trunk/dports/php/php5-xslcache/Portfile 2010-01-04 19:25:51 UTC (rev 62326) @@ -22,10 +22,12 @@ the extension, this code is already proving beneficial in production use \ for a few applications on the New York Times' website. -checksums md5 1e32327f62122055ece6f78fa2b851b2 \ - sha1 d185d34e032ab78aa62e4f023567dc26f4af3bac \ - rmd160 09dbdd8f010d8d44891f3da0e6dae37308b92408 +homepage http://code.nytimes.com/projects/xslcache +checksums md5 1e32327f62122055ece6f78fa2b851b2 \ + sha1 d185d34e032ab78aa62e4f023567dc26f4af3bac \ + rmd160 09dbdd8f010d8d44891f3da0e6dae37308b92408 + use_parallel_build yes post-destroot { -------------- next part -------------- An HTML attachment was scrubbed... URL: From snc at macports.org Mon Jan 4 11:40:35 2010 From: snc at macports.org (snc at macports.org) Date: Mon, 4 Jan 2010 11:40:35 -0800 (PST) Subject: [62327] trunk/dports/net/tnftpd/Portfile Message-ID: <20100104194035.B4AEF3A4D1E5@beta.macosforge.org> Revision: 62327 http://trac.macports.org/changeset/62327 Author: snc at macports.org Date: 2010-01-04 11:40:31 -0800 (Mon, 04 Jan 2010) Log Message: ----------- updated version, cat files no longer exist. added license. Modified Paths: -------------- trunk/dports/net/tnftpd/Portfile Modified: trunk/dports/net/tnftpd/Portfile =================================================================== --- trunk/dports/net/tnftpd/Portfile 2010-01-04 19:25:51 UTC (rev 62326) +++ trunk/dports/net/tnftpd/Portfile 2010-01-04 19:40:31 UTC (rev 62327) @@ -4,9 +4,9 @@ PortSystem 1.0 name tnftpd -version 20081009 +version 20091122 categories net -#license BSD +license BSD maintainers snc openmaintainer description Internet File Transfer Protocol server long_description ${name} is the Internet File Transfer Protocol server \ @@ -18,9 +18,9 @@ platforms darwin master_sites ${homepage} -checksums md5 6cd85b6a953821a3d4fcb8f14a2c2636 \ - sha1 60d00e431576c7cda75613d39820ffb97c30135d \ - rmd160 3fc31849159baaffc86e097b3f4e1bfdda3a9476 +checksums md5 e7f86e7680648b675ee27c94655de494 \ + sha1 82feb3cf2124eb5aa3edb2be6a468df2c05bc1b0 \ + rmd160 8eaffa2b0d3c8fb0b33dae1e1dd9cd58c7c45afd use_autoconf yes @@ -33,10 +33,6 @@ xinstall -m 444 ${worksrcpath}/src/ftpusers.man ${destroot}${prefix}/share/man/man5/ftpdusers.5 xinstall -m 444 ${worksrcpath}/src/${name}.man ${destroot}${prefix}/share/man/man8/${name}.8 - xinstall -m 444 ${worksrcpath}/src/ftpd.conf.cat ${destroot}${prefix}/share/man/cat5/ftpd.conf.0 - xinstall -m 444 ${worksrcpath}/src/ftpusers.cat ${destroot}${prefix}/share/man/cat5/ftpusers.0 - xinstall -m 444 ${worksrcpath}/src/${name}.cat ${destroot}${prefix}/share/man/cat8/${name}.0 - xinstall -d 555 ${destroot}${prefix}/share/${name}/examples/ xinstall -m 444 ${worksrcpath}/examples/ftpd.conf ${destroot}${prefix}/share/${name}/ftpd.conf.default xinstall -m 444 ${worksrcpath}/examples/ftpusers ${destroot}${prefix}/share/${name}/ftpusers -------------- next part -------------- An HTML attachment was scrubbed... URL: From dluke at macports.org Mon Jan 4 11:48:59 2010 From: dluke at macports.org (dluke at macports.org) Date: Mon, 4 Jan 2010 11:48:59 -0800 (PST) Subject: [62328] trunk/dports/mail/libmilter/Portfile Message-ID: <20100104194900.87A063A4D634@beta.macosforge.org> Revision: 62328 http://trac.macports.org/changeset/62328 Author: dluke at macports.org Date: 2010-01-04 11:48:57 -0800 (Mon, 04 Jan 2010) Log Message: ----------- Move the site config setup to a darwin 10 platform conditional to prevent possibly breaking building on other platforms Modified Paths: -------------- trunk/dports/mail/libmilter/Portfile Modified: trunk/dports/mail/libmilter/Portfile =================================================================== --- trunk/dports/mail/libmilter/Portfile 2010-01-04 19:40:31 UTC (rev 62327) +++ trunk/dports/mail/libmilter/Portfile 2010-01-04 19:48:57 UTC (rev 62328) @@ -30,10 +30,16 @@ use_configure no +platform darwin 10 { + pre-build { + file copy ${worksrcpath}/devtools/OS/Darwin.9.x \ + ${worksrcpath}/devtools/Site/site.config.m4 + } + + } + + build { - file copy ${worksrcpath}/devtools/OS/Darwin.9.x \ - ${worksrcpath}/devtools/Site/site.config.m4 - system "cd ${worksrcpath}/${name} && \ ./Build -O ${worksrcpath}/macports" -------------- next part -------------- An HTML attachment was scrubbed... URL: From dluke at macports.org Mon Jan 4 11:54:24 2010 From: dluke at macports.org (dluke at macports.org) Date: Mon, 4 Jan 2010 11:54:24 -0800 (PST) Subject: [62330] trunk/dports/devel/apr Message-ID: <20100104195424.829603A4D87D@beta.macosforge.org> Revision: 62330 http://trac.macports.org/changeset/62330 Author: dluke at macports.org Date: 2010-01-04 11:54:22 -0800 (Mon, 04 Jan 2010) Log Message: ----------- Patch out apr's 1.3.9 darwin change that breaks subversion fixes #22032, #22770, and #22329 (which unblocks updating subversion to 1.6.6) Modified Paths: -------------- trunk/dports/devel/apr/Portfile Added Paths: ----------- trunk/dports/devel/apr/files/patch-configure.diff Modified: trunk/dports/devel/apr/Portfile =================================================================== --- trunk/dports/devel/apr/Portfile 2010-01-04 19:54:19 UTC (rev 62329) +++ trunk/dports/devel/apr/Portfile 2010-01-04 19:54:22 UTC (rev 62330) @@ -4,6 +4,7 @@ name apr version 1.3.9 +revision 1 categories devel maintainers geeklair.net:dluke platforms darwin @@ -22,6 +23,8 @@ sha1 fb19ec11a15db03dcb9211f31012b079a522d1f0 \ rmd160 e90943275289113771b623c827ab3fb3c18064d8 +patchfiles patch-configure.diff + use_parallel_build yes configure.env ac_cv_prog_AWK=awk lt_cv_path_SED=sed configure.args --with-installbuilddir=${prefix}/share/apr-1/build \ Added: trunk/dports/devel/apr/files/patch-configure.diff =================================================================== --- trunk/dports/devel/apr/files/patch-configure.diff (rev 0) +++ trunk/dports/devel/apr/files/patch-configure.diff 2010-01-04 19:54:22 UTC (rev 62330) @@ -0,0 +1,18 @@ +--- configure.orig 2010-01-02 16:20:01.000000000 -0500 ++++ configure 2010-01-02 16:20:19.000000000 -0500 +@@ -1613,15 +1613,6 @@ + else + AC_ERROR([could not determine the size of off_t]) + fi +- # Per OS tuning... +- case $host in +- *apple-darwin10.*) +- # off_t is a long long, but long == long long +- if test "$ac_cv_sizeof_long" = "$ac_cv_sizeof_long_long"; then +- off_t_fmt='#define APR_OFF_T_FMT "lld"' +- fi +- ;; +- esac + else + # Fallback on int + off_t_value=apr_int32_t -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Mon Jan 4 11:54:22 2010 From: portindex at macports.org (portindex at macports.org) Date: Mon, 4 Jan 2010 11:54:22 -0800 (PST) Subject: [62329] trunk/dports Message-ID: <20100104195425.26E203A4D881@beta.macosforge.org> Revision: 62329 http://trac.macports.org/changeset/62329 Author: portindex at macports.org Date: 2010-01-04 11:54:19 -0800 (Mon, 04 Jan 2010) Log Message: ----------- Total number of ports parsed: 6470 Ports successfully parsed: 6470 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex trunk/dports/PortIndex.quick Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-04 19:48:57 UTC (rev 62328) +++ trunk/dports/PortIndex 2010-01-04 19:54:19 UTC (rev 62329) @@ -3485,7 +3485,7 @@ png2ico 365 portdir graphics/png2ico description {Converts PNG files to Windows icon resource files.} homepage http://www.winterdrache.de/freeware/png2ico/ epoch 0 platforms darwin name png2ico depends_lib {port:libpng port:zlib} maintainers nomaintainer long_description {{Converts PNG files to Windows icon resource files.}} categories graphics version 2002-12-08 revision 0 pngcrush 620 -portdir graphics/pngcrush description {optimizer for PNG files} homepage http://pmt.sourceforge.net/pngcrush/ epoch 0 platforms {darwin freebsd} name pngcrush maintainers {snc openmaintainer} long_description {pngcrush reads in a PNG image, and writes it out again, with the optimum filter_type and zlib_level. It uses brute force (trying filter_type none, and libpng adaptive filtering, with compression levels 3 and 9). It does the most time-consuming method last in case it turns out to be the best. Optionally, it can remove unwanted chunks or add gAMA and sRGB chunks.} version 1.7.6 categories graphics revision 0 +portdir graphics/pngcrush description {optimizer for PNG files} homepage http://pmt.sourceforge.net/pngcrush/ epoch 0 platforms {darwin freebsd} name pngcrush maintainers {snc openmaintainer} long_description {pngcrush reads in a PNG image, and writes it out again, with the optimum filter_type and zlib_level. It uses brute force (trying filter_type none, and libpng adaptive filtering, with compression levels 3 and 9). It does the most time-consuming method last in case it turns out to be the best. Optionally, it can remove unwanted chunks or add gAMA and sRGB chunks.} version 1.7.7 categories graphics revision 0 pngmeta 449 variants universal portdir graphics/pngmeta description {Pngmeta is a tool for extracting metadata from PNG (Portable Network Graphics) files.} homepage http://pmt.sourceforge.net/pngmeta/ epoch 0 platforms {darwin freebsd} name pngmeta depends_lib {port:libpng port:zlib} maintainers nomaintainer long_description {{Pngmeta is a tool for extracting metadata from PNG (Portable Network Graphics) files.}} categories graphics version 1.11 revision 1 pngpp 382 @@ -6039,7 +6039,7 @@ tlswrap 394 variants universal portdir net/tlswrap description {TLS/SSL FTP wrapper/proxy} homepage http://tlswrap.sunsite.dk/ epoch 0 platforms darwin name tlswrap depends_lib port:openssl long_description {TLSWrap is a TLS/SSL FTP wrapper/proxy, allowing you to use your favorite FTP client with any TLS/SSL-enabled FTP server.} maintainers nomaintainer categories {net security} version 1.02 revision 0 tnftpd 519 -variants universal depends_build {port:autoconf port:automake port:libtool} portdir net/tnftpd description {Internet File Transfer Protocol server} homepage ftp://ftp.netbsd.org/pub/NetBSD/misc/tnftp/ epoch 0 platforms darwin name tnftpd long_description {tnftpd is the Internet File Transfer Protocol server process. The server uses the TCP protocol and listens at the port specified in the ``ftp'' service {specification;} see services(5).} maintainers {snc openmaintainer} categories net version 20081009 revision 0 +variants universal depends_build {port:autoconf port:automake port:libtool} portdir net/tnftpd description {Internet File Transfer Protocol server} homepage ftp://ftp.netbsd.org/pub/NetBSD/misc/tnftp/ epoch 0 platforms darwin name tnftpd long_description {tnftpd is the Internet File Transfer Protocol server process. The server uses the TCP protocol and listens at the port specified in the ``ftp'' service {specification;} see services(5).} maintainers {snc openmaintainer} categories net version 20091122 revision 0 torrentsniff 496 variants universal portdir net/torrentsniff description {torrent status program} homepage http://www.highprogrammer.com/alan/perl/torrentsniff.html epoch 0 platforms darwin name torrentsniff depends_lib {port:p5-libwww-perl port:p5-digest-sha1} long_description {TorrentSniff is a command line Perl program that reads a BitTorrent .torrent file from the local file system or from a URL and reports on the status of the torrent.} maintainers eridius categories {net perl} version 0.3.0 revision 0 traceroute 336 @@ -7754,6 +7754,8 @@ variants {debug universal} depends_build {port:libiconv port:libxml2} portdir php/php5-xmlrpc description {a PHP extension for writing XML-RPC clients and servers} homepage http://www.php.net/xmlrpc epoch 0 platforms darwin name php5-xmlrpc depends_lib {path:bin/phpize:php5 port:expat} maintainers ryandesign long_description {{a PHP extension for writing XML-RPC clients and servers}} categories {php textproc} version 5.3.1 revision 2 php5-xsl 482 variants {debug universal} portdir php/php5-xsl description {a PHP interface to libxslt, which implements the XSL standard and lets you perform XSL transformations} homepage http://www.php.net/xsl epoch 0 platforms darwin name php5-xsl depends_lib {path:bin/phpize:php5 port:libxslt} maintainers ryandesign long_description {{a PHP interface to libxslt, which implements the XSL standard and lets you perform XSL transformations}} categories {php textproc} version 5.3.1 revision 2 +php5-xslcache 817 +variants {debug universal} portdir php/php5-xslcache description {A modification of PHP's standard XSL extension that caches the parsed XSL stylesheet representation} homepage http://code.nytimes.com/projects/xslcache epoch 0 platforms darwin name php5-xslcache depends_lib path:bin/phpize:php5 maintainers {nox openmaintainer} long_description {The XSL Cache extension is a modification of PHP's standard XSL extension that caches the parsed XSL stylesheet representation between sessions for 2.5x boost in performance for sites that repeatedly apply the same transform. Although there is still some further work that could be done on the extension, this code is already proving beneficial in production use for a few applications on the New York Times' website.} categories {php www devel} version 0.7.1 revision 0 php5-yaz 420 variants {debug universal} portdir php/php5-yaz description {PHP/PECL extension for the Z39.50 protocol} homepage http://pecl.php.net/package/yaz/ epoch 0 platforms darwin name php5-yaz depends_lib {path:bin/phpize:php5 port:re2c port:yaz} maintainers nomaintainer long_description {This extension implements a Z39.50 client for PHP using the YAZ toolkit.} categories {php net databases devel} version 1.0.14 revision 4 php5-zip 334 Modified: trunk/dports/PortIndex.quick =================================================================== (Binary files differ) -------------- next part -------------- An HTML attachment was scrubbed... URL: From dluke at macports.org Mon Jan 4 11:57:52 2010 From: dluke at macports.org (dluke at macports.org) Date: Mon, 4 Jan 2010 11:57:52 -0800 (PST) Subject: [62331] trunk/dports/devel Message-ID: <20100104195753.220DF3A4DAFB@beta.macosforge.org> Revision: 62331 http://trac.macports.org/changeset/62331 Author: dluke at macports.org Date: 2010-01-04 11:57:51 -0800 (Mon, 04 Jan 2010) Log Message: ----------- Version bump, subversion and bindings ports to 1.6.6 Modified Paths: -------------- trunk/dports/devel/subversion/Portfile trunk/dports/devel/subversion-javahlbindings/Portfile trunk/dports/devel/subversion-perlbindings/Portfile trunk/dports/devel/subversion-python26bindings/Portfile trunk/dports/devel/subversion-rubybindings/Portfile Modified: trunk/dports/devel/subversion/Portfile =================================================================== --- trunk/dports/devel/subversion/Portfile 2010-01-04 19:54:22 UTC (rev 62330) +++ trunk/dports/devel/subversion/Portfile 2010-01-04 19:57:51 UTC (rev 62331) @@ -3,7 +3,7 @@ PortSystem 1.0 name subversion -version 1.6.5 +version 1.6.6 categories devel platforms darwin maintainers geeklair.net:dluke @@ -16,9 +16,9 @@ homepage http://subversion.tigris.org/ master_sites ${homepage}downloads/ use_bzip2 yes -checksums md5 1a53a0e72bee0bf814f4da83a9b6a636 \ - sha1 c575c5facf972e501049ad47a9be05c5cf228388 \ - rmd160 eb2dad92de044352dbe16e0f9c81cadcd5dcd17e +checksums md5 e5109da756d74c7d98f683f004a539af \ + sha1 01b03d04660fa5d1f76c742b0f8a38bf1ca1a507 \ + rmd160 43cac95b4acfc618dc1a3c1aec284e03d7ca2fb9 depends_lib port:expat port:neon \ port:apr port:apr-util \ Modified: trunk/dports/devel/subversion-javahlbindings/Portfile =================================================================== --- trunk/dports/devel/subversion-javahlbindings/Portfile 2010-01-04 19:54:22 UTC (rev 62330) +++ trunk/dports/devel/subversion-javahlbindings/Portfile 2010-01-04 19:57:51 UTC (rev 62331) @@ -3,7 +3,7 @@ PortSystem 1.0 name subversion-javahlbindings -version 1.6.5 +version 1.6.6 categories devel java platforms darwin maintainers geeklair.net:dluke @@ -17,9 +17,9 @@ homepage http://subversion.tigris.org/ master_sites ${homepage}/downloads/ use_bzip2 yes -checksums md5 1a53a0e72bee0bf814f4da83a9b6a636 \ - sha1 c575c5facf972e501049ad47a9be05c5cf228388 \ - rmd160 eb2dad92de044352dbe16e0f9c81cadcd5dcd17e +checksums md5 e5109da756d74c7d98f683f004a539af \ + sha1 01b03d04660fa5d1f76c742b0f8a38bf1ca1a507 \ + rmd160 43cac95b4acfc618dc1a3c1aec284e03d7ca2fb9 distname subversion-${version} dist_subdir subversion Modified: trunk/dports/devel/subversion-perlbindings/Portfile =================================================================== --- trunk/dports/devel/subversion-perlbindings/Portfile 2010-01-04 19:54:22 UTC (rev 62330) +++ trunk/dports/devel/subversion-perlbindings/Portfile 2010-01-04 19:57:51 UTC (rev 62331) @@ -3,8 +3,7 @@ PortSystem 1.0 name subversion-perlbindings -version 1.6.5 -revision 1 +version 1.6.6 categories devel perl platforms darwin maintainers geeklair.net:dluke @@ -18,9 +17,9 @@ homepage http://subversion.tigris.org/ master_sites ${homepage}/downloads/ use_bzip2 yes -checksums md5 1a53a0e72bee0bf814f4da83a9b6a636 \ - sha1 c575c5facf972e501049ad47a9be05c5cf228388 \ - rmd160 eb2dad92de044352dbe16e0f9c81cadcd5dcd17e +checksums md5 e5109da756d74c7d98f683f004a539af \ + sha1 01b03d04660fa5d1f76c742b0f8a38bf1ca1a507 \ + rmd160 43cac95b4acfc618dc1a3c1aec284e03d7ca2fb9 distname subversion-${version} dist_subdir subversion Modified: trunk/dports/devel/subversion-python26bindings/Portfile =================================================================== --- trunk/dports/devel/subversion-python26bindings/Portfile 2010-01-04 19:54:22 UTC (rev 62330) +++ trunk/dports/devel/subversion-python26bindings/Portfile 2010-01-04 19:57:51 UTC (rev 62331) @@ -3,7 +3,7 @@ PortSystem 1.0 name subversion-python26bindings -version 1.6.5 +version 1.6.6 categories devel python platforms darwin maintainers geeklair.net:dluke @@ -17,9 +17,9 @@ homepage http://subversion.tigris.org/ master_sites ${homepage}/downloads use_bzip2 yes -checksums md5 1a53a0e72bee0bf814f4da83a9b6a636 \ - sha1 c575c5facf972e501049ad47a9be05c5cf228388 \ - rmd160 eb2dad92de044352dbe16e0f9c81cadcd5dcd17e +checksums md5 e5109da756d74c7d98f683f004a539af \ + sha1 01b03d04660fa5d1f76c742b0f8a38bf1ca1a507 \ + rmd160 43cac95b4acfc618dc1a3c1aec284e03d7ca2fb9 distname subversion-${version} dist_subdir subversion Modified: trunk/dports/devel/subversion-rubybindings/Portfile =================================================================== --- trunk/dports/devel/subversion-rubybindings/Portfile 2010-01-04 19:54:22 UTC (rev 62330) +++ trunk/dports/devel/subversion-rubybindings/Portfile 2010-01-04 19:57:51 UTC (rev 62331) @@ -3,7 +3,7 @@ PortSystem 1.0 name subversion-rubybindings -version 1.6.5 +version 1.6.6 categories devel ruby platforms darwin maintainers geeklair.net:dluke @@ -17,9 +17,9 @@ homepage http://subversion.tigris.org/ master_sites ${homepage}/downloads/ use_bzip2 yes -checksums md5 1a53a0e72bee0bf814f4da83a9b6a636 \ - sha1 c575c5facf972e501049ad47a9be05c5cf228388 \ - rmd160 eb2dad92de044352dbe16e0f9c81cadcd5dcd17e +checksums md5 e5109da756d74c7d98f683f004a539af \ + sha1 01b03d04660fa5d1f76c742b0f8a38bf1ca1a507 \ + rmd160 43cac95b4acfc618dc1a3c1aec284e03d7ca2fb9 distname subversion-${version} dist_subdir subversion -------------- next part -------------- An HTML attachment was scrubbed... URL: From dluke at macports.org Mon Jan 4 11:59:08 2010 From: dluke at macports.org (dluke at macports.org) Date: Mon, 4 Jan 2010 11:59:08 -0800 (PST) Subject: [62332] trunk/dports/devel/subversion-python25bindings/Portfile Message-ID: <20100104195908.3CA623A4DC83@beta.macosforge.org> Revision: 62332 http://trac.macports.org/changeset/62332 Author: dluke at macports.org Date: 2010-01-04 11:59:06 -0800 (Mon, 04 Jan 2010) Log Message: ----------- Version bump, subversion-python25bindings to 1.6.6 Modified Paths: -------------- trunk/dports/devel/subversion-python25bindings/Portfile Modified: trunk/dports/devel/subversion-python25bindings/Portfile =================================================================== --- trunk/dports/devel/subversion-python25bindings/Portfile 2010-01-04 19:57:51 UTC (rev 62331) +++ trunk/dports/devel/subversion-python25bindings/Portfile 2010-01-04 19:59:06 UTC (rev 62332) @@ -3,7 +3,7 @@ PortSystem 1.0 name subversion-python25bindings -version 1.6.5 +version 1.6.6 categories devel python platforms darwin maintainers nomaintainer @@ -17,9 +17,9 @@ homepage http://subversion.tigris.org/ master_sites ${homepage}/downloads use_bzip2 yes -checksums md5 1a53a0e72bee0bf814f4da83a9b6a636 \ - sha1 c575c5facf972e501049ad47a9be05c5cf228388 \ - rmd160 eb2dad92de044352dbe16e0f9c81cadcd5dcd17e +checksums md5 e5109da756d74c7d98f683f004a539af \ + sha1 01b03d04660fa5d1f76c742b0f8a38bf1ca1a507 \ + rmd160 43cac95b4acfc618dc1a3c1aec284e03d7ca2fb9 distname subversion-${version} dist_subdir subversion -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Mon Jan 4 12:54:27 2010 From: portindex at macports.org (portindex at macports.org) Date: Mon, 4 Jan 2010 12:54:27 -0800 (PST) Subject: [62333] trunk/dports Message-ID: <20100104205430.3ECED3A4F76D@beta.macosforge.org> Revision: 62333 http://trac.macports.org/changeset/62333 Author: portindex at macports.org Date: 2010-01-04 12:54:25 -0800 (Mon, 04 Jan 2010) Log Message: ----------- Total number of ports parsed: 6470 Ports successfully parsed: 6470 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex trunk/dports/PortIndex.quick Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-04 19:59:06 UTC (rev 62332) +++ trunk/dports/PortIndex 2010-01-04 20:54:25 UTC (rev 62333) @@ -923,7 +923,7 @@ apache-ant 511 variants {darwin source} portdir devel/apache-ant description {Java opensource build system} homepage http://ant.apache.org/ epoch 0 platforms {darwin freebsd} name apache-ant long_description {Ant is a Java based build tool. In theory it is kind of like make without make's wrinkles. Ant uses XML build files that define a set of targets. Each target has dependencies (other targets) and contains a set of tasks to perform.} maintainers {openmaintainer jberry} categories {devel java} version 1.7.1 revision 0 apr 451 -variants universal portdir devel/apr description {The apache group's portability library} homepage http://apr.apache.org/ epoch 0 platforms darwin name apr long_description {The Apache Portable Runtime is a library of C data structures and routines, forming a system portability layer that covers as many operating systems as possible, including Unices, Win32, BeOS, and OS/2.} maintainers geeklair.net:dluke categories devel version 1.3.9 revision 0 +variants universal portdir devel/apr description {The apache group's portability library} homepage http://apr.apache.org/ epoch 0 platforms darwin name apr long_description {The Apache Portable Runtime is a library of C data structures and routines, forming a system portability layer that covers as many operating systems as possible, including Unices, Win32, BeOS, and OS/2.} maintainers geeklair.net:dluke categories devel version 1.3.9 revision 1 apr-util 535 variants {no_bdb no_sqlite openldap postgresql84 postgresql83 postgresql82 mysql5 universal} portdir devel/apr-util description {utilities built with the apache group's portability library} homepage http://apr.apache.org/ epoch 0 platforms darwin name apr-util depends_lib {port:apr port:expat port:libiconv port:db46 port:sqlite3} long_description {apr-util is a library of useful utilities built with and intended to be used with the Apache Portable Runtime.} maintainers geeklair.net:dluke categories devel version 1.3.9 revision 0 apr-util0 562 @@ -2097,19 +2097,19 @@ strigi 718 variants {debug universal} depends_build port:cmake portdir devel/strigi description {Fastest and smallest desktop searching program} homepage http://strigi.sourceforge.net/ epoch 0 platforms darwin depends_lib {port:bzip2 port:clucene port:dbus port:libxml2 port:zlib} name strigi maintainers {gmail.com:clubjuggler openmaintainer} long_description {Strigi is a daemon which uses a very fast and efficient crawler that can index data on your harddrive. Indexing operations are performed without hammering your system, this makes Strigi the fastest and smallest desktop searching program. Strigi can index different file formats, including the contents of the archive files.} categories devel version 0.6.3 revision 2 subversion 667 -variants {mod_dav_svn no_neon no_bdb mac_os_x_server_mod_dav_svn tools unicode_path bash_completion disable_keychain darwin_7} portdir devel/subversion description {A version control system designed to be a better cvs.} homepage http://subversion.tigris.org/ epoch 0 platforms darwin name subversion depends_lib {port:expat port:neon port:apr port:apr-util port:db46 port:sqlite3 port:gettext port:libiconv port:serf port:cyrus-sasl2} long_description {Subversion is a version control system designed to be as similar to cvs(1) as possible, while fixing many outstanding problems with cvs(1).} maintainers geeklair.net:dluke categories devel version 1.6.5 revision 0 +variants {mod_dav_svn no_neon no_bdb mac_os_x_server_mod_dav_svn tools unicode_path bash_completion disable_keychain darwin_7} portdir devel/subversion description {A version control system designed to be a better cvs.} homepage http://subversion.tigris.org/ epoch 0 platforms darwin name subversion depends_lib {port:expat port:neon port:apr port:apr-util port:db46 port:sqlite3 port:gettext port:libiconv port:serf port:cyrus-sasl2} long_description {Subversion is a version control system designed to be as similar to cvs(1) as possible, while fixing many outstanding problems with cvs(1).} maintainers geeklair.net:dluke categories devel version 1.6.6 revision 0 subversion-javahlbindings 723 -variants {no_bdb no_neon darwin_7 universal} portdir devel/subversion-javahlbindings description {Java (javahl) bindings for the subversion version control system.} homepage http://subversion.tigris.org/ epoch 0 platforms darwin name subversion-javahlbindings depends_lib {port:expat port:neon port:apr port:apr-util port:db46 port:subversion port:junit port:sqlite3 port:gettext port:libiconv port:serf port:cyrus-sasl2} long_description {Subversion is a version control system designed to be as similar to cvs(1) as possible, while fixing many outstanding problems with cvs(1). The java bindings provide access to subversion API from java.} maintainers geeklair.net:dluke categories {devel java} version 1.6.5 revision 0 +variants {no_bdb no_neon darwin_7 universal} portdir devel/subversion-javahlbindings description {Java (javahl) bindings for the subversion version control system.} homepage http://subversion.tigris.org/ epoch 0 platforms darwin name subversion-javahlbindings depends_lib {port:expat port:neon port:apr port:apr-util port:db46 port:subversion port:junit port:sqlite3 port:gettext port:libiconv port:serf port:cyrus-sasl2} long_description {Subversion is a version control system designed to be as similar to cvs(1) as possible, while fixing many outstanding problems with cvs(1). The java bindings provide access to subversion API from java.} maintainers geeklair.net:dluke categories {devel java} version 1.6.6 revision 0 subversion-perlbindings 709 -variants {no_bdb no_neon darwin_7} portdir devel/subversion-perlbindings description {Perl bindings for the subversion version control system.} homepage http://subversion.tigris.org/ epoch 0 platforms darwin name subversion-perlbindings depends_lib {port:expat port:neon port:apr port:apr-util port:db46 port:subversion path:bin/perl:perl5 port:gettext port:libiconv port:serf port:cyrus-sasl2 port:sqlite3} long_description {Subversion is a version control system designed to be as similar to cvs(1) as possible, while fixing many outstanding problems with cvs(1). The perl bindings provide access to subversion API from perl.} maintainers geeklair.net:dluke categories {devel perl} version 1.6.5 revision 1 +variants {no_bdb no_neon darwin_7} portdir devel/subversion-perlbindings description {Perl bindings for the subversion version control system.} homepage http://subversion.tigris.org/ epoch 0 platforms darwin name subversion-perlbindings depends_lib {port:expat port:neon port:apr port:apr-util port:db46 port:subversion path:bin/perl:perl5 port:gettext port:libiconv port:serf port:cyrus-sasl2 port:sqlite3} long_description {Subversion is a version control system designed to be as similar to cvs(1) as possible, while fixing many outstanding problems with cvs(1). The perl bindings provide access to subversion API from perl.} maintainers geeklair.net:dluke categories {devel perl} version 1.6.6 revision 0 subversion-python24bindings 730 variants {no_bdb no_neon darwin_7 universal} portdir devel/subversion-python24bindings description {Python bindings for the subversion version control system.} homepage http://subversion.tigris.org/ epoch 0 platforms darwin name subversion-python24bindings depends_lib {port:expat port:neon port:apr port:apr-util port:db46 port:subversion port:python24 port:py-bsddb port:sqlite3 port:gettext port:libiconv port:serf port:cyrus-sasl2} long_description {Subversion is a version control system designed to be as similar to cvs(1) as possible, while fixing many outstanding problems with cvs(1). The python bindings provide access to subversion API from python.} maintainers blair categories {devel python} version 1.6.5 revision 0 subversion-python25bindings 714 -variants {no_bdb no_neon universal} portdir devel/subversion-python25bindings description {Python bindings for the subversion version control system.} homepage http://subversion.tigris.org/ epoch 0 platforms darwin name subversion-python25bindings depends_lib {port:expat port:neon port:apr port:apr-util port:db46 port:subversion port:python25 port:sqlite3 port:gettext port:libiconv port:serf port:cyrus-sasl2} long_description {Subversion is a version control system designed to be as similar to cvs(1) as possible, while fixing many outstanding problems with cvs(1). The python bindings provide access to subversion API from python.} maintainers nomaintainer categories {devel python} version 1.6.5 revision 0 +variants {no_bdb no_neon universal} portdir devel/subversion-python25bindings description {Python bindings for the subversion version control system.} homepage http://subversion.tigris.org/ epoch 0 platforms darwin name subversion-python25bindings depends_lib {port:expat port:neon port:apr port:apr-util port:db46 port:subversion port:python25 port:sqlite3 port:gettext port:libiconv port:serf port:cyrus-sasl2} long_description {Subversion is a version control system designed to be as similar to cvs(1) as possible, while fixing many outstanding problems with cvs(1). The python bindings provide access to subversion API from python.} maintainers nomaintainer categories {devel python} version 1.6.6 revision 0 subversion-python26bindings 729 -variants {no_bdb no_neon darwin_7 universal} portdir devel/subversion-python26bindings description {Python bindings for the subversion version control system.} homepage http://subversion.tigris.org/ epoch 0 platforms darwin name subversion-python26bindings depends_lib {port:expat port:neon port:apr port:apr-util port:db46 port:subversion port:python26 port:sqlite3 port:gettext port:libiconv port:serf port:cyrus-sasl2} long_description {Subversion is a version control system designed to be as similar to cvs(1) as possible, while fixing many outstanding problems with cvs(1). The python bindings provide access to subversion API from python.} maintainers geeklair.net:dluke categories {devel python} version 1.6.5 revision 0 +variants {no_bdb no_neon darwin_7 universal} portdir devel/subversion-python26bindings description {Python bindings for the subversion version control system.} homepage http://subversion.tigris.org/ epoch 0 platforms darwin name subversion-python26bindings depends_lib {port:expat port:neon port:apr port:apr-util port:db46 port:subversion port:python26 port:sqlite3 port:gettext port:libiconv port:serf port:cyrus-sasl2} long_description {Subversion is a version control system designed to be as similar to cvs(1) as possible, while fixing many outstanding problems with cvs(1). The python bindings provide access to subversion API from python.} maintainers geeklair.net:dluke categories {devel python} version 1.6.6 revision 0 subversion-rubybindings 709 -variants {no_bdb no_neon darwin_7 universal} portdir devel/subversion-rubybindings description {Ruby bindings for the subversion version control system.} homepage http://subversion.tigris.org/ epoch 0 platforms darwin name subversion-rubybindings depends_lib {port:expat port:neon port:apr port:apr-util port:db46 port:subversion port:ruby port:sqlite3 port:gettext port:libiconv port:serf port:cyrus-sasl2} long_description {Subversion is a version control system designed to be as similar to cvs(1) as possible, while fixing many outstanding problems with cvs(1). The ruby bindings provide access to subversion API from ruby.} maintainers geeklair.net:dluke categories {devel ruby} version 1.6.5 revision 0 +variants {no_bdb no_neon darwin_7 universal} portdir devel/subversion-rubybindings description {Ruby bindings for the subversion version control system.} homepage http://subversion.tigris.org/ epoch 0 platforms darwin name subversion-rubybindings depends_lib {port:expat port:neon port:apr port:apr-util port:db46 port:subversion port:ruby port:sqlite3 port:gettext port:libiconv port:serf port:cyrus-sasl2} long_description {Subversion is a version control system designed to be as similar to cvs(1) as possible, while fixing many outstanding problems with cvs(1). The ruby bindings provide access to subversion API from ruby.} maintainers geeklair.net:dluke categories {devel ruby} version 1.6.6 revision 0 svk 1182 portdir devel/svk description {A distributed version control system.} homepage http://bestpractical.com/svk/ epoch 0 platforms darwin name svk depends_lib {path:bin/perl:perl5 port:p5-data-hierarchy port:p5-algorithm-diff port:p5-algorithm-annotate port:p5-perlio-via-dynamic port:p5-uri port:p5-perlio-eol port:p5-io-digest port:p5-file-type port:subversion-perlbindings port:p5-perlio-via-symlink port:p5-svn-mirror port:p5-pod-escapes port:p5-pod-simple port:p5-timedate port:p5-io-compress port:p5-freezethaw port:p5-locale-maketext-lexicon port:p5-locale-maketext-simple port:p5-class-autouse port:p5-io-pager port:p5-class-accessor port:p5-pathtools port:p5-version port:p5-yaml-syck port:p5-app-cli port:p5-list-moreutils port:p5-class-data-inheritable port:p5-path-class port:p5-universal-require port:p5-log-log4perl port:p5-file-temp port:p5-time-progress port:p5-libwww-perl port:p5-svn-dump port:p5-perlio-via-bzip2 port:p5-perlio-gzip} maintainers nomaintainer long_description {svk is a decentralized version control system written in Perl. It uses the Subversion filesystem but provides additional, powerful features} categories {devel perl} version 2.2.1 revision 1 svn2cl 373 @@ -4758,8 +4758,8 @@ variants universal portdir mail/libetpan description {mail purpose library} homepage http://libetpan.sourceforge.net/ epoch 0 platforms darwin name libetpan depends_lib {port:openssl port:cyrus-sasl2 port:curl port:zlib port:expat} long_description {libEtPan is a mail purpose library. It will be used for low-level mail handling: network protocols (IMAP/NNTP/POP3/SMTP over TCP/IP and SSL/TCP/IP, already implemented), local storage (mbox/MH/maildir), message/MIME parser} maintainers mww categories {mail devel} version 0.58 revision 0 libidn 810 variants universal portdir mail/libidn description {international domain name library} homepage http://www.gnu.org/software/libidn/ epoch 0 platforms darwin name libidn depends_lib {port:libiconv port:gettext} maintainers foellinger.de:olaf long_description {Libidn is an implementation of the Stringprep, Punycode and IDNA specifications defined by the IETF Internationalized Domain Names (IDN) working group, used for internationalized domain names. The library contains a generic Stringprep implementation that does Unicode 3.2 NFKC normalization, mapping and prohibitation of characters, and bidirectional character handling. Profiles for iSCSI, Kerberos 5, Nameprep, SASL and XMPP are included. Punycode and ASCII Compatible Encoding (ACE) via IDNA are supported.} categories mail version 1.15 revision 0 -libmilter 650 -portdir mail/libmilter description {libmilter library from Sendmail} homepage http://www.sendmail.org/doc/sendmail-current/libmilter/docs/ epoch 0 platforms darwin name libmilter maintainers geeklair.net:dluke long_description {Sendmail's Content Management API (milter) provides third-party programs to access mail messages as they are being processed by the Mail Transfer Agent (MTA), allowing them to examine and modify message content and meta-information. Filtering policies implemented by Milter-conformant filters may then be centrally configured and composed in an end-user's MTA configuration file} version 8.14.4 categories mail revision 0 +libmilter 669 +variants darwin_10 portdir mail/libmilter description {libmilter library from Sendmail} homepage http://www.sendmail.org/doc/sendmail-current/libmilter/docs/ epoch 0 platforms darwin name libmilter long_description {Sendmail's Content Management API (milter) provides third-party programs to access mail messages as they are being processed by the Mail Transfer Agent (MTA), allowing them to examine and modify message content and meta-information. Filtering policies implemented by Milter-conformant filters may then be centrally configured and composed in an end-user's MTA configuration file} maintainers geeklair.net:dluke categories mail version 8.14.4 revision 0 librfc822 538 portdir mail/librfc822 description {complete parser for RFC822 addresses} homepage http://cryp.to/librfc822/ epoch 0 platforms darwin name librfc822 maintainers nomaintainer long_description {librfc822 provides application developers with a complete parser for RFC822 addresses. Not only can you use the library to verify that RFC822 addresses are syntactically correct, you can also have an address split up into its semantic parts, what is needed when deciding where to route an address to, etc.} version 1.0 categories mail revision 0 libsieve 638 Modified: trunk/dports/PortIndex.quick =================================================================== (Binary files differ) -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Mon Jan 4 14:17:44 2010 From: ryandesign at macports.org (ryandesign at macports.org) Date: Mon, 4 Jan 2010 14:17:44 -0800 Subject: propchange - r62309 svn:log Message-ID: <20100104221744.7C5E67EFD082@mail-out3.apple.com> Author: ryandesign at macports.org (original author: breskeby at macports.org) Revision: 62309 Property Name: svn:log --- /admin/var/tmp/revprops/pre-62309-ryandesign at macports.org 2010-01-04 14:17:38.000000000 -0800 +++ /admin/var/tmp/revprops/post-62309-ryandesign at macports.org 2010-01-04 14:17:42.000000000 -0800 @@ -1 +1 @@ -version bumb to 1.9.1 +version bump to 1.9.1 From ryandesign at macports.org Mon Jan 4 14:21:15 2010 From: ryandesign at macports.org (ryandesign at macports.org) Date: Mon, 4 Jan 2010 14:21:15 -0800 Subject: propchange - r62301 svn:log Message-ID: <20100104222115.4707F84FF7B7@mail-out4.apple.com> Author: ryandesign at macports.org (original author: nox at macports.org) Revision: 62301 Property Name: svn:log --- /admin/var/tmp/revprops/pre-62301-ryandesign at macports.org 2010-01-04 14:21:12.000000000 -0800 +++ /admin/var/tmp/revprops/post-62301-ryandesign at macports.org 2010-01-04 14:21:14.000000000 -0800 @@ -1,4 +1,4 @@ Update rsync to 3.0.7 and remove no_macosx_metadata variant -The flags provided by the Mac OS X medata patches are not enabled by default, +The flags provided by the Mac OS X metadata patches are not enabled by default, so there is no need to make them a variant. From tommyd at macports.org Mon Jan 4 14:22:48 2010 From: tommyd at macports.org (tommyd at macports.org) Date: Mon, 4 Jan 2010 14:22:48 -0800 (PST) Subject: [62334] trunk/dports/games Message-ID: <20100104222248.3A77D3A51E4F@beta.macosforge.org> Revision: 62334 http://trac.macports.org/changeset/62334 Author: tommyd at macports.org Date: 2010-01-04 14:22:45 -0800 (Mon, 04 Jan 2010) Log Message: ----------- * new port: FIFE, the Flexible Isometric Free Engine Added Paths: ----------- trunk/dports/games/fife/ trunk/dports/games/fife/Portfile Added: trunk/dports/games/fife/Portfile =================================================================== --- trunk/dports/games/fife/Portfile (rev 0) +++ trunk/dports/games/fife/Portfile 2010-01-04 22:22:45 UTC (rev 62334) @@ -0,0 +1,51 @@ +# $Id$ + +PortSystem 1.0 + +name fife +version 0.2.999 +maintainers tommyd +categories python games +platforms darwin +homepage http://www.fifengine.de/ + +description The FIFE game engine +long_description FIFE stands for Flexible Isometric Free Engine and \ + is a cross platform game creation framework. + +master_sites http://thomaskeller.biz/stuff +use_bzip2 yes + +checksums md5 28e772860b3bff9f41dd07e5415f6d1e \ + sha1 88afd8578079651f98f0d3c63a7fc8892c83b645 \ + rmd160 6e796b97805b92803bb15034c3db0cc9d3cf1b36 + +depends_build port:scons + +depends_lib port:python26 \ + port:libsdl \ + port:libsdl_image \ + port:libsdl_ttf \ + port:boost \ + port:libogg \ + port:libvorbis \ + port:libguichan \ + port:swig-python + +use_configure no +use_parallel_build no + +build.cmd scons +build.target fife +build.args --prefix=${prefix} \ + --python-prefix=${prefix}/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages/ \ + --release +build.env CC=${configure.cc} CXX=${configure.cxx} \ + CPP=${configure.cpp} SWIG=${prefix}/bin/swig + +destroot.cmd scons +destroot.target install-all +destroot.args --prefix=${prefix} \ + --python-prefix=${prefix}/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages/ \ + --release +destroot.env DESTDIR=${destroot} Property changes on: trunk/dports/games/fife/Portfile ___________________________________________________________________ Added: svn:keywords + Id Added: svn:eol-style + native -------------- next part -------------- An HTML attachment was scrubbed... URL: From ram at macports.org Mon Jan 4 14:37:52 2010 From: ram at macports.org (ram at macports.org) Date: Mon, 4 Jan 2010 14:37:52 -0800 (PST) Subject: [62335] trunk/dports/python/py25-matplotlib/Portfile Message-ID: <20100104223753.AEEB93A52152@beta.macosforge.org> Revision: 62335 http://trac.macports.org/changeset/62335 Author: ram at macports.org Date: 2010-01-04 14:37:50 -0800 (Mon, 04 Jan 2010) Log Message: ----------- python/py25-matplotlib: fix livecheck Modified Paths: -------------- trunk/dports/python/py25-matplotlib/Portfile Modified: trunk/dports/python/py25-matplotlib/Portfile =================================================================== --- trunk/dports/python/py25-matplotlib/Portfile 2010-01-04 22:22:45 UTC (rev 62334) +++ trunk/dports/python/py25-matplotlib/Portfile 2010-01-04 22:37:50 UTC (rev 62335) @@ -115,4 +115,6 @@ default_variants +tkinter } -livecheck.type none +livecheck.type regex +livecheck.url http://sourceforge.net/projects/matplotlib/files/ +livecheck.regex {matplotlib-(\d+(\.\d+)*)\.tar} -------------- next part -------------- An HTML attachment was scrubbed... URL: From ram at macports.org Mon Jan 4 14:38:06 2010 From: ram at macports.org (ram at macports.org) Date: Mon, 4 Jan 2010 14:38:06 -0800 (PST) Subject: [62336] trunk/dports/python/py26-matplotlib/Portfile Message-ID: <20100104223806.9118F3A52186@beta.macosforge.org> Revision: 62336 http://trac.macports.org/changeset/62336 Author: ram at macports.org Date: 2010-01-04 14:38:05 -0800 (Mon, 04 Jan 2010) Log Message: ----------- python/py26-matplotlib: fix livecheck Modified Paths: -------------- trunk/dports/python/py26-matplotlib/Portfile Modified: trunk/dports/python/py26-matplotlib/Portfile =================================================================== --- trunk/dports/python/py26-matplotlib/Portfile 2010-01-04 22:37:50 UTC (rev 62335) +++ trunk/dports/python/py26-matplotlib/Portfile 2010-01-04 22:38:05 UTC (rev 62336) @@ -117,4 +117,6 @@ default_variants +tkinter } -livecheck.type none +livecheck.type regex +livecheck.url http://sourceforge.net/projects/matplotlib/files/ +livecheck.regex {matplotlib-(\d+(\.\d+)*)\.tar} -------------- next part -------------- An HTML attachment was scrubbed... URL: From ram at macports.org Mon Jan 4 14:38:21 2010 From: ram at macports.org (ram at macports.org) Date: Mon, 4 Jan 2010 14:38:21 -0800 (PST) Subject: [62337] trunk/dports/python/py25-matplotlib-basemap/Portfile Message-ID: <20100104223821.DF40F3A521B3@beta.macosforge.org> Revision: 62337 http://trac.macports.org/changeset/62337 Author: ram at macports.org Date: 2010-01-04 14:38:20 -0800 (Mon, 04 Jan 2010) Log Message: ----------- python/py25-matplotlib: fix livecheck Modified Paths: -------------- trunk/dports/python/py25-matplotlib-basemap/Portfile Modified: trunk/dports/python/py25-matplotlib-basemap/Portfile =================================================================== --- trunk/dports/python/py25-matplotlib-basemap/Portfile 2010-01-04 22:38:05 UTC (rev 62336) +++ trunk/dports/python/py25-matplotlib-basemap/Portfile 2010-01-04 22:38:20 UTC (rev 62337) @@ -33,4 +33,6 @@ delete ${destroot}${python.pkgd}/mpl_toolkits/__init__.pyc } -livecheck.regex {basemap-(\d+(?:\.\d+)*) released} +livecheck.type regex +livecheck.url http://sourceforge.net/projects/matplotlib/files/ +livecheck.regex {basemap-(\d+(\.\d+)*)\.tar} -------------- next part -------------- An HTML attachment was scrubbed... URL: From ram at macports.org Mon Jan 4 14:38:36 2010 From: ram at macports.org (ram at macports.org) Date: Mon, 4 Jan 2010 14:38:36 -0800 (PST) Subject: [62338] trunk/dports/python/py26-matplotlib-basemap/Portfile Message-ID: <20100104223836.B15753A521E3@beta.macosforge.org> Revision: 62338 http://trac.macports.org/changeset/62338 Author: ram at macports.org Date: 2010-01-04 14:38:35 -0800 (Mon, 04 Jan 2010) Log Message: ----------- python/py26-matplotlib-basemap: fix livecheck Modified Paths: -------------- trunk/dports/python/py26-matplotlib-basemap/Portfile Modified: trunk/dports/python/py26-matplotlib-basemap/Portfile =================================================================== --- trunk/dports/python/py26-matplotlib-basemap/Portfile 2010-01-04 22:38:20 UTC (rev 62337) +++ trunk/dports/python/py26-matplotlib-basemap/Portfile 2010-01-04 22:38:35 UTC (rev 62338) @@ -33,4 +33,6 @@ delete ${destroot}${python.pkgd}/mpl_toolkits/__init__.pyc } -livecheck.regex {basemap-(\d+(?:\.\d+)*) released} +livecheck.type regex +livecheck.url http://sourceforge.net/projects/matplotlib/files/ +livecheck.regex {basemap-(\d+(\.\d+)*)\.tar} -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Mon Jan 4 14:54:21 2010 From: portindex at macports.org (portindex at macports.org) Date: Mon, 4 Jan 2010 14:54:21 -0800 (PST) Subject: [62339] trunk/dports Message-ID: <20100104225422.B9DD53A5257C@beta.macosforge.org> Revision: 62339 http://trac.macports.org/changeset/62339 Author: portindex at macports.org Date: 2010-01-04 14:54:20 -0800 (Mon, 04 Jan 2010) Log Message: ----------- Total number of ports parsed: 6471 Ports successfully parsed: 6471 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex trunk/dports/PortIndex.quick Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-04 22:38:35 UTC (rev 62338) +++ trunk/dports/PortIndex 2010-01-04 22:54:20 UTC (rev 62339) @@ -2530,6 +2530,8 @@ variants universal portdir games/euchre description {euchre, a common card game} homepage http://www.cs.umd.edu/~bender/ epoch 0 platforms darwin name euchre depends_lib {port:gtk1 port:gettext port:glib1} long_description {Implementation of the card game euchre in C++ with GUI in GTK.} maintainers gmail.com:abender categories {games x11} version 0.7c revision 0 fbg 549 variants universal portdir games/fbg description {Puzzle game similar to Tetris but with improved graphics.} homepage http://fbg.sourceforge.net/ epoch 0 platforms darwin name fbg depends_lib {path:lib/pkgconfig/sdl.pc:libsdl port:physfs} long_description {Falling Block Game is a puzzle game that is similar to the Hasbro classic, Tetris. Many such games have been released for a variety of platforms, but most have passable graphics or poor gameplay/piece control.} maintainers {jmpp openmaintainer} categories {games aqua} version 0.9 revision 0 +fife 480 +depends_build port:scons portdir games/fife description {The FIFE game engine} homepage http://www.fifengine.de/ epoch 0 platforms darwin depends_lib {port:python26 port:libsdl port:libsdl_image port:libsdl_ttf port:boost port:libogg port:libvorbis port:libguichan port:swig-python} name fife maintainers tommyd long_description {FIFE stands for Flexible Isometric Free Engine and is a cross platform game creation framework.} categories {python games} version 0.2.999 revision 0 fizmo 1078 portdir games/fizmo description {Console-based Z-Machine interpreter for Infocom games.} homepage http://spellbreaker.org/~chrender/fizmo/ epoch 0 platforms {darwin linux} name fizmo depends_lib {port:ncursesw port:libsdl_sound port:libsndfile port:libxml2} maintainers spellbreaker.org:Christoph.Ender long_description {Fizmo is a Z-Machine interpreter (Fizmo Interprets Z-Machine Opcodes) which allows you to run Infocom- and most other Z-Machine based games -- except version 6 -- on POSIX-like systems which provide a ncursesw (note the 'w') library. It has been successfully compiled on Debian based Linux, Mac OS X (with MacPorts providing ncursesw) and Windows (using Cygwin and a self-compiled ncursesw library). This is a console-style application, meaning that it runs in textmode and does not provide any GUI whatsoever. For more information about Infocom and interactive fiction, see the 'New to IF' section at http://www.ifarchive.org. Games are available from http://www.ifarchive.org/indexes/if-archiveXgamesXzcode.html} categories games version 0.6.5 revision 0 flobopuyo 350 Modified: trunk/dports/PortIndex.quick =================================================================== (Binary files differ) -------------- next part -------------- An HTML attachment was scrubbed... URL: From jmr at macports.org Mon Jan 4 15:11:09 2010 From: jmr at macports.org (jmr at macports.org) Date: Mon, 4 Jan 2010 15:11:09 -0800 (PST) Subject: [62340] trunk/base Message-ID: <20100104231109.959763A52BD5@beta.macosforge.org> Revision: 62340 http://trac.macports.org/changeset/62340 Author: jmr at macports.org Date: 2010-01-04 15:11:07 -0800 (Mon, 04 Jan 2010) Log Message: ----------- change SC_PATH_TCLCONFIG and SC_PUBLIC_TCL_HEADERS to look in /usr before /usr/local, and reflect the fact that we can use Tcl 8.5 but not 8.3 Modified Paths: -------------- trunk/base/configure trunk/base/m4/tcl.m4 Modified: trunk/base/configure =================================================================== --- trunk/base/configure 2010-01-04 22:54:20 UTC (rev 62339) +++ trunk/base/configure 2010-01-04 23:11:07 UTC (rev 62340) @@ -8614,15 +8614,14 @@ # check in a few common install locations if test x"${ac_cv_c_tclconfig}" = x ; then for i in `ls -d ${libdir} 2>/dev/null` \ + `ls -d /usr/lib 2>/dev/null` \ `ls -d /usr/local/lib 2>/dev/null` \ `ls -d /usr/contrib/lib 2>/dev/null` \ - `ls -d /usr/lib 2>/dev/null` \ `ls -d /usr/pkg/lib 2>/dev/null` \ - `ls -d /System/Library/Tcl/8.3 2>/dev/null` \ + `ls -d /usr/local/lib/tcl8.5 2>/dev/null` \ `ls -d /usr/local/lib/tcl8.4 2>/dev/null` \ - `ls -d /usr/local/lib/tcl8.3 2>/dev/null` \ + `ls -d /usr/lib/tcl8.5 2>/dev/null` \ `ls -d /usr/lib/tcl8.4 2>/dev/null` \ - `ls -d /usr/lib/tcl8.3 2>/dev/null` \ ; do if test -f "$i/tclConfig.sh" ; then ac_cv_c_tclconfig=`(cd $i; pwd)` @@ -8745,7 +8744,7 @@ # check some other possible local system locations. for i in \ - /usr/local/include /usr/include /usr/local/include/tcl${TCL_VERSION} /usr/include/tcl${TCL_VERSION}; do + /usr/include /usr/local/include /usr/local/include/tcl${TCL_VERSION} /usr/include/tcl${TCL_VERSION}; do if test -f "$i/tcl.h" ; then ac_cv_c_tclh=$i break Modified: trunk/base/m4/tcl.m4 =================================================================== --- trunk/base/m4/tcl.m4 2010-01-04 22:54:20 UTC (rev 62339) +++ trunk/base/m4/tcl.m4 2010-01-04 23:11:07 UTC (rev 62340) @@ -106,15 +106,14 @@ # check in a few common install locations if test x"${ac_cv_c_tclconfig}" = x ; then for i in `ls -d ${libdir} 2>/dev/null` \ + `ls -d /usr/lib 2>/dev/null` \ `ls -d /usr/local/lib 2>/dev/null` \ `ls -d /usr/contrib/lib 2>/dev/null` \ - `ls -d /usr/lib 2>/dev/null` \ `ls -d /usr/pkg/lib 2>/dev/null` \ - `ls -d /System/Library/Tcl/8.3 2>/dev/null` \ + `ls -d /usr/local/lib/tcl8.5 2>/dev/null` \ `ls -d /usr/local/lib/tcl8.4 2>/dev/null` \ - `ls -d /usr/local/lib/tcl8.3 2>/dev/null` \ + `ls -d /usr/lib/tcl8.5 2>/dev/null` \ `ls -d /usr/lib/tcl8.4 2>/dev/null` \ - `ls -d /usr/lib/tcl8.3 2>/dev/null` \ ; do if test -f "$i/tclConfig.sh" ; then ac_cv_c_tclconfig=`(cd $i; pwd)` @@ -2545,7 +2544,7 @@ # check some other possible local system locations. for i in \ - /usr/local/include /usr/include /usr/local/include/tcl${TCL_VERSION} /usr/include/tcl${TCL_VERSION}; do + /usr/include /usr/local/include /usr/local/include/tcl${TCL_VERSION} /usr/include/tcl${TCL_VERSION}; do if test -f "$i/tcl.h" ; then ac_cv_c_tclh=$i break -------------- next part -------------- An HTML attachment was scrubbed... URL: From ram at macports.org Mon Jan 4 15:20:17 2010 From: ram at macports.org (ram at macports.org) Date: Mon, 4 Jan 2010 15:20:17 -0800 (PST) Subject: [62341] trunk/dports/python/py25-matplotlib Message-ID: <20100104232018.177F43A52DC8@beta.macosforge.org> Revision: 62341 http://trac.macports.org/changeset/62341 Author: ram at macports.org Date: 2010-01-04 15:20:16 -0800 (Mon, 04 Jan 2010) Log Message: ----------- python/py25-matplotlib: update to 0.99.1.2 Modified Paths: -------------- trunk/dports/python/py25-matplotlib/Portfile trunk/dports/python/py25-matplotlib/files/patch-setup.cfg.diff trunk/dports/python/py25-matplotlib/files/patch-setupext.py.diff Modified: trunk/dports/python/py25-matplotlib/Portfile =================================================================== --- trunk/dports/python/py25-matplotlib/Portfile 2010-01-04 23:11:07 UTC (rev 62340) +++ trunk/dports/python/py25-matplotlib/Portfile 2010-01-04 23:20:16 UTC (rev 62341) @@ -5,7 +5,7 @@ categories-append graphics math name py25-matplotlib -version 0.99.1.1 +version 0.99.1.2 maintainers ram openmaintainer platforms darwin @@ -20,10 +20,11 @@ homepage http://matplotlib.sourceforge.net master_sites sourceforge:matplotlib distname matplotlib-${version} +worksrcdir matplotlib-0.99.1.1 -checksums md5 bd0894dd924eb5bec84c42d26041a544 \ - sha1 57b5f1e3f0c8866af99f72fca06b4e529acba31d \ - rmd160 2bd025944eab18d41ddf9f521c00a1f065346738 +checksums md5 952e2c992e4a762b8538171f51c9140a \ + sha1 c3f9053a8522e2541d93ee55e8b447165708ac15 \ + rmd160 11daee415102dff944d9c45de22c48c83e76dde7 depends_lib-append port:freetype \ port:libpng \ Modified: trunk/dports/python/py25-matplotlib/files/patch-setup.cfg.diff =================================================================== --- trunk/dports/python/py25-matplotlib/files/patch-setup.cfg.diff 2010-01-04 23:11:07 UTC (rev 62340) +++ trunk/dports/python/py25-matplotlib/files/patch-setup.cfg.diff 2010-01-04 23:20:16 UTC (rev 62341) @@ -1,88 +1,12 @@ ---- setup.cfg.orig 2009-09-24 04:41:39.000000000 +0200 -+++ setup.cfg 2009-09-24 10:27:20.000000000 +0200 -@@ -1,79 +1,9 @@ --# Rename this file to setup.cfg to modify matplotlib's --# build options. -- --[egg_info] --tag_svn_revision = 1 -- --[status] --# To suppress display of the dependencies and their versions --# at the top of the build log, uncomment the following line: --#suppress = True --# --# Uncomment to insert lots of diagnostic prints in extension code --#verbose = True -- --[provide_packages] --# By default, matplotlib checks for a few dependencies and --# installs them if missing. This feature can be turned off --# by uncommenting the following lines. Acceptible values are: --# True: install, overwrite an existing installation --# False: do not install --# auto: install only if the package is unavailable. This --# is the default behavior --# --## Date/timezone support: --pytz = True --dateutil = True -- -- - [gui_support] --# Matplotlib supports multiple GUI toolkits, including Cocoa, --# GTK, Fltk, MacOSX, Qt, Qt4, Tk, and WX. Support for many of --# these toolkits requires AGG, the Anti-Grain Geometry library, --# which is provided by matplotlib and built by default. --# --# Some backends are written in pure Python, and others require --# extension code to be compiled. By default, matplotlib checks --# for these GUI toolkits during installation and, if present, --# compiles the required extensions to support the toolkit. GTK --# support requires the GTK runtime environment and PyGTK. Wx --# support requires wxWidgets and wxPython. Tk support requires --# Tk and Tkinter. The other GUI toolkits do not require any --# extension code, and can be used as long as the libraries are --# installed on your system. --# --# You can uncomment any the following lines if you know you do --# not want to use the GUI toolkit. Acceptible values are: --# True: build the extension. Exits with a warning if the --# required dependencies are not available --# False: do not build the extension --# auto: build if the required dependencies are available, --# otherwise skip silently. This is the default --# behavior --# --#gtk = False --#gtkagg = False --tkagg = True --wxagg = True --macosx = True +--- setup.cfg 1970-01-01 01:00:00.000000000 +0100 ++++ setup.cfg 2010-01-04 22:52:57.000000000 +0000 +@@ -0,0 +1,9 @@ ++[gui_support] +gtk=False +gtkagg=False +tkagg=False +wxagg=False +macosx=True - - [rc_options] --# User-configurable options --# --# Default backend, one of: Agg, Cairo, CocoaAgg, GTK, GTKAgg, GTKCairo, --# FltkAgg, MacOSX, Pdf, Ps, QtAgg, Qt4Agg, SVG, TkAgg, WX, WXAgg. --# --# The Agg, Ps, Pdf and SVG backends do not require external --# dependencies. Do not choose GTK, GTKAgg, GTKCairo, MacOSX, TkAgg or WXAgg --# if you have disabled the relevent extension modules. Agg will be used --# by default. --# --backend = TkAgg --# --# The numerix module was historically used to provide --# compatibility between the Numeric, numarray, and NumPy array --# packages. Now that NumPy has emerge as the universal array --# package for python, numerix is not really necessary and is --# maintained to provide backward compatibility. Do not change --# this unless you have a compelling reason to do so. --#numerix = numpy ++ ++[rc_options] +backend=Agg Modified: trunk/dports/python/py25-matplotlib/files/patch-setupext.py.diff =================================================================== --- trunk/dports/python/py25-matplotlib/files/patch-setupext.py.diff 2010-01-04 23:11:07 UTC (rev 62340) +++ trunk/dports/python/py25-matplotlib/files/patch-setupext.py.diff 2010-01-04 23:20:16 UTC (rev 62341) @@ -1,5 +1,5 @@ ---- setupext.py 2009-08-23 00:27:32.000000000 -0500 -+++ setupext.py 2009-09-23 06:46:31.000000000 -0500 +--- setupext.py 2009-08-23 06:27:32.000000000 +0100 ++++ setupext.py 2010-01-04 22:59:27.000000000 +0000 @@ -50,15 +50,7 @@ 'linux2' : ['/usr/local', '/usr'], 'linux' : ['/usr/local', '/usr',], -------------- next part -------------- An HTML attachment was scrubbed... URL: From ram at macports.org Mon Jan 4 15:20:35 2010 From: ram at macports.org (ram at macports.org) Date: Mon, 4 Jan 2010 15:20:35 -0800 (PST) Subject: [62342] trunk/dports/python/py26-matplotlib Message-ID: <20100104232036.076F93A52E0D@beta.macosforge.org> Revision: 62342 http://trac.macports.org/changeset/62342 Author: ram at macports.org Date: 2010-01-04 15:20:34 -0800 (Mon, 04 Jan 2010) Log Message: ----------- python/py26-matplotlib: update to 0.99.1.2 Modified Paths: -------------- trunk/dports/python/py26-matplotlib/Portfile trunk/dports/python/py26-matplotlib/files/patch-setup.cfg.diff trunk/dports/python/py26-matplotlib/files/patch-setupext.py.diff Modified: trunk/dports/python/py26-matplotlib/Portfile =================================================================== --- trunk/dports/python/py26-matplotlib/Portfile 2010-01-04 23:20:16 UTC (rev 62341) +++ trunk/dports/python/py26-matplotlib/Portfile 2010-01-04 23:20:34 UTC (rev 62342) @@ -5,8 +5,7 @@ categories-append graphics math name py26-matplotlib -version 0.99.1.1 -revision 1 +version 0.99.1.2 maintainers ram openmaintainer platforms darwin @@ -21,10 +20,11 @@ homepage http://matplotlib.sourceforge.net master_sites sourceforge:matplotlib distname matplotlib-${version} +worksrcdir matplotlib-0.99.1.1 -checksums md5 bd0894dd924eb5bec84c42d26041a544 \ - sha1 57b5f1e3f0c8866af99f72fca06b4e529acba31d \ - rmd160 2bd025944eab18d41ddf9f521c00a1f065346738 +checksums md5 952e2c992e4a762b8538171f51c9140a \ + sha1 c3f9053a8522e2541d93ee55e8b447165708ac15 \ + rmd160 11daee415102dff944d9c45de22c48c83e76dde7 depends_lib-append port:freetype \ port:libpng \ Modified: trunk/dports/python/py26-matplotlib/files/patch-setup.cfg.diff =================================================================== --- trunk/dports/python/py26-matplotlib/files/patch-setup.cfg.diff 2010-01-04 23:20:16 UTC (rev 62341) +++ trunk/dports/python/py26-matplotlib/files/patch-setup.cfg.diff 2010-01-04 23:20:34 UTC (rev 62342) @@ -1,88 +1,12 @@ ---- setup.cfg.orig 2009-09-24 04:41:39.000000000 +0200 -+++ setup.cfg 2009-09-24 10:27:20.000000000 +0200 -@@ -1,79 +1,9 @@ --# Rename this file to setup.cfg to modify matplotlib's --# build options. -- --[egg_info] --tag_svn_revision = 1 -- --[status] --# To suppress display of the dependencies and their versions --# at the top of the build log, uncomment the following line: --#suppress = True --# --# Uncomment to insert lots of diagnostic prints in extension code --#verbose = True -- --[provide_packages] --# By default, matplotlib checks for a few dependencies and --# installs them if missing. This feature can be turned off --# by uncommenting the following lines. Acceptible values are: --# True: install, overwrite an existing installation --# False: do not install --# auto: install only if the package is unavailable. This --# is the default behavior --# --## Date/timezone support: --pytz = True --dateutil = True -- -- - [gui_support] --# Matplotlib supports multiple GUI toolkits, including Cocoa, --# GTK, Fltk, MacOSX, Qt, Qt4, Tk, and WX. Support for many of --# these toolkits requires AGG, the Anti-Grain Geometry library, --# which is provided by matplotlib and built by default. --# --# Some backends are written in pure Python, and others require --# extension code to be compiled. By default, matplotlib checks --# for these GUI toolkits during installation and, if present, --# compiles the required extensions to support the toolkit. GTK --# support requires the GTK runtime environment and PyGTK. Wx --# support requires wxWidgets and wxPython. Tk support requires --# Tk and Tkinter. The other GUI toolkits do not require any --# extension code, and can be used as long as the libraries are --# installed on your system. --# --# You can uncomment any the following lines if you know you do --# not want to use the GUI toolkit. Acceptible values are: --# True: build the extension. Exits with a warning if the --# required dependencies are not available --# False: do not build the extension --# auto: build if the required dependencies are available, --# otherwise skip silently. This is the default --# behavior --# --#gtk = False --#gtkagg = False --tkagg = True --wxagg = True --macosx = True +--- setup.cfg 1970-01-01 01:00:00.000000000 +0100 ++++ setup.cfg 2010-01-04 22:52:57.000000000 +0000 +@@ -0,0 +1,9 @@ ++[gui_support] +gtk=False +gtkagg=False +tkagg=False +wxagg=False +macosx=True - - [rc_options] --# User-configurable options --# --# Default backend, one of: Agg, Cairo, CocoaAgg, GTK, GTKAgg, GTKCairo, --# FltkAgg, MacOSX, Pdf, Ps, QtAgg, Qt4Agg, SVG, TkAgg, WX, WXAgg. --# --# The Agg, Ps, Pdf and SVG backends do not require external --# dependencies. Do not choose GTK, GTKAgg, GTKCairo, MacOSX, TkAgg or WXAgg --# if you have disabled the relevent extension modules. Agg will be used --# by default. --# --backend = TkAgg --# --# The numerix module was historically used to provide --# compatibility between the Numeric, numarray, and NumPy array --# packages. Now that NumPy has emerge as the universal array --# package for python, numerix is not really necessary and is --# maintained to provide backward compatibility. Do not change --# this unless you have a compelling reason to do so. --#numerix = numpy ++ ++[rc_options] +backend=Agg Modified: trunk/dports/python/py26-matplotlib/files/patch-setupext.py.diff =================================================================== --- trunk/dports/python/py26-matplotlib/files/patch-setupext.py.diff 2010-01-04 23:20:16 UTC (rev 62341) +++ trunk/dports/python/py26-matplotlib/files/patch-setupext.py.diff 2010-01-04 23:20:34 UTC (rev 62342) @@ -1,5 +1,5 @@ ---- setupext.py 2009-08-23 00:27:32.000000000 -0500 -+++ setupext.py 2009-09-23 06:46:31.000000000 -0500 +--- setupext.py 2009-08-23 06:27:32.000000000 +0100 ++++ setupext.py 2010-01-04 22:59:27.000000000 +0000 @@ -50,15 +50,7 @@ 'linux2' : ['/usr/local', '/usr'], 'linux' : ['/usr/local', '/usr',], -------------- next part -------------- An HTML attachment was scrubbed... URL: From ram at macports.org Mon Jan 4 15:20:50 2010 From: ram at macports.org (ram at macports.org) Date: Mon, 4 Jan 2010 15:20:50 -0800 (PST) Subject: [62343] trunk/dports/python/py26-httplib2/Portfile Message-ID: <20100104232050.F0E703A52E41@beta.macosforge.org> Revision: 62343 http://trac.macports.org/changeset/62343 Author: ram at macports.org Date: 2010-01-04 15:20:49 -0800 (Mon, 04 Jan 2010) Log Message: ----------- python/py26-httplib2: update to 2-0.6.0, #23101 Modified Paths: -------------- trunk/dports/python/py26-httplib2/Portfile Modified: trunk/dports/python/py26-httplib2/Portfile =================================================================== --- trunk/dports/python/py26-httplib2/Portfile 2010-01-04 23:20:34 UTC (rev 62342) +++ trunk/dports/python/py26-httplib2/Portfile 2010-01-04 23:20:49 UTC (rev 62343) @@ -4,7 +4,7 @@ PortGroup python26 1.0 name py26-httplib2 -version 2-0.5.0 +version 2-0.6.0 categories python devel net platforms darwin maintainers ram openmaintainer @@ -13,7 +13,9 @@ many features left out of other HTTP libraries. homepage http://code.google.com/p/httplib2/ master_sites http://httplib2.googlecode.com/files/ -checksums md5 c768ed1826cec3ddeefa7588048075f3 +checksums md5 04f73e296c02c9cd7151db33a2671b7c \ + sha1 995344b2704826cc0d61a266e995b328d92445a5 \ + rmd160 bfba7a586bd3b2234c8ccbf15f2cc5640bd4f664 distname httplib${version} livecheck.type regex -------------- next part -------------- An HTML attachment was scrubbed... URL: From ram at macports.org Mon Jan 4 15:21:05 2010 From: ram at macports.org (ram at macports.org) Date: Mon, 4 Jan 2010 15:21:05 -0800 (PST) Subject: [62344] trunk/dports/python/py-httplib2/Portfile Message-ID: <20100104232105.5F5453A52E78@beta.macosforge.org> Revision: 62344 http://trac.macports.org/changeset/62344 Author: ram at macports.org Date: 2010-01-04 15:21:04 -0800 (Mon, 04 Jan 2010) Log Message: ----------- python/py-httplib2: update to 2-0.6.0, #23101 Modified Paths: -------------- trunk/dports/python/py-httplib2/Portfile Modified: trunk/dports/python/py-httplib2/Portfile =================================================================== --- trunk/dports/python/py-httplib2/Portfile 2010-01-04 23:20:49 UTC (rev 62343) +++ trunk/dports/python/py-httplib2/Portfile 2010-01-04 23:21:04 UTC (rev 62344) @@ -4,7 +4,7 @@ PortGroup python24 1.0 name py-httplib2 -version 2-0.5.0 +version 2-0.6.0 categories python devel net platforms darwin maintainers nomaintainer @@ -13,6 +13,8 @@ many features left out of other HTTP libraries. homepage http://code.google.com/p/httplib2/ master_sites http://httplib2.googlecode.com/files/ -checksums md5 c768ed1826cec3ddeefa7588048075f3 +checksums md5 04f73e296c02c9cd7151db33a2671b7c \ + sha1 995344b2704826cc0d61a266e995b328d92445a5 \ + rmd160 bfba7a586bd3b2234c8ccbf15f2cc5640bd4f664 distname httplib${version} -------------- next part -------------- An HTML attachment was scrubbed... URL: From ram at macports.org Mon Jan 4 15:21:19 2010 From: ram at macports.org (ram at macports.org) Date: Mon, 4 Jan 2010 15:21:19 -0800 (PST) Subject: [62345] trunk/dports/python/py26-tz/Portfile Message-ID: <20100104232119.ED06F3A52EA6@beta.macosforge.org> Revision: 62345 http://trac.macports.org/changeset/62345 Author: ram at macports.org Date: 2010-01-04 15:21:18 -0800 (Mon, 04 Jan 2010) Log Message: ----------- python/py26-tz: update to 2009u Modified Paths: -------------- trunk/dports/python/py26-tz/Portfile Modified: trunk/dports/python/py26-tz/Portfile =================================================================== --- trunk/dports/python/py26-tz/Portfile 2010-01-04 23:21:04 UTC (rev 62344) +++ trunk/dports/python/py26-tz/Portfile 2010-01-04 23:21:18 UTC (rev 62345) @@ -6,7 +6,7 @@ name py26-tz set my_name pytz -version 2009r +version 2009u categories python devel platforms darwin maintainers ram openmaintainer @@ -22,9 +22,9 @@ distname ${my_name}-${version} use_bzip2 yes -checksums md5 2a682efbe45cedd01a17373f7cb82140 \ - sha1 4db5827bad56ca95f937ad59993a14b8e9139f77 \ - rmd160 a6a396d1ffdb321ad5eeb628e1a90d508370f799 +checksums md5 fe93ac9b8ad10e43dc7342e78f34c1d9 \ + sha1 311e8843209c88fad67e168125e36f9f1234bf65 \ + rmd160 de9e4be6297c1b34dc8c97aae81933b6a2f51a82 post-destroot { set docdir ${prefix}/share/doc/${name}-${version} -------------- next part -------------- An HTML attachment was scrubbed... URL: From ram at macports.org Mon Jan 4 15:21:33 2010 From: ram at macports.org (ram at macports.org) Date: Mon, 4 Jan 2010 15:21:33 -0800 (PST) Subject: [62346] trunk/dports/python/py25-tz/Portfile Message-ID: <20100104232134.038033A52ED4@beta.macosforge.org> Revision: 62346 http://trac.macports.org/changeset/62346 Author: ram at macports.org Date: 2010-01-04 15:21:32 -0800 (Mon, 04 Jan 2010) Log Message: ----------- python/py25-tz: update to 2009u Modified Paths: -------------- trunk/dports/python/py25-tz/Portfile Modified: trunk/dports/python/py25-tz/Portfile =================================================================== --- trunk/dports/python/py25-tz/Portfile 2010-01-04 23:21:18 UTC (rev 62345) +++ trunk/dports/python/py25-tz/Portfile 2010-01-04 23:21:32 UTC (rev 62346) @@ -6,7 +6,7 @@ name py25-tz set my_name pytz -version 2009r +version 2009u categories python devel platforms darwin maintainers nox openmaintainer @@ -22,9 +22,9 @@ distname ${my_name}-${version} use_bzip2 yes -checksums md5 2a682efbe45cedd01a17373f7cb82140 \ - sha1 4db5827bad56ca95f937ad59993a14b8e9139f77 \ - rmd160 a6a396d1ffdb321ad5eeb628e1a90d508370f799 +checksums md5 fe93ac9b8ad10e43dc7342e78f34c1d9 \ + sha1 311e8843209c88fad67e168125e36f9f1234bf65 \ + rmd160 de9e4be6297c1b34dc8c97aae81933b6a2f51a82 post-destroot { set docdir ${prefix}/share/doc/${name}-${version} -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Mon Jan 4 15:54:29 2010 From: portindex at macports.org (portindex at macports.org) Date: Mon, 4 Jan 2010 15:54:29 -0800 (PST) Subject: [62347] trunk/dports/PortIndex Message-ID: <20100104235430.BCE0A3A53CF5@beta.macosforge.org> Revision: 62347 http://trac.macports.org/changeset/62347 Author: portindex at macports.org Date: 2010-01-04 15:54:28 -0800 (Mon, 04 Jan 2010) Log Message: ----------- Total number of ports parsed: 6471 Ports successfully parsed: 6471 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-04 23:21:32 UTC (rev 62346) +++ trunk/dports/PortIndex 2010-01-04 23:54:28 UTC (rev 62347) @@ -8099,7 +8099,7 @@ py-htmltemplate 463 portdir python/py-htmltemplate description {HTML template engine for python} homepage http://freespace.virgin.net/hamish.sanderson/htmltemplate.html epoch 0 platforms darwin depends_lib port:python24 name py-htmltemplate maintainers nomaintainer long_description {HTMLTemplate converts HTML/XHTML templates into simple Python object models that can be manipulated through callback functions in your scripts.} version 1.5.0 categories {python textproc} revision 0 py-httplib2 398 -portdir python/py-httplib2 description {A comprehensive HTTP client library in Python} homepage http://code.google.com/p/httplib2/ epoch 0 platforms darwin depends_lib port:python24 name py-httplib2 maintainers nomaintainer long_description {A comprehensive HTTP client library that supports many features left out of other HTTP libraries.} version 2-0.5.0 categories {python devel net} revision 0 +portdir python/py-httplib2 description {A comprehensive HTTP client library in Python} homepage http://code.google.com/p/httplib2/ epoch 0 platforms darwin depends_lib port:python24 name py-httplib2 maintainers nomaintainer long_description {A comprehensive HTTP client library that supports many features left out of other HTTP libraries.} version 2-0.6.0 categories {python devel net} revision 0 py-hyperestraier 364 portdir python/py-hyperestraier description {a Python module for Hyper Estraier} homepage http://hyperestraier.sourceforge.net/ epoch 0 platforms darwin depends_lib {port:python24 port:hyperestraier} name py-hyperestraier maintainers gmail.com:rsky0711 long_description {{a Python module for Hyper Estraier}} version 0.0.15 categories {python textproc} revision 0 py-icalendar 635 @@ -8873,7 +8873,7 @@ py25-markdown 383 portdir python/py25-markdown description {python implementation of markdown} homepage http://www.freewisdom.org/projects/python-markdown/ epoch 0 platforms darwin depends_lib port:python25 name py25-markdown maintainers {openmaintainer erickt} long_description {{python implementation of markdown}} depends_extract bin:unzip:unzip version 1.7 categories {python textproc} revision 0 py25-matplotlib 811 -variants {cairo gtk2 tkinter wxpython qt4 latex ghostscript} portdir python/py25-matplotlib description {matlab-like syntax for creating plots in python} homepage http://matplotlib.sourceforge.net epoch 0 platforms darwin depends_lib {port:python25 port:freetype port:libpng port:py25-dateutil port:py25-tz port:py25-numpy port:py25-configobj port:py25-pyobjc-cocoa} name py25-matplotlib long_description {Matplotlib is a pure python plotting library with the goal of making publication quality plots using a syntax familiar to matlab users. The library uses numpy for handling large data sets and supports a variety of output backends. This port provides variants for the different GUIs (gtk2, tkinter, wxpython).} maintainers {ram openmaintainer} version 0.99.1.1 categories {python graphics math} revision 0 +variants {cairo gtk2 tkinter wxpython qt4 latex ghostscript} portdir python/py25-matplotlib description {matlab-like syntax for creating plots in python} homepage http://matplotlib.sourceforge.net epoch 0 platforms darwin depends_lib {port:python25 port:freetype port:libpng port:py25-dateutil port:py25-tz port:py25-numpy port:py25-configobj port:py25-pyobjc-cocoa} name py25-matplotlib long_description {Matplotlib is a pure python plotting library with the goal of making publication quality plots using a syntax familiar to matlab users. The library uses numpy for handling large data sets and supports a variety of output backends. This port provides variants for the different GUIs (gtk2, tkinter, wxpython).} maintainers {ram openmaintainer} version 0.99.1.2 categories {python graphics math} revision 0 py25-matplotlib-basemap 505 portdir python/py25-matplotlib-basemap description {matplotlib toolkit for plotting data on map projections} homepage http://matplotlib.sourceforge.net epoch 0 platforms darwin depends_lib {port:python25 port:py25-matplotlib port:geos port:py25-httplib2 port:py25-dap} name py25-matplotlib-basemap maintainers {ram openmaintainer} long_description {Matplotlib basemap is a matplotlib toolkit python library for plotting data on map projections} version 0.99.4 categories {python graphics math} revision 0 py25-mayavi 645 @@ -9157,7 +9157,7 @@ py25-twitter 359 portdir python/py25-twitter description {Interface for the Twitter API.} homepage http://code.google.com/p/python-twitter/ epoch 0 platforms darwin depends_lib port:py25-simplejson name py25-twitter maintainers nomaintainer long_description {This library provides a pure python interface for the Twitter API.} version 0.6 categories {python devel} revision 0 py25-tz 425 -portdir python/py25-tz description {World Timezone Definitions for Python} homepage http://pytz.sourceforge.net/ epoch 0 platforms darwin depends_lib port:python25 name py25-tz maintainers {nox openmaintainer} long_description {pytz brings the Olson tz database into Python. This library allows accurate and cross platform timezone calculations using Python 2.3 or higher.} version 2009r categories {python devel} revision 0 +portdir python/py25-tz description {World Timezone Definitions for Python} homepage http://pytz.sourceforge.net/ epoch 0 platforms darwin depends_lib port:python25 name py25-tz maintainers {nox openmaintainer} long_description {pytz brings the Olson tz database into Python. This library allows accurate and cross platform timezone calculations using Python 2.3 or higher.} version 2009u categories {python devel} revision 0 py25-urlgrabber 502 portdir python/py25-urlgrabber description {High-level cross-protocol url-grabber} homepage http://linux.duke.edu/projects/urlgrabber/ epoch 0 platforms darwin depends_lib port:python25 name py25-urlgrabber maintainers {afb openmaintainer} long_description {python-urlgrabber is a high-level cross-protocol url-grabber for python supporting HTTP, FTP and file locations. Features include keepalive, byte ranges, throttling, authentication, proxies and more.} version 3.1.0 categories python revision 0 py25-utidylib 419 @@ -9375,7 +9375,7 @@ py26-htmltemplate 467 portdir python/py26-htmltemplate description {HTML template engine for python} homepage http://freespace.virgin.net/hamish.sanderson/htmltemplate.html epoch 0 platforms darwin depends_lib port:python26 name py26-htmltemplate maintainers nomaintainer long_description {HTMLTemplate converts HTML/XHTML templates into simple Python object models that can be manipulated through callback functions in your scripts.} version 1.5.0 categories {python textproc} revision 0 py26-httplib2 410 -portdir python/py26-httplib2 description {A comprehensive HTTP client library in Python} homepage http://code.google.com/p/httplib2/ epoch 0 platforms darwin depends_lib port:python26 name py26-httplib2 maintainers {ram openmaintainer} long_description {A comprehensive HTTP client library that supports many features left out of other HTTP libraries.} version 2-0.5.0 categories {python devel net} revision 0 +portdir python/py26-httplib2 description {A comprehensive HTTP client library in Python} homepage http://code.google.com/p/httplib2/ epoch 0 platforms darwin depends_lib port:python26 name py26-httplib2 maintainers {ram openmaintainer} long_description {A comprehensive HTTP client library that supports many features left out of other HTTP libraries.} version 2-0.6.0 categories {python devel net} revision 0 py26-hypy 430 portdir python/py26-hypy description {Fulltext search interface for Python applications} homepage http://goonmill.org/hypy/ epoch 0 platforms darwin depends_lib {port:python26 port:hyperestraier} name py26-hypy maintainers nomaintainer long_description {Hypy is a fulltext search interface for Python applications. Use it to index and search your documents from Python code.} version 0.8.3 categories {python textproc} revision 0 py26-icalendar 639 @@ -9431,7 +9431,7 @@ py26-markdown 354 portdir python/py26-markdown description {Python implementation of Markdown} homepage http://www.freewisdom.org/projects/python-markdown/ epoch 0 platforms darwin depends_lib port:python26 name py26-markdown maintainers {openmaintainer arthurk} long_description {{Python implementation of Markdown}} version 2.0.3 categories {python textproc} revision 0 py26-matplotlib 811 -variants {cairo gtk2 tkinter wxpython qt4 latex ghostscript} portdir python/py26-matplotlib description {matlab-like syntax for creating plots in python} homepage http://matplotlib.sourceforge.net epoch 0 platforms darwin depends_lib {port:python26 port:freetype port:libpng port:py26-dateutil port:py26-tz port:py26-numpy port:py26-configobj port:py26-pyobjc-cocoa} name py26-matplotlib long_description {Matplotlib is a pure python plotting library with the goal of making publication quality plots using a syntax familiar to matlab users. The library uses numpy for handling large data sets and supports a variety of output backends. This port provides variants for the different GUIs (gtk2, tkinter, wxpython).} maintainers {ram openmaintainer} version 0.99.1.1 categories {python graphics math} revision 1 +variants {cairo gtk2 tkinter wxpython qt4 latex ghostscript} portdir python/py26-matplotlib description {matlab-like syntax for creating plots in python} homepage http://matplotlib.sourceforge.net epoch 0 platforms darwin depends_lib {port:python26 port:freetype port:libpng port:py26-dateutil port:py26-tz port:py26-numpy port:py26-configobj port:py26-pyobjc-cocoa} name py26-matplotlib long_description {Matplotlib is a pure python plotting library with the goal of making publication quality plots using a syntax familiar to matlab users. The library uses numpy for handling large data sets and supports a variety of output backends. This port provides variants for the different GUIs (gtk2, tkinter, wxpython).} maintainers {ram openmaintainer} version 0.99.1.2 categories {python graphics math} revision 0 py26-matplotlib-basemap 505 portdir python/py26-matplotlib-basemap description {matplotlib toolkit for plotting data on map projections} homepage http://matplotlib.sourceforge.net epoch 0 platforms darwin depends_lib {port:python26 port:py26-matplotlib port:geos port:py26-httplib2 port:py26-dap} name py26-matplotlib-basemap maintainers {ram openmaintainer} long_description {Matplotlib basemap is a matplotlib toolkit python library for plotting data on map projections} version 0.99.4 categories {python graphics math} revision 0 py26-mayavi 623 @@ -9709,7 +9709,7 @@ py26-twitter 362 portdir python/py26-twitter description {A python wrapper around the Twitter API} homepage http://code.google.com/p/python-twitter epoch 0 platforms darwin depends_lib {port:py26-setuptools port:py26-simplejson} name py26-twitter maintainers gmail.com:aeppert long_description {{A python wrapper around the Twitter API}} version 0.6 categories python revision 0 py26-tz 425 -portdir python/py26-tz description {World Timezone Definitions for Python} homepage http://pytz.sourceforge.net/ epoch 0 platforms darwin depends_lib port:python26 name py26-tz maintainers {ram openmaintainer} long_description {pytz brings the Olson tz database into Python. This library allows accurate and cross platform timezone calculations using Python 2.3 or higher.} version 2009r categories {python devel} revision 0 +portdir python/py26-tz description {World Timezone Definitions for Python} homepage http://pytz.sourceforge.net/ epoch 0 platforms darwin depends_lib port:python26 name py26-tz maintainers {ram openmaintainer} long_description {pytz brings the Olson tz database into Python. This library allows accurate and cross platform timezone calculations using Python 2.3 or higher.} version 2009u categories {python devel} revision 0 py26-urlwatch 578 portdir python/py26-urlwatch description {a tool for monitoring webpages for updates} homepage http://thpinfo.com/2008/urlwatch/ epoch 0 platforms darwin depends_lib port:py26-setuptools name py26-urlwatch maintainers nomaintainer long_description {urlwatch helps you watch URLs and get notified (via email or in your terminal) of any changes. The change notification will include the URL that has changed and a unified diff of what has changed, and can also filter content via hooks, remove noise (always-changing website parts), etc.} version 1.7 categories python revision 0 py26-utidylib 419 -------------- next part -------------- An HTML attachment was scrubbed... URL: From vinc17 at macports.org Mon Jan 4 16:01:42 2010 From: vinc17 at macports.org (vinc17 at macports.org) Date: Mon, 4 Jan 2010 16:01:42 -0800 (PST) Subject: [62348] trunk/dports/devel/vttest/Portfile Message-ID: <20100105000142.CA6553A53E21@beta.macosforge.org> Revision: 62348 http://trac.macports.org/changeset/62348 Author: vinc17 at macports.org Date: 2010-01-04 16:01:40 -0800 (Mon, 04 Jan 2010) Log Message: ----------- vttest: added livecheck. Modified Paths: -------------- trunk/dports/devel/vttest/Portfile Modified: trunk/dports/devel/vttest/Portfile =================================================================== --- trunk/dports/devel/vttest/Portfile 2010-01-04 23:54:28 UTC (rev 62347) +++ trunk/dports/devel/vttest/Portfile 2010-01-05 00:01:40 UTC (rev 62348) @@ -17,4 +17,6 @@ sha1 c42328989a272865afbce2b609fc1f1b7190c993 \ rmd160 7cb5fdd080d3582a3842d00b56088ad1dcddcad3 configure.args --mandir=${prefix}/share/man -livecheck.type none + +livecheck.url http://invisible-island.net/vttest/CHANGES +livecheck.regex ^(20\\d\\d\\d\\d\\d\\d) -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Mon Jan 4 16:22:07 2010 From: ryandesign at macports.org (ryandesign at macports.org) Date: Mon, 4 Jan 2010 16:22:07 -0800 (PST) Subject: [62349] trunk/dports/sysutils/screen Message-ID: <20100105002208.13F303A5438A@beta.macosforge.org> Revision: 62349 http://trac.macports.org/changeset/62349 Author: ryandesign at macports.org Date: 2010-01-04 16:22:05 -0800 (Mon, 04 Jan 2010) Log Message: ----------- screen: fix build on snow leopard; see #20862 (maintainer timeout) Modified Paths: -------------- trunk/dports/sysutils/screen/Portfile trunk/dports/sysutils/screen/files/patch-screen.c Added Paths: ----------- trunk/dports/sysutils/screen/files/patch-process.c Modified: trunk/dports/sysutils/screen/Portfile =================================================================== --- trunk/dports/sysutils/screen/Portfile 2010-01-05 00:01:40 UTC (rev 62348) +++ trunk/dports/sysutils/screen/Portfile 2010-01-05 00:22:05 UTC (rev 62349) @@ -67,6 +67,17 @@ patchfiles-append patch-Makefile.in patch-config.h.in patch-configure patch-pty.c patch-window.c patch-screen.c } +platform darwin 10 { + # These patches are based on http://www.opensource.apple.com/source/screen/screen-16/patches/ + # The vproc_priv.h is the private header from launchd, used in Apple's 10.6 screen patches + # We copied the header file from http://launchd.macosforge.org/trac/browser/trunk/launchd/src/vproc_priv.h, r23776 + master_sites-append http://www.cis.nctu.edu.tw/~is85005/dports/screen/r23776/:launchd_priv_header + distfiles-append vproc_priv.h:launchd_priv_header + checksums-append vproc_priv.h md5 50800817fa688e7e6ae379cd599f15ca + post-extract { file copy ${distpath}/vproc_priv.h ${workpath}/${distname} } + patchfiles-append patch-Makefile.in patch-config.h.in patch-configure patch-pty.c patch-window.c patch-screen.c patch-process.c +} + post-install { ui_msg "===============================================================================\n" ui_msg "Any screens running before upgrading, will not be available, post-install.\n" Added: trunk/dports/sysutils/screen/files/patch-process.c =================================================================== --- trunk/dports/sysutils/screen/files/patch-process.c (rev 0) +++ trunk/dports/sysutils/screen/files/patch-process.c 2010-01-05 00:22:05 UTC (rev 62349) @@ -0,0 +1,13 @@ +diff -r -u screen-4.0.3.orig/process.c screen-4.0.3/process.c +--- process.c 2008-07-06 23:40:16.000000000 -0700 ++++ process.c 2008-07-06 23:47:55.000000000 -0700 +@@ -5466,7 +5466,7 @@ + *buf = 0; + return; + } +- act.nr = (int)data; ++ act.nr = (int)(intptr_t)data; + act.args = noargs; + act.argl = 0; + DoAction(&act, -1); + Modified: trunk/dports/sysutils/screen/files/patch-screen.c =================================================================== --- trunk/dports/sysutils/screen/files/patch-screen.c 2010-01-05 00:01:40 UTC (rev 62348) +++ trunk/dports/sysutils/screen/files/patch-screen.c 2010-01-05 00:22:05 UTC (rev 62349) @@ -1,26 +1,44 @@ ---- screen.c.orig 2009-01-21 12:06:11.000000000 +0800 -+++ screen.c 2009-01-21 12:08:27.000000000 +0800 +--- screen.c 2003-09-08 07:26:41.000000000 -0700 ++++ screen.c 2009-02-13 12:05:05.000000000 -0800 @@ -101,6 +101,11 @@ - #include "logfile.h" /* islogfile, logfflush */ + #include "logfile.h" /* islogfile, logfflush */ +#ifdef __APPLE__ +#include -+#include "vproc_priv.h" ++#include +#endif + #ifdef DEBUG FILE *dfp; #endif -@@ -1211,6 +1216,11 @@ +@@ -929,6 +934,16 @@ + Panic(0, "No $SCREENDIR with multi screens, please."); + #endif + } ++#ifdef __APPLE__ ++ else if (!multi && real_uid == eff_uid) { ++ static char DarwinSockDir[PATH_MAX]; ++ if (confstr(_CS_DARWIN_USER_TEMP_DIR, DarwinSockDir, sizeof(DarwinSockDir))) { ++ strlcat(DarwinSockDir, ".screen", sizeof(DarwinSockDir)); ++ SockDir = DarwinSockDir; ++ } ++ } ++#endif /* __APPLE__ */ ++ + #ifdef MULTIUSER + if (multiattach) + { +@@ -1211,6 +1226,11 @@ freopen("/dev/null", "w", stderr); debug("-- screen.back debug started\n"); +#ifdef __APPLE__ -+ if (_vprocmgr_move_subset_to_user(real_uid, "Background") != NULL) -+ errx(1, "can't migrate to background session"); ++ if (_vprocmgr_detach_from_console(0) != NULL) ++ errx(1, "can't detach from console"); +#endif + /* * This guarantees that the session owner is listed, even when we * start detached. From now on we should not refer to 'LoginName' + -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Mon Jan 4 16:28:12 2010 From: ryandesign at macports.org (ryandesign at macports.org) Date: Mon, 4 Jan 2010 16:28:12 -0800 (PST) Subject: [62350] trunk/dports/sysutils/screen/Portfile Message-ID: <20100105002812.81EFE3A544B3@beta.macosforge.org> Revision: 62350 http://trac.macports.org/changeset/62350 Author: ryandesign at macports.org Date: 2010-01-04 16:28:11 -0800 (Mon, 04 Jan 2010) Log Message: ----------- screen: workpath/distname is more simply known as worksrcpath, and you don't need a slash before prefix. Modified Paths: -------------- trunk/dports/sysutils/screen/Portfile Modified: trunk/dports/sysutils/screen/Portfile =================================================================== --- trunk/dports/sysutils/screen/Portfile 2010-01-05 00:22:05 UTC (rev 62349) +++ trunk/dports/sysutils/screen/Portfile 2010-01-05 00:28:11 UTC (rev 62350) @@ -42,10 +42,10 @@ configure.env LIBS=-lncurses post-destroot { - xinstall -m 644 ${workpath}/18 ${destroot}/${prefix}/share/${name}/utf8encodings - xinstall -m 644 ${workpath}/${distname}/etc/etcscreenrc ${destroot}/${prefix}/etc/screenrc - xinstall -m 644 ${workpath}/${distname}/terminfo/screencap ${destroot}/${prefix}/etc/termcap - system "tic ${workpath}/${distname}/terminfo/screeninfo.src" + xinstall -m 644 ${workpath}/18 ${destroot}${prefix}/share/${name}/utf8encodings + xinstall -m 644 ${worksrcpath}/etc/etcscreenrc ${destroot}${prefix}/etc/screenrc + xinstall -m 644 ${worksrcpath}/terminfo/screencap ${destroot}${prefix}/etc/termcap + system "tic ${worksrcpath}/terminfo/screeninfo.src" } platform darwin 8 { @@ -54,7 +54,7 @@ platform darwin 9 { post-patch { - reinplace s|^deflogin|#deflogin| ${workpath}/${distname}/etc/etcscreenrc + reinplace s|^deflogin|#deflogin| ${worksrcpath}/etc/etcscreenrc } # These patches are based on http://www.opensource.apple.com/darwinsource/10.5.6/screen-12/patches/ @@ -63,7 +63,7 @@ master_sites-append http://www.cis.nctu.edu.tw/~is85005/dports/screen/r23776/:launchd_priv_header distfiles-append vproc_priv.h:launchd_priv_header checksums-append vproc_priv.h md5 50800817fa688e7e6ae379cd599f15ca - post-extract { file copy ${distpath}/vproc_priv.h ${workpath}/${distname} } + post-extract { file copy ${distpath}/vproc_priv.h ${worksrcpath} } patchfiles-append patch-Makefile.in patch-config.h.in patch-configure patch-pty.c patch-window.c patch-screen.c } @@ -74,7 +74,7 @@ master_sites-append http://www.cis.nctu.edu.tw/~is85005/dports/screen/r23776/:launchd_priv_header distfiles-append vproc_priv.h:launchd_priv_header checksums-append vproc_priv.h md5 50800817fa688e7e6ae379cd599f15ca - post-extract { file copy ${distpath}/vproc_priv.h ${workpath}/${distname} } + post-extract { file copy ${distpath}/vproc_priv.h ${worksrcpath} } patchfiles-append patch-Makefile.in patch-config.h.in patch-configure patch-pty.c patch-window.c patch-screen.c patch-process.c } -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Mon Jan 4 16:50:46 2010 From: ryandesign at macports.org (ryandesign at macports.org) Date: Mon, 4 Jan 2010 16:50:46 -0800 (PST) Subject: [62351] trunk/dports/sysutils/screen/files/patch-Makefile.in Message-ID: <20100105005047.A65903A5473C@beta.macosforge.org> Revision: 62351 http://trac.macports.org/changeset/62351 Author: ryandesign at macports.org Date: 2010-01-04 16:50:44 -0800 (Mon, 04 Jan 2010) Log Message: ----------- screen: ensure we're UsingTheRightCompiler (fixes #23132) Modified Paths: -------------- trunk/dports/sysutils/screen/files/patch-Makefile.in Modified: trunk/dports/sysutils/screen/files/patch-Makefile.in =================================================================== --- trunk/dports/sysutils/screen/files/patch-Makefile.in 2010-01-05 00:28:11 UTC (rev 62350) +++ trunk/dports/sysutils/screen/files/patch-Makefile.in 2010-01-05 00:50:44 UTC (rev 62351) @@ -5,7 +5,7 @@ comm.h: comm.c comm.sh config.h - AWK=$(AWK) CC="$(CC) $(CFLAGS)" srcdir=${srcdir} sh $(srcdir)/comm.sh -+ AWK=$(AWK) srcdir=${srcdir} sh $(srcdir)/comm.sh ++ AWK=$(AWK) CC="$(CC)" srcdir=${srcdir} sh $(srcdir)/comm.sh osdef.h: osdef.sh config.h osdef.h.in CPP="$(CPP) $(CPPFLAGS)" srcdir=${srcdir} sh $(srcdir)/osdef.sh -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Mon Jan 4 16:52:08 2010 From: ryandesign at macports.org (ryandesign at macports.org) Date: Mon, 4 Jan 2010 16:52:08 -0800 (PST) Subject: [62352] trunk/dports/sysutils/screen/Portfile Message-ID: <20100105005208.473153A54787@beta.macosforge.org> Revision: 62352 http://trac.macports.org/changeset/62352 Author: ryandesign at macports.org Date: 2010-01-04 16:52:06 -0800 (Mon, 04 Jan 2010) Log Message: ----------- screen: simplify patches: always use patch-Makefile.in Modified Paths: -------------- trunk/dports/sysutils/screen/Portfile Modified: trunk/dports/sysutils/screen/Portfile =================================================================== --- trunk/dports/sysutils/screen/Portfile 2010-01-05 00:50:44 UTC (rev 62351) +++ trunk/dports/sysutils/screen/Portfile 2010-01-05 00:52:06 UTC (rev 62352) @@ -28,7 +28,7 @@ checksums ${distname}${extract.suffix} md5 8506fd205028a96c741e4037de6e3c42 \ 18 md5 e5c53546a5c4968bd7e807c88e6b2198 -patchfiles patch-maxargs patch-windowsize patch-wrp_vertical_split +patchfiles patch-maxargs patch-windowsize patch-wrp_vertical_split patch-Makefile.in depends_lib port:ncurses extract.only ${distname}${extract.suffix} @@ -48,10 +48,6 @@ system "tic ${worksrcpath}/terminfo/screeninfo.src" } -platform darwin 8 { - patchfiles-append patch-Makefile.in -} - platform darwin 9 { post-patch { reinplace s|^deflogin|#deflogin| ${worksrcpath}/etc/etcscreenrc @@ -64,7 +60,7 @@ distfiles-append vproc_priv.h:launchd_priv_header checksums-append vproc_priv.h md5 50800817fa688e7e6ae379cd599f15ca post-extract { file copy ${distpath}/vproc_priv.h ${worksrcpath} } - patchfiles-append patch-Makefile.in patch-config.h.in patch-configure patch-pty.c patch-window.c patch-screen.c + patchfiles-append patch-config.h.in patch-configure patch-pty.c patch-window.c patch-screen.c } platform darwin 10 { @@ -75,7 +71,7 @@ distfiles-append vproc_priv.h:launchd_priv_header checksums-append vproc_priv.h md5 50800817fa688e7e6ae379cd599f15ca post-extract { file copy ${distpath}/vproc_priv.h ${worksrcpath} } - patchfiles-append patch-Makefile.in patch-config.h.in patch-configure patch-pty.c patch-window.c patch-screen.c patch-process.c + patchfiles-append patch-config.h.in patch-configure patch-pty.c patch-window.c patch-screen.c patch-process.c } post-install { -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Mon Jan 4 16:54:35 2010 From: portindex at macports.org (portindex at macports.org) Date: Mon, 4 Jan 2010 16:54:35 -0800 (PST) Subject: [62353] trunk/dports Message-ID: <20100105005436.BA5E53A5480E@beta.macosforge.org> Revision: 62353 http://trac.macports.org/changeset/62353 Author: portindex at macports.org Date: 2010-01-04 16:54:34 -0800 (Mon, 04 Jan 2010) Log Message: ----------- Total number of ports parsed: 6471 Ports successfully parsed: 6471 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex trunk/dports/PortIndex.quick Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-05 00:52:06 UTC (rev 62352) +++ trunk/dports/PortIndex 2010-01-05 00:54:34 UTC (rev 62353) @@ -11108,8 +11108,8 @@ variants universal portdir sysutils/rvm description {archive manager to manage backups of multiple clients} homepage http://rvm.sourceforge.net/ epoch 0 platforms darwin name rvm depends_lib path:bin/rsync:rsync long_description {The Rsync Vault Manager is an archive manager that uses rsync to manage backups of multiple clients across multiple logical partitions (vaults).} maintainers nomaintainer categories {sysutils net} version 0.90.1-beta revision 0 rx 300 variants universal portdir sysutils/rx description {Replacement for the GNU regex library} homepage http://www.gnu.org/software/rx/rx.html epoch 0 platforms darwin name rx long_description {A fast replacement for the GNU regex library.} maintainers takeshi categories sysutils version 1.5 revision 0 -screen 828 -variants {darwin_8 darwin_9 universal} portdir sysutils/screen description {Screen manager with VT100/ANSI terminal emulation} homepage http://www.gnu.org/software/screen/ epoch 0 platforms darwin name screen depends_lib port:ncurses maintainers digdog long_description {Screen is a full-screen window manager that multiplexes a physical terminal between several processes (typically interactive shells). Each virtual terminal provides the functions of a DEC VT100 terminal and, in addition, several control functions from the ANSI X3.64 (ISO 6429) and ISO 2022 standards (e.g. insert/delete line and support for multiple character sets). There is a scrollback history buffer for each virtual terminal and a copy-and-paste mechanism that allows moving text regions between windows.} categories sysutils version 4.0.3 revision 3 +screen 838 +variants {darwin_8 darwin_9 darwin_10 universal} portdir sysutils/screen description {Screen manager with VT100/ANSI terminal emulation} homepage http://www.gnu.org/software/screen/ epoch 0 platforms darwin name screen depends_lib port:ncurses maintainers digdog long_description {Screen is a full-screen window manager that multiplexes a physical terminal between several processes (typically interactive shells). Each virtual terminal provides the functions of a DEC VT100 terminal and, in addition, several control functions from the ANSI X3.64 (ISO 6429) and ISO 2022 standards (e.g. insert/delete line and support for multiple character sets). There is a scrollback history buffer for each virtual terminal and a copy-and-paste mechanism that allows moving text regions between windows.} categories sysutils version 4.0.3 revision 3 sdd 302 portdir sysutils/sdd description {fast replacement for dd} homepage http://www.fokus.fraunhofer.de/research/cc/berlios/employees/joerg.schilling/private/ epoch 0 platforms darwin name sdd maintainers nomaintainer long_description {{fast replacement for dd}} version 1.52 categories sysutils revision 0 sfind 380 Modified: trunk/dports/PortIndex.quick =================================================================== (Binary files differ) -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Mon Jan 4 16:55:48 2010 From: ryandesign at macports.org (ryandesign at macports.org) Date: Mon, 4 Jan 2010 16:55:48 -0800 (PST) Subject: [62354] trunk/dports/sysutils/screen/Portfile Message-ID: <20100105005548.F3F453A54887@beta.macosforge.org> Revision: 62354 http://trac.macports.org/changeset/62354 Author: ryandesign at macports.org Date: 2010-01-04 16:55:47 -0800 (Mon, 04 Jan 2010) Log Message: ----------- screen: specify the master_sites and checksums for vproc_priv.h just once Modified Paths: -------------- trunk/dports/sysutils/screen/Portfile Modified: trunk/dports/sysutils/screen/Portfile =================================================================== --- trunk/dports/sysutils/screen/Portfile 2010-01-05 00:54:34 UTC (rev 62353) +++ trunk/dports/sysutils/screen/Portfile 2010-01-05 00:55:47 UTC (rev 62354) @@ -20,14 +20,16 @@ maintainers digdog master_sites http://fresh.t-systems-sfr.com/unix/src/misc/ \ ftp://ftp.uni-erlangen.de/pub/utilities/screen/ \ - http://www.cis.nctu.edu.tw/~is85005/dports/screen/:encoding + http://www.cis.nctu.edu.tw/~is85005/dports/screen/:encoding \ + http://www.cis.nctu.edu.tw/~is85005/dports/screen/r23776/:launchd_priv_header # The file '18' above is a fix for UTF8-to-Big5HKSCS encoding translation. # Reference: http://freebsd.sinica.edu.tw/~statue/index.php?file=20020513 distfiles-append 18:encoding checksums ${distname}${extract.suffix} md5 8506fd205028a96c741e4037de6e3c42 \ - 18 md5 e5c53546a5c4968bd7e807c88e6b2198 + 18 md5 e5c53546a5c4968bd7e807c88e6b2198 \ + vproc_priv.h md5 50800817fa688e7e6ae379cd599f15ca patchfiles patch-maxargs patch-windowsize patch-wrp_vertical_split patch-Makefile.in depends_lib port:ncurses @@ -56,9 +58,7 @@ # These patches are based on http://www.opensource.apple.com/darwinsource/10.5.6/screen-12/patches/ # The vproc_priv.h is the private header from launchd, used in Apple's 10.5 screen patches # We copied the header file from http://launchd.macosforge.org/trac/browser/trunk/launchd/src/vproc_priv.h, r23776 - master_sites-append http://www.cis.nctu.edu.tw/~is85005/dports/screen/r23776/:launchd_priv_header distfiles-append vproc_priv.h:launchd_priv_header - checksums-append vproc_priv.h md5 50800817fa688e7e6ae379cd599f15ca post-extract { file copy ${distpath}/vproc_priv.h ${worksrcpath} } patchfiles-append patch-config.h.in patch-configure patch-pty.c patch-window.c patch-screen.c } @@ -67,9 +67,7 @@ # These patches are based on http://www.opensource.apple.com/source/screen/screen-16/patches/ # The vproc_priv.h is the private header from launchd, used in Apple's 10.6 screen patches # We copied the header file from http://launchd.macosforge.org/trac/browser/trunk/launchd/src/vproc_priv.h, r23776 - master_sites-append http://www.cis.nctu.edu.tw/~is85005/dports/screen/r23776/:launchd_priv_header distfiles-append vproc_priv.h:launchd_priv_header - checksums-append vproc_priv.h md5 50800817fa688e7e6ae379cd599f15ca post-extract { file copy ${distpath}/vproc_priv.h ${worksrcpath} } patchfiles-append patch-config.h.in patch-configure patch-pty.c patch-window.c patch-screen.c patch-process.c } -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Mon Jan 4 17:07:53 2010 From: ryandesign at macports.org (ryandesign at macports.org) Date: Mon, 4 Jan 2010 17:07:53 -0800 (PST) Subject: [62355] trunk/dports/sysutils/screen Message-ID: <20100105010754.095F13A54A9A@beta.macosforge.org> Revision: 62355 http://trac.macports.org/changeset/62355 Author: ryandesign at macports.org Date: 2010-01-04 17:07:52 -0800 (Mon, 04 Jan 2010) Log Message: ----------- screen: unbreak the build on leopard by bringing back the prior version of patch-screen.c; see #20862 Modified Paths: -------------- trunk/dports/sysutils/screen/Portfile Added Paths: ----------- trunk/dports/sysutils/screen/files/patch-screen.c-leopard Modified: trunk/dports/sysutils/screen/Portfile =================================================================== --- trunk/dports/sysutils/screen/Portfile 2010-01-05 00:55:47 UTC (rev 62354) +++ trunk/dports/sysutils/screen/Portfile 2010-01-05 01:07:52 UTC (rev 62355) @@ -60,7 +60,7 @@ # We copied the header file from http://launchd.macosforge.org/trac/browser/trunk/launchd/src/vproc_priv.h, r23776 distfiles-append vproc_priv.h:launchd_priv_header post-extract { file copy ${distpath}/vproc_priv.h ${worksrcpath} } - patchfiles-append patch-config.h.in patch-configure patch-pty.c patch-window.c patch-screen.c + patchfiles-append patch-config.h.in patch-configure patch-pty.c patch-window.c patch-screen.c-leopard } platform darwin 10 { Copied: trunk/dports/sysutils/screen/files/patch-screen.c-leopard (from rev 62348, trunk/dports/sysutils/screen/files/patch-screen.c) =================================================================== --- trunk/dports/sysutils/screen/files/patch-screen.c-leopard (rev 0) +++ trunk/dports/sysutils/screen/files/patch-screen.c-leopard 2010-01-05 01:07:52 UTC (rev 62355) @@ -0,0 +1,26 @@ +--- screen.c.orig 2009-01-21 12:06:11.000000000 +0800 ++++ screen.c 2009-01-21 12:08:27.000000000 +0800 +@@ -101,6 +101,11 @@ + + #include "logfile.h" /* islogfile, logfflush */ + ++#ifdef __APPLE__ ++#include ++#include "vproc_priv.h" ++#endif ++ + #ifdef DEBUG + FILE *dfp; + #endif +@@ -1211,6 +1216,11 @@ + freopen("/dev/null", "w", stderr); + debug("-- screen.back debug started\n"); + ++#ifdef __APPLE__ ++ if (_vprocmgr_move_subset_to_user(real_uid, "Background") != NULL) ++ errx(1, "can't migrate to background session"); ++#endif ++ + /* + * This guarantees that the session owner is listed, even when we + * start detached. From now on we should not refer to 'LoginName' -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Mon Jan 4 17:10:54 2010 From: ryandesign at macports.org (ryandesign at macports.org) Date: Mon, 4 Jan 2010 17:10:54 -0800 (PST) Subject: [62356] trunk/dports/graphics/libpng/Portfile Message-ID: <20100105011054.852623A54BB6@beta.macosforge.org> Revision: 62356 http://trac.macports.org/changeset/62356 Author: ryandesign at macports.org Date: 2010-01-04 17:10:53 -0800 (Mon, 04 Jan 2010) Log Message: ----------- libpng: update to 1.2.42; see #23125 Modified Paths: -------------- trunk/dports/graphics/libpng/Portfile Modified: trunk/dports/graphics/libpng/Portfile =================================================================== --- trunk/dports/graphics/libpng/Portfile 2010-01-05 01:07:52 UTC (rev 62355) +++ trunk/dports/graphics/libpng/Portfile 2010-01-05 01:10:53 UTC (rev 62356) @@ -5,7 +5,7 @@ PortGroup archcheck 1.0 name libpng -version 1.2.41 +version 1.2.42 categories graphics maintainers ryandesign waqar license libpng @@ -28,9 +28,9 @@ understand. Currently, this library only supports C. \ Support for other languages is being considered. -checksums md5 2faa7f8d81e6a35beb991cb75edbf056 \ - sha1 e859ce73c5344ce10576d03cab3b660459b30c13 \ - rmd160 b9d3f22ef7fbe43327cb3d5153fed1ca237785cb +checksums md5 9a5cbe9798927fdf528f3186a8840ebe \ + sha1 e41cea7a6f5e3065f4289de3742db87ded05b99d \ + rmd160 37e297f139ec91017c92990ca4c0f376f548853d depends_lib port:zlib -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Mon Jan 4 17:51:23 2010 From: ryandesign at macports.org (ryandesign at macports.org) Date: Mon, 4 Jan 2010 17:51:23 -0800 (PST) Subject: [62357] trunk/dports/lang/php52/Portfile Message-ID: <20100105015124.1CAB73A55536@beta.macosforge.org> Revision: 62357 http://trac.macports.org/changeset/62357 Author: ryandesign at macports.org Date: 2010-01-04 17:51:22 -0800 (Mon, 04 Jan 2010) Log Message: ----------- php52: update to 5.2.12. The latest suhosin patch is still for 5.2.11. Modified Paths: -------------- trunk/dports/lang/php52/Portfile Modified: trunk/dports/lang/php52/Portfile =================================================================== --- trunk/dports/lang/php52/Portfile 2010-01-05 01:10:53 UTC (rev 62356) +++ trunk/dports/lang/php52/Portfile 2010-01-05 01:51:22 UTC (rev 62357) @@ -4,8 +4,7 @@ name php52 conflicts php5 php5-devel php5-gd php5-iconv php5-mbstring php5-sqlite -version 5.2.11 -revision 2 +version 5.2.12 set major [lindex [split ${version} .] 0] set my_name php${major} dist_subdir ${my_name} @@ -28,9 +27,9 @@ checksums \ [suffix ${distname}] \ - md5 286bf34630f5643c25ebcedfec5e0a09 \ - sha1 819c853ce657ef260d4a73b5a21f961115b97eef \ - rmd160 6aad53dee864ab89f794a9d3c2aa32d435ed5654 + md5 5b7077e366c7eeab34da31dd860a1923 \ + sha1 6605f23b70e3db824047830f08d636e09ec10ff3 \ + rmd160 027f3597fd961d2a95682e2f0738415f8a911371 depends_build \ port:pkgconfig \ @@ -370,7 +369,8 @@ return -code error "incompatible Mac OS X version" } } - set suhosin_patch_version ${version}-0.9.7 + #set suhosin_patch_version ${version}-0.9.7 + set suhosin_patch_version 5.2.11-0.9.7 set suhosin_patch suhosin-patch-${suhosin_patch_version}.patch.gz patch_sites-append http://download.suhosin.org/ patchfiles-append ${suhosin_patch} -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Mon Jan 4 17:54:28 2010 From: portindex at macports.org (portindex at macports.org) Date: Mon, 4 Jan 2010 17:54:28 -0800 (PST) Subject: [62358] trunk/dports Message-ID: <20100105015429.310F53A55580@beta.macosforge.org> Revision: 62358 http://trac.macports.org/changeset/62358 Author: portindex at macports.org Date: 2010-01-04 17:54:27 -0800 (Mon, 04 Jan 2010) Log Message: ----------- Total number of ports parsed: 6471 Ports successfully parsed: 6471 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex trunk/dports/PortIndex.quick Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-05 01:51:22 UTC (rev 62357) +++ trunk/dports/PortIndex 2010-01-05 01:54:27 UTC (rev 62358) @@ -3423,7 +3423,7 @@ libpixman-devel 445 variants universal depends_build {port:autoconf port:automake port:libtool} portdir graphics/libpixman-devel description {Pixel region Library} homepage http://www.x.org/ epoch 0 platforms darwin name libpixman-devel maintainers ryandesign long_description {libpixman is a generic library for manipulating pixel regions. A PixRegion is a set of Y-X banded rectangles that cover the desired region.} categories graphics version 0.17.2 revision 0 libpng 838 -variants universal portdir graphics/libpng description {Library for manipulating PNG images} homepage http://www.libpng.org/pub/png/libpng.html epoch 0 platforms {darwin openbsd freebsd sunos linux} depends_lib port:zlib name libpng maintainers {ryandesign waqar} long_description {Libpng was written as a companion to the PNG specification, as a way to reduce the amount of time and effort it takes to support the PNG file format in application programs. Most users will not have to modify the library significantly, advanced users may want to modify it more. The library was coded for both users. All attempts were made to make it as complete as possible, while keeping the code easy to understand. Currently, this library only supports C. Support for other languages is being considered.} categories graphics version 1.2.41 revision 0 +variants universal portdir graphics/libpng description {Library for manipulating PNG images} homepage http://www.libpng.org/pub/png/libpng.html epoch 0 platforms {darwin openbsd freebsd sunos linux} depends_lib port:zlib name libpng maintainers {ryandesign waqar} long_description {Libpng was written as a companion to the PNG specification, as a way to reduce the amount of time and effort it takes to support the PNG file format in application programs. Most users will not have to modify the library significantly, advanced users may want to modify it more. The library was coded for both users. All attempts were made to make it as complete as possible, while keeping the code easy to understand. Currently, this library only supports C. Support for other languages is being considered.} categories graphics version 1.2.42 revision 0 librsvg 393 variants universal portdir graphics/librsvg description {Gnome implementation of rsvg.} homepage http://librsvg.sourceforge.net/ depends_run port:python26 epoch 0 platforms darwin depends_lib {port:libcroco port:libgsf port:libart_lgpl port:libxml2} name librsvg maintainers nomaintainer long_description {{Gnome implementation of rsvg.}} categories {graphics gnome} version 2.26.0 revision 1 libspiro 391 @@ -11108,8 +11108,8 @@ variants universal portdir sysutils/rvm description {archive manager to manage backups of multiple clients} homepage http://rvm.sourceforge.net/ epoch 0 platforms darwin name rvm depends_lib path:bin/rsync:rsync long_description {The Rsync Vault Manager is an archive manager that uses rsync to manage backups of multiple clients across multiple logical partitions (vaults).} maintainers nomaintainer categories {sysutils net} version 0.90.1-beta revision 0 rx 300 variants universal portdir sysutils/rx description {Replacement for the GNU regex library} homepage http://www.gnu.org/software/rx/rx.html epoch 0 platforms darwin name rx long_description {A fast replacement for the GNU regex library.} maintainers takeshi categories sysutils version 1.5 revision 0 -screen 838 -variants {darwin_8 darwin_9 darwin_10 universal} portdir sysutils/screen description {Screen manager with VT100/ANSI terminal emulation} homepage http://www.gnu.org/software/screen/ epoch 0 platforms darwin name screen depends_lib port:ncurses maintainers digdog long_description {Screen is a full-screen window manager that multiplexes a physical terminal between several processes (typically interactive shells). Each virtual terminal provides the functions of a DEC VT100 terminal and, in addition, several control functions from the ANSI X3.64 (ISO 6429) and ISO 2022 standards (e.g. insert/delete line and support for multiple character sets). There is a scrollback history buffer for each virtual terminal and a copy-and-paste mechanism that allows moving text regions between windows.} categories sysutils version 4.0.3 revision 3 +screen 829 +variants {darwin_9 darwin_10 universal} portdir sysutils/screen description {Screen manager with VT100/ANSI terminal emulation} homepage http://www.gnu.org/software/screen/ epoch 0 platforms darwin name screen depends_lib port:ncurses maintainers digdog long_description {Screen is a full-screen window manager that multiplexes a physical terminal between several processes (typically interactive shells). Each virtual terminal provides the functions of a DEC VT100 terminal and, in addition, several control functions from the ANSI X3.64 (ISO 6429) and ISO 2022 standards (e.g. insert/delete line and support for multiple character sets). There is a scrollback history buffer for each virtual terminal and a copy-and-paste mechanism that allows moving text regions between windows.} categories sysutils version 4.0.3 revision 3 sdd 302 portdir sysutils/sdd description {fast replacement for dd} homepage http://www.fokus.fraunhofer.de/research/cc/berlios/employees/joerg.schilling/private/ epoch 0 platforms darwin name sdd maintainers nomaintainer long_description {{fast replacement for dd}} version 1.52 categories sysutils revision 0 sfind 380 Modified: trunk/dports/PortIndex.quick =================================================================== (Binary files differ) -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Mon Jan 4 18:09:11 2010 From: ryandesign at macports.org (ryandesign at macports.org) Date: Mon, 4 Jan 2010 18:09:11 -0800 (PST) Subject: [62359] trunk/dports/lang/php5-devel/Portfile Message-ID: <20100105020912.2E0D13A55769@beta.macosforge.org> Revision: 62359 http://trac.macports.org/changeset/62359 Author: ryandesign at macports.org Date: 2010-01-04 18:09:08 -0800 (Mon, 04 Jan 2010) Log Message: ----------- php5-devel: update to 5.3.2RC1. The latest suhosin patch is still for 5.3.1. Modified Paths: -------------- trunk/dports/lang/php5-devel/Portfile Modified: trunk/dports/lang/php5-devel/Portfile =================================================================== --- trunk/dports/lang/php5-devel/Portfile 2010-01-05 01:54:27 UTC (rev 62358) +++ trunk/dports/lang/php5-devel/Portfile 2010-01-05 02:09:08 UTC (rev 62359) @@ -5,8 +5,7 @@ name php5-devel conflicts php5 php52 epoch 1 -version 5.3.1RC4 -revision 1 +version 5.3.2RC1 set major [lindex [split ${version} .] 0] set my_name php${major} dist_subdir ${my_name} @@ -32,9 +31,9 @@ checksums \ [suffix ${distname}] \ - md5 809974d50a6b460c7f85896659e3fc9f \ - sha1 32117ecca539799e943cb16e31da34c12862763b \ - rmd160 ee193620b5b5e8a2648de2a46c278d2b7b24a0b9 + md5 b8dcc0e281c73f2f8d7f2df5eaba60d4 \ + sha1 acd8171d88a8f7f55db5f2130d407e8169575ed7 \ + rmd160 76603f61d3bafc915659c80a1d61c891fe75fd66 depends_build \ port:pkgconfig \ -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Mon Jan 4 18:54:24 2010 From: portindex at macports.org (portindex at macports.org) Date: Mon, 4 Jan 2010 18:54:24 -0800 (PST) Subject: [62360] trunk/dports/PortIndex Message-ID: <20100105025427.2D1A03A55CEB@beta.macosforge.org> Revision: 62360 http://trac.macports.org/changeset/62360 Author: portindex at macports.org Date: 2010-01-04 18:54:21 -0800 (Mon, 04 Jan 2010) Log Message: ----------- Total number of ports parsed: 6471 Ports successfully parsed: 6471 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-05 02:09:08 UTC (rev 62359) +++ trunk/dports/PortIndex 2010-01-05 02:54:21 UTC (rev 62360) @@ -4527,11 +4527,11 @@ php5 786 variants {darwin_10 macosx no_web apache apache2 fastcgi gmp imap macports_snmp mssql mysql3 mysql4 mysql5 mysqlnd oracle pcntl postgresql82 postgresql83 pspell snmp sockets sqlite tidy ipc pear suhosin debug universal} depends_build {port:pkgconfig port:autoconf213} portdir lang/php5 description {PHP: Hypertext Preprocessor} homepage http://www.php.net/ epoch 1 platforms {darwin freebsd} depends_lib {path:bin/gsed:gsed port:libtool port:libxml2 port:bzip2 port:mhash port:pcre port:readline port:zlib port:apache2} name php5 long_description {PHP is a widely-used general-purpose scripting language that is especially suited for developing web sites, but can also be used for command-line scripting.} maintainers {ryandesign jwa} categories {lang php www} version 5.3.1 revision 1 php5-devel 800 -variants {darwin_10 macosx no_web apache apache2 fastcgi gmp imap macports_snmp mssql mysql3 mysql4 mysql5 mysqlnd oracle pcntl postgresql82 postgresql83 pspell snmp sockets sqlite tidy ipc pear suhosin debug universal} depends_build {port:pkgconfig port:autoconf213} portdir lang/php5-devel description {PHP: Hypertext Preprocessor} homepage http://qa.php.net/ epoch 1 platforms {darwin freebsd} depends_lib {path:bin/gsed:gsed port:libtool port:libxml2 port:bzip2 port:mhash port:pcre port:readline port:zlib port:apache2} name php5-devel long_description {PHP is a widely-used general-purpose scripting language that is especially suited for developing web sites, but can also be used for command-line scripting.} maintainers {ryandesign jwa} categories {lang php www} version 5.3.1RC4 revision 1 +variants {darwin_10 macosx no_web apache apache2 fastcgi gmp imap macports_snmp mssql mysql3 mysql4 mysql5 mysqlnd oracle pcntl postgresql82 postgresql83 pspell snmp sockets sqlite tidy ipc pear suhosin debug universal} depends_build {port:pkgconfig port:autoconf213} portdir lang/php5-devel description {PHP: Hypertext Preprocessor} homepage http://qa.php.net/ epoch 1 platforms {darwin freebsd} depends_lib {path:bin/gsed:gsed port:libtool port:libxml2 port:bzip2 port:mhash port:pcre port:readline port:zlib port:apache2} name php5-devel long_description {PHP is a widely-used general-purpose scripting language that is especially suited for developing web sites, but can also be used for command-line scripting.} maintainers {ryandesign jwa} categories {lang php www} version 5.3.2RC1 revision 0 php5-web 468 portdir lang/php5-web description {Meta-port for PHP web server support} homepage http://www.php.net/ epoch 0 platforms darwin name php5-web depends_lib path:bin/php:php5 maintainers ryandesign long_description {If you have a port for a web app that uses PHP, and you don't care (as you usually wouldn't) whether PHP is compiled as an Apache module or as a FastCGI binary, depend on php5-web so the user can choose.} categories {lang php www} version 5.3.0 revision 0 php52 929 -variants {darwin_10 macosx no_web apache apache2 fastcgi gmp dbase imap pspell tidy mssql snmp macports_snmp mysql4 mysql5 oracle postgresql82 postgresql83 postgresql84 sqlite ipc pcntl pear readline sockets t1lib suhosin debug universal} depends_build {port:pkgconfig port:autoconf213} portdir lang/php52 description {PHP: Hypertext Preprocessor} homepage http://www.php.net/ epoch 0 platforms {darwin freebsd} depends_lib {path:bin/gsed:gsed port:libtool port:libxml2 port:libxslt port:openssl port:zlib port:bzip2 port:libiconv port:expat port:gettext port:tiff port:mhash port:libmcrypt port:curl port:pcre port:jpeg port:libpng port:freetype port:apache2} name php52 long_description {PHP is a widely-used general-purpose scripting language that is especially suited for developing web sites, but can also be used for command-line scripting.} maintainers {ryandesign jwa} categories {lang php www} version 5.2.11 revision 2 +variants {darwin_10 macosx no_web apache apache2 fastcgi gmp dbase imap pspell tidy mssql snmp macports_snmp mysql4 mysql5 oracle postgresql82 postgresql83 postgresql84 sqlite ipc pcntl pear readline sockets t1lib suhosin debug universal} depends_build {port:pkgconfig port:autoconf213} portdir lang/php52 description {PHP: Hypertext Preprocessor} homepage http://www.php.net/ epoch 0 platforms {darwin freebsd} depends_lib {path:bin/gsed:gsed port:libtool port:libxml2 port:libxslt port:openssl port:zlib port:bzip2 port:libiconv port:expat port:gettext port:tiff port:mhash port:libmcrypt port:curl port:pcre port:jpeg port:libpng port:freetype port:apache2} name php52 long_description {PHP is a widely-used general-purpose scripting language that is especially suited for developing web sites, but can also be used for command-line scripting.} maintainers {ryandesign jwa} categories {lang php www} version 5.2.12 revision 0 pike 652 variants {bzip2 image ttf pcre gdbm mysql odbc postgresql gtk opengl sane sdl svg doc universal} depends_build {port:zlib port:gmp port:nettle} portdir lang/pike description {dynamic programming language} homepage http://pike.ida.liu.se/ epoch 0 platforms darwin name pike depends_lib {port:zlib port:gmp port:nettle} long_description {Pike is a dynamic programming language with a syntax similar to Java and C. It is simple to learn, does not require long compilation passes and has powerful built-in data types allowing simple and really fast data manipulation.} maintainers {gmx.de:exodusd openmaintainer} categories lang version 7.6.112 revision 2 polyml 419 -------------- next part -------------- An HTML attachment was scrubbed... URL: From nox at macports.org Mon Jan 4 19:42:02 2010 From: nox at macports.org (nox at macports.org) Date: Mon, 4 Jan 2010 19:42:02 -0800 (PST) Subject: [62361] trunk/dports/php Message-ID: <20100105034202.C756C3A56308@beta.macosforge.org> Revision: 62361 http://trac.macports.org/changeset/62361 Author: nox at macports.org Date: 2010-01-04 19:42:01 -0800 (Mon, 04 Jan 2010) Log Message: ----------- Create new port php5-inclued Allows you trace through and dump the hierarchy of file inclusions and class inheritance at runtime. Added Paths: ----------- trunk/dports/php/php5-inclued/ trunk/dports/php/php5-inclued/Portfile Added: trunk/dports/php/php5-inclued/Portfile =================================================================== --- trunk/dports/php/php5-inclued/Portfile (rev 0) +++ trunk/dports/php/php5-inclued/Portfile 2010-01-05 03:42:01 UTC (rev 62361) @@ -0,0 +1,30 @@ +# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:filetype=tcl:et:sw=4:ts=4:sts=4 +# $Id$ + +PortSystem 1.0 +PortGroup php5extension 1.0 + +php5extension.setup inclued 0.1.0 pecl +license PHP +categories php devel +platforms darwin +maintainers nox openmaintainer +description Clued-in about your inclueds + +long_description \ + Allows you trace through and dump the hierarchy of file inclusions and \ + class inheritance at runtime. + +checksums md5 4c6f38a1845e4a2bd4a728a3f04e9003 \ + sha1 aa6f6ea3aaf18dd17e0b2284d702db3964b26e72 \ + rmd160 ce1d60e1e9482bae7b6846605a8a9d8cd4b77c14 + +use_parallel_build yes + +post-destroot { + set docdir ${prefix}/share/doc/${name} + xinstall -d ${destroot}${docdir} + xinstall -m 644 ${worksrcpath}/INSTALL ${destroot}${docdir} +} + +livecheck.regex {>(\d+(?:\.\d+)*)} \ No newline at end of file Property changes on: trunk/dports/php/php5-inclued/Portfile ___________________________________________________________________ Added: svn:keywords + Id Added: svn:eol-style + native -------------- next part -------------- An HTML attachment was scrubbed... URL: From nox at macports.org Mon Jan 4 19:42:13 2010 From: nox at macports.org (nox at macports.org) Date: Mon, 4 Jan 2010 19:42:13 -0800 (PST) Subject: [62362] trunk/dports/php Message-ID: <20100105034213.C8D903A56349@beta.macosforge.org> Revision: 62362 http://trac.macports.org/changeset/62362 Author: nox at macports.org Date: 2010-01-04 19:42:12 -0800 (Mon, 04 Jan 2010) Log Message: ----------- Create new port php5-amf Allows to encode and decode PHP data in ActionScript Message Format (AMF) version 0 and 3. Added Paths: ----------- trunk/dports/php/php5-amf/ trunk/dports/php/php5-amf/Portfile trunk/dports/php/php5-amf/files/ trunk/dports/php/php5-amf/files/patch-amf.c.diff Added: trunk/dports/php/php5-amf/Portfile =================================================================== --- trunk/dports/php/php5-amf/Portfile (rev 0) +++ trunk/dports/php/php5-amf/Portfile 2010-01-05 03:42:12 UTC (rev 62362) @@ -0,0 +1,37 @@ +# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:filetype=tcl:et:sw=4:ts=4:sts=4 +# $Id$ + +PortSystem 1.0 +PortGroup php5extension 1.0 + +php5extension.setup amfext 0.9.2 pecl +php5extension.extensions amf +name php5-amf +license PHP +categories php devel +platforms darwin +maintainers nox openmaintainer +description ActionScript Message Format extension + +long_description \ + Allows to encode and decode PHP data in ActionScript Message Format (AMF) \ + version 0 and 3. + +checksums md5 c5899ca580f19ef7f057b6ea41c2d236 \ + sha1 f2f40d4ddc4416fa09f17e94ed037f907fd87ec4 \ + rmd160 d55426eb9da3513058fc58db51f5ba35cff831a9 + +patchfiles patch-amf.c.diff + +configure.args --with-amf + +use_parallel_build yes + +post-destroot { + set docdir ${prefix}/share/doc/${name} + xinstall -d ${destroot}${docdir} + xinstall -m 644 -W ${worksrcpath} CREDITS ChangeLog LICENSE README \ + ${destroot}${docdir} +} + +livecheck.regex {>(\d+(?:\.\d+)*)} \ No newline at end of file Property changes on: trunk/dports/php/php5-amf/Portfile ___________________________________________________________________ Added: svn:keywords + Id Added: svn:eol-style + native Added: trunk/dports/php/php5-amf/files/patch-amf.c.diff =================================================================== --- trunk/dports/php/php5-amf/files/patch-amf.c.diff (rev 0) +++ trunk/dports/php/php5-amf/files/patch-amf.c.diff 2010-01-05 03:42:12 UTC (rev 62362) @@ -0,0 +1,19 @@ +--- amf.c.orig 2010-01-05 04:23:23.000000000 +0100 ++++ amf.c 2010-01-05 04:29:37.000000000 +0100 +@@ -1185,7 +1185,6 @@ + int resultType = AMFC_TYPEDOBJECT; + int resultValueLength = 0; + zval** resultValue = struc; +- int deallocResult = (*struc)->refcount; + + resultType = amf_perform_serialize_callback(struc, &className,&classNameLen,&resultValue,var_hash TSRMLS_CC); + +@@ -2670,7 +2669,7 @@ + } + else + { +- newval->refcount--; ++ Z_DELREF_P(newval); + } + *rval = newval; + } -------------- next part -------------- An HTML attachment was scrubbed... URL: From nox at macports.org Mon Jan 4 19:42:23 2010 From: nox at macports.org (nox at macports.org) Date: Mon, 4 Jan 2010 19:42:23 -0800 (PST) Subject: [62363] trunk/dports/php/php5-xslcache/Portfile Message-ID: <20100105034223.141C33A56386@beta.macosforge.org> Revision: 62363 http://trac.macports.org/changeset/62363 Author: nox at macports.org Date: 2010-01-04 19:42:21 -0800 (Mon, 04 Jan 2010) Log Message: ----------- Fix php5-xslcache dependencies and livecheck Modified Paths: -------------- trunk/dports/php/php5-xslcache/Portfile Modified: trunk/dports/php/php5-xslcache/Portfile =================================================================== --- trunk/dports/php/php5-xslcache/Portfile 2010-01-05 03:42:12 UTC (rev 62362) +++ trunk/dports/php/php5-xslcache/Portfile 2010-01-05 03:42:21 UTC (rev 62363) @@ -3,8 +3,10 @@ PortSystem 1.0 PortGroup php5extension 1.0 +PortGroup archcheck 1.0 php5extension.setup xslcache 0.7.1 pecl +revision 1 license PHP categories php www devel platforms darwin @@ -28,6 +30,12 @@ sha1 d185d34e032ab78aa62e4f023567dc26f4af3bac \ rmd160 09dbdd8f010d8d44891f3da0e6dae37308b92408 +depends_lib-append \ + port:libxslt + +archcheck.files \ + lib/libxslt.dylib + use_parallel_build yes post-destroot { @@ -36,3 +44,5 @@ xinstall -m 644 -W ${worksrcpath} CREDITS EXPERIMENTAL \ ${destroot}${docdir} } + +livecheck.regex {>(\d+(?:\.\d+)*)} -------------- next part -------------- An HTML attachment was scrubbed... URL: From blair at macports.org Mon Jan 4 19:42:57 2010 From: blair at macports.org (blair at macports.org) Date: Mon, 4 Jan 2010 19:42:57 -0800 (PST) Subject: [62364] trunk/dports/devel/subversion-python24bindings/Portfile Message-ID: <20100105034257.DD95E3A563BD@beta.macosforge.org> Revision: 62364 http://trac.macports.org/changeset/62364 Author: blair at macports.org Date: 2010-01-04 19:42:56 -0800 (Mon, 04 Jan 2010) Log Message: ----------- New upstream 1.6.6 release. Modified Paths: -------------- trunk/dports/devel/subversion-python24bindings/Portfile Modified: trunk/dports/devel/subversion-python24bindings/Portfile =================================================================== --- trunk/dports/devel/subversion-python24bindings/Portfile 2010-01-05 03:42:21 UTC (rev 62363) +++ trunk/dports/devel/subversion-python24bindings/Portfile 2010-01-05 03:42:56 UTC (rev 62364) @@ -3,7 +3,7 @@ PortSystem 1.0 name subversion-python24bindings -version 1.6.5 +version 1.6.6 categories devel python platforms darwin maintainers blair @@ -17,9 +17,9 @@ homepage http://subversion.tigris.org/ master_sites ${homepage}/downloads use_bzip2 yes -checksums md5 1a53a0e72bee0bf814f4da83a9b6a636 \ - sha1 c575c5facf972e501049ad47a9be05c5cf228388 \ - rmd160 eb2dad92de044352dbe16e0f9c81cadcd5dcd17e +checksums md5 e5109da756d74c7d98f683f004a539af \ + sha1 01b03d04660fa5d1f76c742b0f8a38bf1ca1a507 \ + rmd160 43cac95b4acfc618dc1a3c1aec284e03d7ca2fb9 distname subversion-${version} dist_subdir subversion -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Mon Jan 4 19:54:21 2010 From: portindex at macports.org (portindex at macports.org) Date: Mon, 4 Jan 2010 19:54:21 -0800 (PST) Subject: [62365] trunk/dports Message-ID: <20100105035423.067623A5652C@beta.macosforge.org> Revision: 62365 http://trac.macports.org/changeset/62365 Author: portindex at macports.org Date: 2010-01-04 19:54:20 -0800 (Mon, 04 Jan 2010) Log Message: ----------- Total number of ports parsed: 6473 Ports successfully parsed: 6473 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex trunk/dports/PortIndex.quick Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-05 03:42:56 UTC (rev 62364) +++ trunk/dports/PortIndex 2010-01-05 03:54:20 UTC (rev 62365) @@ -2103,7 +2103,7 @@ subversion-perlbindings 709 variants {no_bdb no_neon darwin_7} portdir devel/subversion-perlbindings description {Perl bindings for the subversion version control system.} homepage http://subversion.tigris.org/ epoch 0 platforms darwin name subversion-perlbindings depends_lib {port:expat port:neon port:apr port:apr-util port:db46 port:subversion path:bin/perl:perl5 port:gettext port:libiconv port:serf port:cyrus-sasl2 port:sqlite3} long_description {Subversion is a version control system designed to be as similar to cvs(1) as possible, while fixing many outstanding problems with cvs(1). The perl bindings provide access to subversion API from perl.} maintainers geeklair.net:dluke categories {devel perl} version 1.6.6 revision 0 subversion-python24bindings 730 -variants {no_bdb no_neon darwin_7 universal} portdir devel/subversion-python24bindings description {Python bindings for the subversion version control system.} homepage http://subversion.tigris.org/ epoch 0 platforms darwin name subversion-python24bindings depends_lib {port:expat port:neon port:apr port:apr-util port:db46 port:subversion port:python24 port:py-bsddb port:sqlite3 port:gettext port:libiconv port:serf port:cyrus-sasl2} long_description {Subversion is a version control system designed to be as similar to cvs(1) as possible, while fixing many outstanding problems with cvs(1). The python bindings provide access to subversion API from python.} maintainers blair categories {devel python} version 1.6.5 revision 0 +variants {no_bdb no_neon darwin_7 universal} portdir devel/subversion-python24bindings description {Python bindings for the subversion version control system.} homepage http://subversion.tigris.org/ epoch 0 platforms darwin name subversion-python24bindings depends_lib {port:expat port:neon port:apr port:apr-util port:db46 port:subversion port:python24 port:py-bsddb port:sqlite3 port:gettext port:libiconv port:serf port:cyrus-sasl2} long_description {Subversion is a version control system designed to be as similar to cvs(1) as possible, while fixing many outstanding problems with cvs(1). The python bindings provide access to subversion API from python.} maintainers blair categories {devel python} version 1.6.6 revision 0 subversion-python25bindings 714 variants {no_bdb no_neon universal} portdir devel/subversion-python25bindings description {Python bindings for the subversion version control system.} homepage http://subversion.tigris.org/ epoch 0 platforms darwin name subversion-python25bindings depends_lib {port:expat port:neon port:apr port:apr-util port:db46 port:subversion port:python25 port:sqlite3 port:gettext port:libiconv port:serf port:cyrus-sasl2} long_description {Subversion is a version control system designed to be as similar to cvs(1) as possible, while fixing many outstanding problems with cvs(1). The python bindings provide access to subversion API from python.} maintainers nomaintainer categories {devel python} version 1.6.6 revision 0 subversion-python26bindings 729 @@ -7658,6 +7658,8 @@ portdir perl/p5-yaml-syck description {A fast, lightweight YAML loader and dumper} homepage http://search.cpan.org/dist/YAML-Syck/ epoch 0 platforms darwin name p5-yaml-syck depends_lib path:bin/perl:perl5 maintainers FaerieMUD.org:ged long_description {{A fast, lightweight YAML loader and dumper}} categories perl version 0.99 revision 0 p5-yaml-tiny 402 portdir perl/p5-yaml-tiny description {Read/Write YAML files with as little code as possible} homepage http://search.cpan.org/dist/YAML-Tiny/ epoch 0 platforms darwin name p5-yaml-tiny depends_lib {path:bin/perl:perl5 port:p5-yaml port:p5-yaml-syck} maintainers {narf_tm openmaintainer} long_description {{Read/Write YAML files with as little code as possible}} categories perl version 1.41 revision 0 +php5-amf 408 +variants {debug universal} portdir php/php5-amf description {ActionScript Message Format extension} homepage http://pecl.php.net/package/amfext/ epoch 0 platforms darwin name php5-amf depends_lib path:bin/phpize:php5 maintainers {nox openmaintainer} long_description {Allows to encode and decode PHP data in ActionScript Message Format (AMF) version 0 and 3.} categories {php devel} version 0.9.2 revision 0 php5-apc 392 variants {debug universal} portdir php/php5-apc description {Alternative PHP Cache} homepage http://pecl.php.net/package/apc/ epoch 0 platforms darwin name php5-apc depends_lib path:bin/phpize:php5 maintainers {nox openmaintainer} long_description {APC is a free, open, and robust framework for caching and optimizing PHP intermediate code.} categories {php devel} version 3.1.3p1 revision 2 php5-calendar 405 @@ -7690,6 +7692,8 @@ variants {debug universal} portdir php/php5-imagick description {PHP extension to create and modify images with ImageMagick} homepage http://pecl.php.net/package/imagick/ epoch 0 platforms darwin name php5-imagick depends_lib {path:bin/phpize:php5 path:bin/MagickWand-config:ImageMagick} maintainers ryandesign long_description {Imagick is a native PHP extension for creating and modifying images using the ImageMagick API} categories {php graphics} version 2.3.0 revision 2 php5-imap 368 variants {debug macosx universal} depends_build port:cclient portdir php/php5-imap description {a PHP interface to the IMAP protocol} homepage http://www.php.net/imap epoch 0 platforms darwin name php5-imap depends_lib path:bin/phpize:php5 maintainers ryandesign long_description {{a PHP interface to the IMAP protocol}} categories {php mail} version 5.3.1 revision 2 +php5-inclued 418 +variants {debug universal} portdir php/php5-inclued description {Clued-in about your inclueds} homepage http://pecl.php.net/package/inclued/ epoch 0 platforms darwin name php5-inclued depends_lib path:bin/phpize:php5 maintainers {nox openmaintainer} long_description {Allows you trace through and dump the hierarchy of file inclusions and class inheritance at runtime.} categories {php devel} version 0.1.0 revision 0 php5-intl 397 variants {debug universal} portdir php/php5-intl description {Internationalization extension for PHP 5} homepage http://www.php.net/intl epoch 0 platforms darwin name php5-intl depends_lib {path:bin/phpize:php5 port:icu} maintainers {nox openmaintainer} long_description {Internationalization extension implements ICU library functionality in PHP.} categories {php devel} version 5.3.1 revision 2 php5-mbstring 404 @@ -7756,8 +7760,8 @@ variants {debug universal} depends_build {port:libiconv port:libxml2} portdir php/php5-xmlrpc description {a PHP extension for writing XML-RPC clients and servers} homepage http://www.php.net/xmlrpc epoch 0 platforms darwin name php5-xmlrpc depends_lib {path:bin/phpize:php5 port:expat} maintainers ryandesign long_description {{a PHP extension for writing XML-RPC clients and servers}} categories {php textproc} version 5.3.1 revision 2 php5-xsl 482 variants {debug universal} portdir php/php5-xsl description {a PHP interface to libxslt, which implements the XSL standard and lets you perform XSL transformations} homepage http://www.php.net/xsl epoch 0 platforms darwin name php5-xsl depends_lib {path:bin/phpize:php5 port:libxslt} maintainers ryandesign long_description {{a PHP interface to libxslt, which implements the XSL standard and lets you perform XSL transformations}} categories {php textproc} version 5.3.1 revision 2 -php5-xslcache 817 -variants {debug universal} portdir php/php5-xslcache description {A modification of PHP's standard XSL extension that caches the parsed XSL stylesheet representation} homepage http://code.nytimes.com/projects/xslcache epoch 0 platforms darwin name php5-xslcache depends_lib path:bin/phpize:php5 maintainers {nox openmaintainer} long_description {The XSL Cache extension is a modification of PHP's standard XSL extension that caches the parsed XSL stylesheet representation between sessions for 2.5x boost in performance for sites that repeatedly apply the same transform. Although there is still some further work that could be done on the extension, this code is already proving beneficial in production use for a few applications on the New York Times' website.} categories {php www devel} version 0.7.1 revision 0 +php5-xslcache 832 +variants {debug universal} portdir php/php5-xslcache description {A modification of PHP's standard XSL extension that caches the parsed XSL stylesheet representation} homepage http://code.nytimes.com/projects/xslcache epoch 0 platforms darwin name php5-xslcache depends_lib {path:bin/phpize:php5 port:libxslt} maintainers {nox openmaintainer} long_description {The XSL Cache extension is a modification of PHP's standard XSL extension that caches the parsed XSL stylesheet representation between sessions for 2.5x boost in performance for sites that repeatedly apply the same transform. Although there is still some further work that could be done on the extension, this code is already proving beneficial in production use for a few applications on the New York Times' website.} categories {php www devel} version 0.7.1 revision 1 php5-yaz 420 variants {debug universal} portdir php/php5-yaz description {PHP/PECL extension for the Z39.50 protocol} homepage http://pecl.php.net/package/yaz/ epoch 0 platforms darwin name php5-yaz depends_lib {path:bin/phpize:php5 port:re2c port:yaz} maintainers nomaintainer long_description {This extension implements a Z39.50 client for PHP using the YAZ toolkit.} categories {php net databases devel} version 1.0.14 revision 4 php5-zip 334 Modified: trunk/dports/PortIndex.quick =================================================================== (Binary files differ) -------------- next part -------------- An HTML attachment was scrubbed... URL: From toby at macports.org Mon Jan 4 20:19:14 2010 From: toby at macports.org (toby at macports.org) Date: Mon, 4 Jan 2010 20:19:14 -0800 (PST) Subject: [62366] trunk/dports/x11/gtkspell2 Message-ID: <20100105041915.2D2E23A56808@beta.macosforge.org> Revision: 62366 http://trac.macports.org/changeset/62366 Author: toby at macports.org Date: 2010-01-04 20:19:11 -0800 (Mon, 04 Jan 2010) Log Message: ----------- #23069 (Update gtkspell2 to 2.0.16 and apply patch) Modified Paths: -------------- trunk/dports/x11/gtkspell2/Portfile Added Paths: ----------- trunk/dports/x11/gtkspell2/files/ trunk/dports/x11/gtkspell2/files/patch-Makefile.in.diff Modified: trunk/dports/x11/gtkspell2/Portfile =================================================================== --- trunk/dports/x11/gtkspell2/Portfile 2010-01-05 03:54:20 UTC (rev 62365) +++ trunk/dports/x11/gtkspell2/Portfile 2010-01-05 04:19:11 UTC (rev 62366) @@ -4,7 +4,7 @@ PortSystem 1.0 name gtkspell2 -version 2.0.15 +version 2.0.16 categories x11 gnome textproc platforms darwin maintainers nomaintainer @@ -17,9 +17,9 @@ master_sites ${homepage}/download distname gtkspell-${version} -checksums md5 d90a7fe883f29caca149f04f31e2f0f9 \ - sha1 2eaf2de22e2bec39552416b66dcb2d5a7bbb833e \ - rmd160 bdfb9f432c93aec7c43c5df6663bac5270d97b1d +checksums md5 f75dcc9338f182c571b321d37c606a94 \ + sha1 49a3eaff850d119a94fc929635270f01e87cdca1 \ + rmd160 92c29780a43cd6fa2270d5ee77f9bc1ac09e56df depends_build port:pkgconfig \ port:gtk-doc @@ -27,6 +27,8 @@ depends_lib port:enchant \ port:gtk2 +patchfiles patch-Makefile.in.diff + configure.args --disable-debug livecheck.type regex @@ -36,4 +38,3 @@ #NOTES Port is named gtkspell2 due to ongoing development of gtkspell3 # Although there are no ports that require this port, there are a # number of ports that will build with it if it is present. - Added: trunk/dports/x11/gtkspell2/files/patch-Makefile.in.diff =================================================================== --- trunk/dports/x11/gtkspell2/files/patch-Makefile.in.diff (rev 0) +++ trunk/dports/x11/gtkspell2/files/patch-Makefile.in.diff 2010-01-05 04:19:11 UTC (rev 62366) @@ -0,0 +1,11 @@ +--- docs/Makefile.in.orig 2009-12-29 09:40:55.000000000 -0800 ++++ docs/Makefile.in 2009-12-29 09:40:55.000000000 -0800 +@@ -548,7 +548,7 @@ + cd $(srcdir)/html && gtkdoc-mkhtml $(mkhtml_options) $(MKHTML_OPTIONS) $(DOC_MODULE) ../$(DOC_MAIN_SGML_FILE) + test "x$(HTML_IMAGES)" = "x" || ( cd $(srcdir) && cp $(HTML_IMAGES) html ) + @echo 'gtk-doc: Fixing cross-references' +- cd $(srcdir) && gtkdoc-fixxref --module-dir=html --html-dir=$(HTML_DIR) $(FIXXREF_OPTIONS) ++ cd $(srcdir) && gtkdoc-fixxref --module=gtkspell --module-dir=html --html-dir=$(HTML_DIR) $(FIXXREF_OPTIONS) + touch html-build.stamp + + ############## -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Mon Jan 4 20:54:27 2010 From: portindex at macports.org (portindex at macports.org) Date: Mon, 4 Jan 2010 20:54:27 -0800 (PST) Subject: [62367] trunk/dports/PortIndex Message-ID: <20100105045430.124723A56CC5@beta.macosforge.org> Revision: 62367 http://trac.macports.org/changeset/62367 Author: portindex at macports.org Date: 2010-01-04 20:54:25 -0800 (Mon, 04 Jan 2010) Log Message: ----------- Total number of ports parsed: 6473 Ports successfully parsed: 6473 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-05 04:19:11 UTC (rev 62366) +++ trunk/dports/PortIndex 2010-01-05 04:54:25 UTC (rev 62367) @@ -12291,7 +12291,7 @@ gtkmm 434 variants universal portdir x11/gtkmm description {C++ interface to GTK+.} homepage http://www.gtkmm.org/ epoch 0 platforms darwin name gtkmm depends_lib {port:gtk2 port:glibmm path:lib/pkgconfig/cairomm-1.0.pc:cairomm port:pangomm} maintainers {devans openmaintainer} long_description {gtkmm (previously known as Gtk--) is the official C++ interface for the popular GUI library GTK+.} categories {x11 devel} version 2.18.2 revision 0 gtkspell2 568 -variants universal depends_build {port:pkgconfig port:gtk-doc} portdir x11/gtkspell2 description {Library for highlighting and replacement of misspelled words} homepage http://gtkspell.sourceforge.net epoch 0 platforms darwin depends_lib {port:enchant port:gtk2} name gtkspell2 long_description {GtkSpell provides word-processor-style highlighting and replacement of misspelled words in a GtkTextView widget. Right-clicking a misspelled word pops up a menu of suggested replacements.} maintainers nomaintainer categories {x11 gnome textproc} version 2.0.15 revision 0 +variants universal depends_build {port:pkgconfig port:gtk-doc} portdir x11/gtkspell2 description {Library for highlighting and replacement of misspelled words} homepage http://gtkspell.sourceforge.net epoch 0 platforms darwin depends_lib {port:enchant port:gtk2} name gtkspell2 long_description {GtkSpell provides word-processor-style highlighting and replacement of misspelled words in a GtkTextView widget. Right-clicking a misspelled word pops up a menu of suggested replacements.} maintainers nomaintainer categories {x11 gnome textproc} version 2.0.16 revision 0 gxmessage 516 variants universal portdir x11/gxmessage description {a GTK-based xmessage clone.} homepage http://homepages.ihug.co.nz/~trmusson/programs.html#gxmessage epoch 0 platforms darwin name gxmessage depends_lib port:gtk2 long_description {gxmessage opens a window to display a message obtained from the command line, from a file, or from stdin. The window includes a row of buttons, each of which causes the program to exit with a different return code.} maintainers nomaintainer categories x11 version 2.12.1 revision 0 homebank 682 -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Mon Jan 4 20:59:31 2010 From: ryandesign at macports.org (ryandesign at macports.org) Date: Mon, 4 Jan 2010 20:59:31 -0800 Subject: propchange - r39335 svn:log Message-ID: <20100105045931.CA02E7F053BE@mail-out3.apple.com> Author: ryandesign at macports.org (original author: mww at macports.org) Revision: 39335 Property Name: svn:log --- /admin/var/tmp/revprops/pre-39335-ryandesign at macports.org 2010-01-04 20:59:28.000000000 -0800 +++ /admin/var/tmp/revprops/post-39335-ryandesign at macports.org 2010-01-04 20:59:30.000000000 -0800 @@ -1 +1 @@ -version 8.5.4, reintroduce 'aqua' variant for tk +version 8.5.4, reintroduce quartz variant for tk From ryandesign at macports.org Mon Jan 4 20:59:45 2010 From: ryandesign at macports.org (ryandesign at macports.org) Date: Mon, 4 Jan 2010 20:59:45 -0800 Subject: propchange - r41100 svn:log Message-ID: <20100105045946.060237F053C9@mail-out3.apple.com> Author: ryandesign at macports.org (original author: jann at macports.org) Revision: 41100 Property Name: svn:log --- /admin/var/tmp/revprops/pre-41100-ryandesign at macports.org 2010-01-04 20:59:44.000000000 -0800 +++ /admin/var/tmp/revprops/post-41100-ryandesign at macports.org 2010-01-04 20:59:45.000000000 -0800 @@ -1 +1 @@ -Fixed aqua variant, please tell me if I broke something, I tested both variants (plain and quartz) on 10.4 and 10.5 +Fixed quartz variant, please tell me if I broke something, I tested both variants (plain and quartz) on 10.4 and 10.5 From ryandesign at macports.org Mon Jan 4 21:01:56 2010 From: ryandesign at macports.org (ryandesign at macports.org) Date: Mon, 4 Jan 2010 21:01:56 -0800 Subject: propchange - r33103 svn:log Message-ID: <20100105050156.401B77F05490@mail-out3.apple.com> Author: ryandesign at macports.org (original author: mww at macports.org) Revision: 33103 Property Name: svn:log --- /admin/var/tmp/revprops/pre-33103-ryandesign at macports.org 2010-01-04 21:01:54.000000000 -0800 +++ /admin/var/tmp/revprops/post-33103-ryandesign at macports.org 2010-01-04 21:01:55.000000000 -0800 @@ -1 +1 @@ -avoid picking up headers of an already installed tcl (which might be incompatible) +avoid picking up headers of an already installed tk (which might be incompatible) From ryandesign at macports.org Mon Jan 4 21:06:41 2010 From: ryandesign at macports.org (ryandesign at macports.org) Date: Mon, 4 Jan 2010 21:06:41 -0800 Subject: propchange - r33103 svn:log Message-ID: <20100105050642.09D217F05594@mail-out3.apple.com> Author: ryandesign at macports.org (original author: mww at macports.org) Revision: 33103 Property Name: svn:log --- /admin/var/tmp/revprops/pre-33103-ryandesign at macports.org 2010-01-04 21:06:39.000000000 -0800 +++ /admin/var/tmp/revprops/post-33103-ryandesign at macports.org 2010-01-04 21:06:41.000000000 -0800 @@ -1 +1 @@ -avoid picking up headers of an already installed tk (which might be incompatible) +avoid picking up headers of an already installed tcl (which might be incompatible) From ryandesign at macports.org Mon Jan 4 21:07:09 2010 From: ryandesign at macports.org (ryandesign at macports.org) Date: Mon, 4 Jan 2010 21:07:09 -0800 Subject: propchange - r39335 svn:log Message-ID: <20100105050709.50193850BAB5@mail-out4.apple.com> Author: ryandesign at macports.org (original author: mww at macports.org) Revision: 39335 Property Name: svn:log --- /admin/var/tmp/revprops/pre-39335-ryandesign at macports.org 2010-01-04 21:07:07.000000000 -0800 +++ /admin/var/tmp/revprops/post-39335-ryandesign at macports.org 2010-01-04 21:07:09.000000000 -0800 @@ -1 +1 @@ -version 8.5.4, reintroduce quartz variant for tk +version 8.5.4, reintroduce 'aqua' variant for tk (now called +quartz) From kimuraw at macports.org Tue Jan 5 04:30:26 2010 From: kimuraw at macports.org (kimuraw at macports.org) Date: Tue, 5 Jan 2010 04:30:26 -0800 (PST) Subject: [62368] trunk/dports/ruby/rb-rubyosa Message-ID: <20100105123027.E88693A5CDB8@beta.macosforge.org> Revision: 62368 http://trac.macports.org/changeset/62368 Author: kimuraw at macports.org Date: 2010-01-05 04:30:20 -0800 (Tue, 05 Jan 2010) Log Message: ----------- ruby/rb-rubyosa: fix build error on Snow Leopard Modified Paths: -------------- trunk/dports/ruby/rb-rubyosa/Portfile Added Paths: ----------- trunk/dports/ruby/rb-rubyosa/files/patch-src-rbosa.h.diff Modified: trunk/dports/ruby/rb-rubyosa/Portfile =================================================================== --- trunk/dports/ruby/rb-rubyosa/Portfile 2010-01-05 04:54:25 UTC (rev 62367) +++ trunk/dports/ruby/rb-rubyosa/Portfile 2010-01-05 12:30:20 UTC (rev 62368) @@ -16,6 +16,11 @@ variant disable_ruby_libxml2 description "avoid SEGV with ruby-libxml2 >=0.7" { patchfiles patch-src-lib-rbosa.rb.diff } + +platform darwin 10 { + patchfiles-append patch-src-rbosa.h.diff +} + default_variants +disable_ruby_libxml2 checksums md5 175440298a414c4a8d185f8459364a97 \ rmd160 dad775c3482d1487be565fb98494d455baa52390 \ Added: trunk/dports/ruby/rb-rubyosa/files/patch-src-rbosa.h.diff =================================================================== --- trunk/dports/ruby/rb-rubyosa/files/patch-src-rbosa.h.diff (rev 0) +++ trunk/dports/ruby/rb-rubyosa/files/patch-src-rbosa.h.diff 2010-01-05 12:30:20 UTC (rev 62368) @@ -0,0 +1,10 @@ +--- src/rbosa.h.orig 2007-04-12 06:16:57.000000000 +0900 ++++ src/rbosa.h 2010-01-05 21:22:58.000000000 +0900 +@@ -31,6 +31,7 @@ + + #include "osx_ruby.h" + #include ++#define ID RB_ID + #include + + /* rbosa_sdef.c */ -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Tue Jan 5 04:54:35 2010 From: portindex at macports.org (portindex at macports.org) Date: Tue, 5 Jan 2010 04:54:35 -0800 (PST) Subject: [62369] trunk/dports Message-ID: <20100105125439.3F99B3A5E0AB@beta.macosforge.org> Revision: 62369 http://trac.macports.org/changeset/62369 Author: portindex at macports.org Date: 2010-01-05 04:54:32 -0800 (Tue, 05 Jan 2010) Log Message: ----------- Total number of ports parsed: 6473 Ports successfully parsed: 6473 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex trunk/dports/PortIndex.quick Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-05 12:30:20 UTC (rev 62368) +++ trunk/dports/PortIndex 2010-01-05 12:54:32 UTC (rev 62369) @@ -10142,8 +10142,8 @@ portdir ruby/rb-rubygems description {a package management framework for Ruby} homepage http://www.rubygems.org epoch 0 platforms darwin name rb-rubygems depends_lib port:ruby maintainers {mr_bond openmaintainer} long_description {RubyGems is the Ruby standard for publishing and managing third party libraries.} version 1.3.4 categories {ruby devel} revision 0 rb-rubyinline 628 portdir ruby/rb-rubyinline description {Multi-language extension coding within ruby.} homepage http://www.zenspider.com/ZSS/Products/RubyInline/ epoch 0 platforms darwin name rb-rubyinline depends_lib {port:ruby port:rb-rubygems port:rb-hoe} maintainers nomaintainer long_description {Ruby Inline is an analog to Perl's Inline::C. Out of the box, it allows you to embed C/++ external module code in your ruby script directly. By writing simple builder classes, you can teach how to cope with new languages (fortran, perl, whatever). The code is compiled and run on the fly when needed.} categories ruby version 3.7.0 revision 0 -rb-rubyosa 480 -variants {disable_ruby_libxml2 universal} portdir ruby/rb-rubyosa description {RubyOSA provides a bridge from Ruby to the Apple Event Manager.} homepage http://rubyosa.rubyforge.org/ epoch 0 platforms darwin name rb-rubyosa depends_lib port:ruby maintainers kimuraw long_description {RubyOSA provides a bridge from Ruby to the Apple Event Manager. It allows Ruby programs to automate Mac OS X applications in the same way as AppleScript.} categories ruby version 0.4.0 revision 0 +rb-rubyosa 490 +variants {disable_ruby_libxml2 darwin_10 universal} portdir ruby/rb-rubyosa description {RubyOSA provides a bridge from Ruby to the Apple Event Manager.} homepage http://rubyosa.rubyforge.org/ epoch 0 platforms darwin name rb-rubyosa depends_lib port:ruby maintainers kimuraw long_description {RubyOSA provides a bridge from Ruby to the Apple Event Manager. It allows Ruby programs to automate Mac OS X applications in the same way as AppleScript.} categories ruby version 0.4.0 revision 0 rb-rubytoc 370 portdir ruby/rb-rubytoc description {Ruby (subset) to C translator.} homepage http://rubyforge.org/projects/ruby2c epoch 0 platforms darwin name rb-rubytoc depends_lib {port:ruby port:rb-rubygems port:rb-parsetree} maintainers nomaintainer long_description {ruby_to_c translates a static ruby subset to C. Hopefully it works.} categories ruby version 1.0.0.5 revision 0 rb-runt 519 Modified: trunk/dports/PortIndex.quick =================================================================== (Binary files differ) -------------- next part -------------- An HTML attachment was scrubbed... URL: From krischik at macports.org Tue Jan 5 07:46:37 2010 From: krischik at macports.org (krischik at macports.org) Date: Tue, 5 Jan 2010 07:46:37 -0800 (PST) Subject: [62370] trunk/dports/java/glassfishv3/Portfile Message-ID: <20100105154638.543313A658C6@beta.macosforge.org> Revision: 62370 http://trac.macports.org/changeset/62370 Author: krischik at macports.org Date: 2010-01-05 07:46:34 -0800 (Tue, 05 Jan 2010) Log Message: ----------- Final release. Modified Paths: -------------- trunk/dports/java/glassfishv3/Portfile Modified: trunk/dports/java/glassfishv3/Portfile =================================================================== --- trunk/dports/java/glassfishv3/Portfile 2010-01-05 12:54:32 UTC (rev 62369) +++ trunk/dports/java/glassfishv3/Portfile 2010-01-05 15:46:34 UTC (rev 62370) @@ -6,8 +6,7 @@ name glassfishv3 version 3 -epoch 62 -revision 2 +revision 3 categories java maintainers krischik @@ -17,11 +16,11 @@ long_description GlassFish is an open source application server project \ led by Sun Microsystems for the Java EE platform. homepage https://glassfish.dev.java.net/ -master_sites http://download.java.net/glassfish/v${version}/promoted/ -distname glassfish-v${version}-preview-b${epoch} -checksums md5 b0aaae1dc43aaf6b6843bce30b6b34c6 \ - sha1 459390482ae7f39c1bbfee239c3302fe901b9211 \ - rmd160 24595a76251f871b7b9a1e7a2f17fc593bf1e6be +master_sites http://download.java.net/glassfish/v3/release +distname glassfish-v${version} +checksums md5 537b1c6574316ebc4dc69ba6dd26e213 \ + sha1 84f596bc014cfa7fa79c7f54b03b189c8d393160 \ + rmd160 3b6df4be5f40752238b1ce613da64c9ae02abb17 use_zip yes use_configure no -------------- next part -------------- An HTML attachment was scrubbed... URL: From dluke at macports.org Tue Jan 5 07:54:41 2010 From: dluke at macports.org (dluke at macports.org) Date: Tue, 5 Jan 2010 07:54:41 -0800 (PST) Subject: [62371] trunk/dports/devel Message-ID: <20100105155441.9C6753A663DF@beta.macosforge.org> Revision: 62371 http://trac.macports.org/changeset/62371 Author: dluke at macports.org Date: 2010-01-05 07:54:40 -0800 (Tue, 05 Jan 2010) Log Message: ----------- Allow universal building of subversion/subversion-perlbindings (as cyrus-sasl2 builds universal now). Fixes #20333 Modified Paths: -------------- trunk/dports/devel/subversion/Portfile trunk/dports/devel/subversion-perlbindings/Portfile Modified: trunk/dports/devel/subversion/Portfile =================================================================== --- trunk/dports/devel/subversion/Portfile 2010-01-05 15:46:34 UTC (rev 62370) +++ trunk/dports/devel/subversion/Portfile 2010-01-05 15:54:40 UTC (rev 62371) @@ -39,9 +39,6 @@ --disable-neon-version-check --with-serf=${prefix} \ --with-sasl=${prefix} -# port:cyrus-sasl2 is not universal -universal_variant no - use_parallel_build yes build.target all Modified: trunk/dports/devel/subversion-perlbindings/Portfile =================================================================== --- trunk/dports/devel/subversion-perlbindings/Portfile 2010-01-05 15:46:34 UTC (rev 62370) +++ trunk/dports/devel/subversion-perlbindings/Portfile 2010-01-05 15:54:40 UTC (rev 62371) @@ -37,9 +37,6 @@ port:serf port:cyrus-sasl2 \ port:sqlite3 -# cyrus-sasl2 isn't universal yet -universal_variant no - configure.args --with-berkeley-db=:${prefix}/include/db46:${prefix}/lib/db46:db-4.6 \ --with-neon=${prefix} --with-apr=${prefix}/bin/apr-1-config \ --with-apr-util=${prefix}/bin/apu-1-config --without-apxs \ -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Tue Jan 5 08:54:31 2010 From: portindex at macports.org (portindex at macports.org) Date: Tue, 5 Jan 2010 08:54:31 -0800 (PST) Subject: [62372] trunk/dports Message-ID: <20100105165432.3D6673A6A097@beta.macosforge.org> Revision: 62372 http://trac.macports.org/changeset/62372 Author: portindex at macports.org Date: 2010-01-05 08:54:30 -0800 (Tue, 05 Jan 2010) Log Message: ----------- Total number of ports parsed: 6473 Ports successfully parsed: 6473 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex trunk/dports/PortIndex.quick Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-05 15:54:40 UTC (rev 62371) +++ trunk/dports/PortIndex 2010-01-05 16:54:30 UTC (rev 62372) @@ -2096,12 +2096,12 @@ variants html_man_docs portdir devel/stgit description {Push/pop utility on top of GIT} homepage http://www.procode.org/stgit/ depends_run port:git-core epoch 0 platforms darwin depends_lib port:python26 name stgit long_description {StGIT is a Python application providing similar functionality to Quilt (i.e. pushing/popping patches to/from a stack) on top of GIT. These operations are performed using GIT commands and the patches are stored as GIT commit objects, allowing easy merging of the StGIT patches into other repositories using standard GIT functionality. Note that StGIT is not an SCM interface on top of GIT and it expects a previously initialised GIT repository (unless it is cloned using StGIT directly). For standard SCM operations, either use plain GIT commands or the Cogito tool but it is not recommended to mix them with the StGIT commands.} maintainers {boeyms openmaintainer} version 0.15 categories {devel python} revision 1 strigi 718 variants {debug universal} depends_build port:cmake portdir devel/strigi description {Fastest and smallest desktop searching program} homepage http://strigi.sourceforge.net/ epoch 0 platforms darwin depends_lib {port:bzip2 port:clucene port:dbus port:libxml2 port:zlib} name strigi maintainers {gmail.com:clubjuggler openmaintainer} long_description {Strigi is a daemon which uses a very fast and efficient crawler that can index data on your harddrive. Indexing operations are performed without hammering your system, this makes Strigi the fastest and smallest desktop searching program. Strigi can index different file formats, including the contents of the archive files.} categories devel version 0.6.3 revision 2 -subversion 667 -variants {mod_dav_svn no_neon no_bdb mac_os_x_server_mod_dav_svn tools unicode_path bash_completion disable_keychain darwin_7} portdir devel/subversion description {A version control system designed to be a better cvs.} homepage http://subversion.tigris.org/ epoch 0 platforms darwin name subversion depends_lib {port:expat port:neon port:apr port:apr-util port:db46 port:sqlite3 port:gettext port:libiconv port:serf port:cyrus-sasl2} long_description {Subversion is a version control system designed to be as similar to cvs(1) as possible, while fixing many outstanding problems with cvs(1).} maintainers geeklair.net:dluke categories devel version 1.6.6 revision 0 +subversion 677 +variants {mod_dav_svn no_neon no_bdb mac_os_x_server_mod_dav_svn tools unicode_path bash_completion disable_keychain darwin_7 universal} portdir devel/subversion description {A version control system designed to be a better cvs.} homepage http://subversion.tigris.org/ epoch 0 platforms darwin name subversion depends_lib {port:expat port:neon port:apr port:apr-util port:db46 port:sqlite3 port:gettext port:libiconv port:serf port:cyrus-sasl2} long_description {Subversion is a version control system designed to be as similar to cvs(1) as possible, while fixing many outstanding problems with cvs(1).} maintainers geeklair.net:dluke categories devel version 1.6.6 revision 0 subversion-javahlbindings 723 variants {no_bdb no_neon darwin_7 universal} portdir devel/subversion-javahlbindings description {Java (javahl) bindings for the subversion version control system.} homepage http://subversion.tigris.org/ epoch 0 platforms darwin name subversion-javahlbindings depends_lib {port:expat port:neon port:apr port:apr-util port:db46 port:subversion port:junit port:sqlite3 port:gettext port:libiconv port:serf port:cyrus-sasl2} long_description {Subversion is a version control system designed to be as similar to cvs(1) as possible, while fixing many outstanding problems with cvs(1). The java bindings provide access to subversion API from java.} maintainers geeklair.net:dluke categories {devel java} version 1.6.6 revision 0 -subversion-perlbindings 709 -variants {no_bdb no_neon darwin_7} portdir devel/subversion-perlbindings description {Perl bindings for the subversion version control system.} homepage http://subversion.tigris.org/ epoch 0 platforms darwin name subversion-perlbindings depends_lib {port:expat port:neon port:apr port:apr-util port:db46 port:subversion path:bin/perl:perl5 port:gettext port:libiconv port:serf port:cyrus-sasl2 port:sqlite3} long_description {Subversion is a version control system designed to be as similar to cvs(1) as possible, while fixing many outstanding problems with cvs(1). The perl bindings provide access to subversion API from perl.} maintainers geeklair.net:dluke categories {devel perl} version 1.6.6 revision 0 +subversion-perlbindings 719 +variants {no_bdb no_neon darwin_7 universal} portdir devel/subversion-perlbindings description {Perl bindings for the subversion version control system.} homepage http://subversion.tigris.org/ epoch 0 platforms darwin name subversion-perlbindings depends_lib {port:expat port:neon port:apr port:apr-util port:db46 port:subversion path:bin/perl:perl5 port:gettext port:libiconv port:serf port:cyrus-sasl2 port:sqlite3} long_description {Subversion is a version control system designed to be as similar to cvs(1) as possible, while fixing many outstanding problems with cvs(1). The perl bindings provide access to subversion API from perl.} maintainers geeklair.net:dluke categories {devel perl} version 1.6.6 revision 0 subversion-python24bindings 730 variants {no_bdb no_neon darwin_7 universal} portdir devel/subversion-python24bindings description {Python bindings for the subversion version control system.} homepage http://subversion.tigris.org/ epoch 0 platforms darwin name subversion-python24bindings depends_lib {port:expat port:neon port:apr port:apr-util port:db46 port:subversion port:python24 port:py-bsddb port:sqlite3 port:gettext port:libiconv port:serf port:cyrus-sasl2} long_description {Subversion is a version control system designed to be as similar to cvs(1) as possible, while fixing many outstanding problems with cvs(1). The python bindings provide access to subversion API from python.} maintainers blair categories {devel python} version 1.6.6 revision 0 subversion-python25bindings 714 @@ -3736,8 +3736,8 @@ variants darwin portdir java/gant description {A groovy based tool for scripting ant} homepage http://gant.codehaus.org/ epoch 0 depends_run port:groovy platforms darwin name gant long_description {Gant is a tool for scripting Ant tasks using Groovy instead of XML to specify the logic. A Gant specification is a Groovy script and so can bring all the power of Groovy to bear directly, something not possible with Ant scripts. Whilst it might be seen as a competitor to Ant, Gant uses Ant tasks for many of the actions, so Gant is really an alternative way of doing things using Ant, but using a programming language rather than XML to specify the rules.} maintainers breskeby depends_extract bin:unzip:unzip categories {java devel groovy} version 1.9.1 revision 0 gjdb 829 variants universal portdir java/gjdb description {GJDB is a modification of JDB, a debugger that comes with the public JDK (Java Development Kit) from Sun.} homepage http://www.cs.berkeley.edu/~hilfingr/gjdb.html epoch 0 platforms darwin name gjdb long_description {GJDB is a modification of JDB, a debugger that comes with the public JDK (Java Development Kit) from Sun. Unlike Sun's version, it also allows you to debug programs that take input from the terminal. The expression language has been extended to include much more of the language (including numerous features missing from jdb, such as array allocation, initialized array allocation, the .super operator, less fussy overload resolution, and numerous binary numeric and logical operations).} maintainers nomaintainer categories {java devel} version 6.1.2 revision 0 -glassfishv3 371 -portdir java/glassfishv3 description {An open source application server} homepage https://glassfish.dev.java.net/ epoch 62 platforms darwin name glassfishv3 maintainers krischik long_description {GlassFish is an open source application server project led by Sun Microsystems for the Java EE platform.} depends_extract bin:unzip:unzip categories java version 3 revision 2 +glassfishv3 370 +portdir java/glassfishv3 description {An open source application server} homepage https://glassfish.dev.java.net/ epoch 0 platforms darwin name glassfishv3 maintainers krischik long_description {GlassFish is an open source application server project led by Sun Microsystems for the Java EE platform.} depends_extract bin:unzip:unzip categories java version 3 revision 3 gnu-classpath 489 variants {gtk universal} portdir java/gnu-classpath description {Essential libraries for Java.} homepage http://www.gnu.org/software/classpath/classpath.html epoch 0 platforms darwin name gnu-classpath depends_lib port:libiconv long_description {GNU Classpath, Essential Libraries for Java, is a GNU project to create free core class libraries for use with virtual machines and compilers for the java programming language.} maintainers nomaintainer categories java version 0.93 revision 0 gnu-classpath-inetlib 432 Modified: trunk/dports/PortIndex.quick =================================================================== (Binary files differ) -------------- next part -------------- An HTML attachment was scrubbed... URL: From nox at macports.org Tue Jan 5 08:59:31 2010 From: nox at macports.org (nox at macports.org) Date: Tue, 5 Jan 2010 08:59:31 -0800 (PST) Subject: [62373] trunk/dports/devel Message-ID: <20100105165931.303493A6A4BC@beta.macosforge.org> Revision: 62373 http://trac.macports.org/changeset/62373 Author: nox at macports.org Date: 2010-01-05 08:59:29 -0800 (Tue, 05 Jan 2010) Log Message: ----------- Create new port clucene-devel Added Paths: ----------- trunk/dports/devel/clucene-devel/ trunk/dports/devel/clucene-devel/Portfile Added: trunk/dports/devel/clucene-devel/Portfile =================================================================== --- trunk/dports/devel/clucene-devel/Portfile (rev 0) +++ trunk/dports/devel/clucene-devel/Portfile 2010-01-05 16:59:29 UTC (rev 62373) @@ -0,0 +1,47 @@ +# $Id$ + +PortSystem 1.0 +PortGroup archcheck 1.0 +PortGroup cmake 1.0 + +name clucene-devel +set my_name clucene +conflicts clucene +version 3025 +license Apache-2 LGPL-2.1 +categories devel +platforms darwin +maintainers nox openmaintainer +description the open-source, C++ search engine + +long_description \ + CLucene is a high-performance, scalable, cross platform, full-featured, \ + open-source indexing and searching API. Specifically, CLucene is the guts \ + of a search engine, the hard stuff. You write the easy stuff: the UI and \ + the process of selecting and parsing your data files to pump them into the \ + search engine yourself, and any specialized queries to pull it back for \ + display or further processing. + +homepage http://clucene.sourceforge.net/ +fetch.type svn +svn.url https://clucene.svn.sourceforge.net/svnroot/clucene/branches/lucene2_3_2 +svn.revision ${version} + +worksrcdir [file tail ${svn.url}] + +post-patch { + reinplace \ + s/(int32_t)(_LUCENE_CURRTHREADID)/(int64_t)(_LUCENE_CURRTHREADID)/ \ + ${worksrcpath}/src/core/CLucene/index/IndexFileDeleter.cpp \ + ${worksrcpath}/src/core/CLucene/index/IndexWriter.cpp +} + +depends_lib port:zlib + +archcheck.files lib/libz.dylib + +universal_variant no + +livecheck.type regex +livecheck.url ${svn.url} +livecheck.regex {Revision (\d+):} Property changes on: trunk/dports/devel/clucene-devel/Portfile ___________________________________________________________________ Added: svn:keywords + Id Added: svn:eol-style + native -------------- next part -------------- An HTML attachment was scrubbed... URL: From nox at macports.org Tue Jan 5 08:59:41 2010 From: nox at macports.org (nox at macports.org) Date: Tue, 5 Jan 2010 08:59:41 -0800 (PST) Subject: [62374] trunk/dports/mail/cclient/Portfile Message-ID: <20100105165941.AB5E93A6A517@beta.macosforge.org> Revision: 62374 http://trac.macports.org/changeset/62374 Author: nox at macports.org Date: 2010-01-05 08:59:40 -0800 (Tue, 05 Jan 2010) Log Message: ----------- Make whitespace changes to cclient Modified Paths: -------------- trunk/dports/mail/cclient/Portfile Modified: trunk/dports/mail/cclient/Portfile =================================================================== --- trunk/dports/mail/cclient/Portfile 2010-01-05 16:59:29 UTC (rev 62373) +++ trunk/dports/mail/cclient/Portfile 2010-01-05 16:59:40 UTC (rev 62374) @@ -1,72 +1,76 @@ # $Id$ -PortSystem 1.0 +PortSystem 1.0 -name cclient -version 2007d -categories mail -maintainers nomaintainer -description UW IMAP c-client library -long_description \ - C-client is a common API for accessing mailboxes. It is \ - used internally by the popular PINE mail reader as well as the \ - University of Washington's IMAP server. -homepage http://www.washington.edu/imap/ -platforms darwin -master_sites ftp://ftp.cac.washington.edu/imap/ \ - ftp://ftp.cac.washington.edu/imap/old/ \ - macports:pguyot -distname imap-${version} -dist_subdir imap-uw -worksrcdir imap-${version} -checksums md5 ec27cd4c5972b981bb96e9da0430af53 \ - sha1 c77a3feaa68fa8a73eea85718e66eba9ae3e222c \ - rmd160 d403678f83e761237cbdf62b4bcde466cdf85123 +name cclient +version 2007d +platforms darwin +categories mail +maintainers nomaintainer +description UW IMAP c-client library -depends_lib port:openssl \ - lib:libz:zlib \ - lib:libgssapi_krb5:kerberos5 +long_description \ + C-client is a common API for accessing mailboxes. It is used internally by \ + the popular PINE mail reader as well as the University of Washington's \ + IMAP server. -use_configure no +homepage http://www.washington.edu/imap/ +master_sites ftp://ftp.cac.washington.edu/imap/ \ + ftp://ftp.cac.washington.edu/imap/old/ \ + macports:pguyot +distname imap-${version} +dist_subdir imap-uw +checksums md5 ec27cd4c5972b981bb96e9da0430af53 \ + sha1 c77a3feaa68fa8a73eea85718e66eba9ae3e222c \ + rmd160 d403678f83e761237cbdf62b4bcde466cdf85123 + +depends_lib port:openssl \ + lib:libz:zlib \ + lib:libgssapi_krb5:kerberos5 + +worksrcdir imap-${version} + post-patch { - reinplace "s|/System/Library/OpenSSL SSLINCLUDE=/usr/include/openssl SSLLIB=/usr/lib|${prefix}/etc/openssl SSLINCLUDE=${prefix}/include SSLLIB=${prefix}/lib|g" ${worksrcpath}/Makefile - reinplace "s| -Wno-pointer-sign||g" ${worksrcpath}/src/osdep/unix/Makefile + reinplace "s|/System/Library/OpenSSL SSLINCLUDE=/usr/include/openssl SSLLIB=/usr/lib|${prefix}/etc/openssl SSLINCLUDE=${prefix}/include SSLLIB=${prefix}/lib|g" ${worksrcpath}/Makefile + reinplace "s| -Wno-pointer-sign||g" ${worksrcpath}/src/osdep/unix/Makefile } -build.target oxp -build.args EXTRACFLAGS=-fno-common CC=${configure.cc} +use_configure no +build.target oxp +build.args EXTRACFLAGS=-fno-common CC=${configure.cc} + +use_parallel_build no + +destroot { + xinstall -m 755 -d ${destroot}${prefix}/include/c-client + xinstall -m 644 -W ${worksrcpath}/c-client \ + c-client.h dummy.h env.h env_unix.h fdstring.h flockcyg.h flocksim.h \ + flstring.h fs.h ftl.h imap4r1.h linkage.c linkage.h mail.h \ + misc.h netmsg.h newsrc.h nl.h nntp.h osdep.h \ + pseudo.h rfc822.h smtp.h sslio.h tcp.h tcp_unix.h unix.h \ + utf8.h utf8aux.h \ + ${destroot}${prefix}/include/c-client + xinstall -m 644 ${worksrcpath}/c-client/c-client.a \ + ${destroot}${prefix}/lib/libc-client4.a + system "cd ${destroot}${prefix}/lib/ && ranlib libc-client4.a" +} + +platform darwin 10 { + patchfiles-append patch-Makefile-fixpam +} + variant ssl_plaintext description {Allow plaintext passwords over SSL} { - patchfiles patch-Makefile - build.args-append SSLTYPE=unix + patchfiles patch-Makefile + build.args-append SSLTYPE=unix } variant universal { - build.args-delete EXTRACFLAGS="-fno-common" - build.args-append EXTRACFLAGS="${configure.universal_cflags}" EXTRALDFLAGS="${configure.universal_ldflags}" + build.args-delete EXTRACFLAGS="-fno-common" + build.args-append EXTRACFLAGS="${configure.universal_cflags}" EXTRALDFLAGS="${configure.universal_ldflags}" } -destroot { - xinstall -m 755 -d ${destroot}${prefix}/include/c-client - xinstall -m 644 -W ${worksrcpath}/c-client \ - c-client.h dummy.h env.h env_unix.h fdstring.h flockcyg.h flocksim.h \ - flstring.h fs.h ftl.h imap4r1.h linkage.c linkage.h mail.h \ - misc.h netmsg.h newsrc.h nl.h nntp.h osdep.h \ - pseudo.h rfc822.h smtp.h sslio.h tcp.h tcp_unix.h unix.h \ - utf8.h utf8aux.h \ - ${destroot}${prefix}/include/c-client - xinstall -m 644 ${worksrcpath}/c-client/c-client.a \ - ${destroot}${prefix}/lib/libc-client4.a - system "cd ${destroot}${prefix}/lib/ && ranlib libc-client4.a" -} - livecheck.type regex livecheck.url http://ftp.ntua.gr/pub/net/mail/imap/?C=M&O=D livecheck.regex {imap-(\d+(?:[a-z]\d*)?)\.tar} - -use_parallel_build no - -platform darwin 10 { - patchfiles-append patch-Makefile-fixpam -} -------------- next part -------------- An HTML attachment was scrubbed... URL: From nox at macports.org Tue Jan 5 08:59:56 2010 From: nox at macports.org (nox at macports.org) Date: Tue, 5 Jan 2010 08:59:56 -0800 (PST) Subject: [62375] trunk/dports/mail/cclient/Portfile Message-ID: <20100105165957.1CC7F3A6A57E@beta.macosforge.org> Revision: 62375 http://trac.macports.org/changeset/62375 Author: nox at macports.org Date: 2010-01-05 08:59:55 -0800 (Tue, 05 Jan 2010) Log Message: ----------- Update cclient to 2007e (#18061, #20214) There is no longer a darwin_10 variant as the applied patch is just a include path fix. The documentation is now installed. Modified Paths: -------------- trunk/dports/mail/cclient/Portfile Modified: trunk/dports/mail/cclient/Portfile =================================================================== --- trunk/dports/mail/cclient/Portfile 2010-01-05 16:59:40 UTC (rev 62374) +++ trunk/dports/mail/cclient/Portfile 2010-01-05 16:59:55 UTC (rev 62375) @@ -1,11 +1,13 @@ # $Id$ PortSystem 1.0 +PortGroup archcheck 1.0 name cclient -version 2007d +version 2007e +license Apache-2 platforms darwin -categories mail +categories mail devel maintainers nomaintainer description UW IMAP c-client library @@ -15,36 +17,39 @@ IMAP server. homepage http://www.washington.edu/imap/ -master_sites ftp://ftp.cac.washington.edu/imap/ \ - ftp://ftp.cac.washington.edu/imap/old/ \ - macports:pguyot +master_sites ftp://ftp.cac.washington.edu/imap/ distname imap-${version} dist_subdir imap-uw -checksums md5 ec27cd4c5972b981bb96e9da0430af53 \ - sha1 c77a3feaa68fa8a73eea85718e66eba9ae3e222c \ - rmd160 d403678f83e761237cbdf62b4bcde466cdf85123 +checksums md5 7903800dc2604000016de070e0c55840 \ + sha1 ab8bd27de41926acb257b813a95c10d2ab04c6e8 \ + rmd160 6a392f3ebf5b72686a0a232333a5670c76c173d6 depends_lib port:openssl \ - lib:libz:zlib \ + port:zlib \ lib:libgssapi_krb5:kerberos5 worksrcdir imap-${version} post-patch { - reinplace "s|/System/Library/OpenSSL SSLINCLUDE=/usr/include/openssl SSLLIB=/usr/lib|${prefix}/etc/openssl SSLINCLUDE=${prefix}/include SSLLIB=${prefix}/lib|g" ${worksrcpath}/Makefile - reinplace "s| -Wno-pointer-sign||g" ${worksrcpath}/src/osdep/unix/Makefile + reinplace -E /SSLLIB/s|/usr|${prefix}|g ${worksrcpath}/Makefile + reinplace -E /SSLLIB/s|/System/Library/OpenSSL|${prefix}/etc/openssl|g \ + ${worksrcpath}/Makefile } +archcheck.files \ + lib/libssl.dylib \ + lib/libz.dylib + use_configure no build.target oxp -build.args EXTRACFLAGS=-fno-common CC=${configure.cc} +build.args CC=${configure.cc} use_parallel_build no destroot { - xinstall -m 755 -d ${destroot}${prefix}/include/c-client + xinstall -d ${destroot}${prefix}/include/c-client xinstall -m 644 -W ${worksrcpath}/c-client \ c-client.h dummy.h env.h env_unix.h fdstring.h flockcyg.h flocksim.h \ flstring.h fs.h ftl.h imap4r1.h linkage.c linkage.h mail.h \ @@ -54,10 +59,16 @@ ${destroot}${prefix}/include/c-client xinstall -m 644 ${worksrcpath}/c-client/c-client.a \ ${destroot}${prefix}/lib/libc-client4.a - system "cd ${destroot}${prefix}/lib/ && ranlib libc-client4.a" + system "ranlib ${destroot}${prefix}/lib/libc-client4.a" + + set docdir ${prefix}/share/doc/${name} + xinstall -d ${destroot}${docdir} + xinstall -m 644 -W ${worksrcpath} LICENSE.txt NOTICE SUPPORT \ + ${destroot}${docdir} + copy ${worksrcpath}/docs ${destroot}${docdir} } -platform darwin 10 { +if {[rpm-vercomp ${os.version} 10] >= 0} { patchfiles-append patch-Makefile-fixpam } @@ -67,7 +78,6 @@ } variant universal { - build.args-delete EXTRACFLAGS="-fno-common" build.args-append EXTRACFLAGS="${configure.universal_cflags}" EXTRALDFLAGS="${configure.universal_ldflags}" } -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Tue Jan 5 09:54:39 2010 From: portindex at macports.org (portindex at macports.org) Date: Tue, 5 Jan 2010 09:54:39 -0800 (PST) Subject: [62376] trunk/dports Message-ID: <20100105175443.B25173A7065B@beta.macosforge.org> Revision: 62376 http://trac.macports.org/changeset/62376 Author: portindex at macports.org Date: 2010-01-05 09:54:38 -0800 (Tue, 05 Jan 2010) Log Message: ----------- Total number of ports parsed: 6474 Ports successfully parsed: 6474 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex trunk/dports/PortIndex.quick Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-05 16:59:55 UTC (rev 62375) +++ trunk/dports/PortIndex 2010-01-05 17:54:38 UTC (rev 62376) @@ -1130,6 +1130,8 @@ portdir devel/clog description {cLog is a cross-platform C logging library.} homepage http://www.webgroupmedia.com/software/ epoch 0 platforms darwin name clog maintainers nomaintainer long_description {cLog is a cross-platform C logging library. It is designed to log to files and can also log to a callback function.} version 20030825 categories devel revision 0 clucene 460 variants universal portdir devel/clucene description {Clucene is a C++ port of Lucene: the high-performance, full-featured text search engine written in Java.} homepage http://clucene.sourceforge.net/ epoch 0 platforms darwin name clucene long_description {{Clucene is a C++ port of Lucene: the high-performance, full-featured text search engine written in Java.}} maintainers {free.fr:dinh.viet.hoa openmaintainer} categories devel version 0.9.21b revision 0 +clucene-devel 744 +variants debug depends_build port:cmake portdir devel/clucene-devel depends_fetch port:subversion description {the open-source, C++ search engine} homepage http://clucene.sourceforge.net/ epoch 0 platforms darwin name clucene-devel depends_lib port:zlib maintainers {nox openmaintainer} long_description {CLucene is a high-performance, scalable, cross platform, full-featured, open-source indexing and searching API. Specifically, CLucene is the guts of a search engine, the hard stuff. You write the easy stuff: the UI and the process of selecting and parsing your data files to pump them into the search engine yourself, and any specialized queries to pull it back for display or further processing.} categories devel version 3025 revision 0 cmake 504 variants universal depends_build {port:libidn port:openssl} portdir devel/cmake description {Cross-platform make} homepage http://www.cmake.org/ epoch 0 platforms {darwin freebsd} name cmake long_description {An extensible, open-source system that manages the build process in an operating system and compiler independent manner. Unlike many cross-platform systems, CMake is designed to be used in conjunction with the native build environment.} maintainers css categories devel version 2.8.0 revision 0 cmockery 375 @@ -4694,8 +4696,8 @@ variants {mysql universal} portdir mail/bmf description {Bayesian Mail Filter} homepage http://bmf.sourceforge.net/ epoch 0 platforms {darwin freebsd} name bmf long_description {bmf is a self contained and extremely efficient Bayesian mail filter. See Paul Graham's article {A Plan for Spam} for background information. It aims to be faster, smaller, and more versatile than similar applications.} maintainers nomaintainer categories mail version 0.9.4 revision 0 bogofilter 532 variants universal portdir mail/bogofilter description {Fast Bayesian Spam Filter} homepage http://bogofilter.sourceforge.net/ epoch 0 platforms darwin name bogofilter depends_lib {port:sqlite3 port:libiconv port:gsl} long_description {Bogofilter is a mail filter that classifies mail as spam or ham (non-spam) by a statistical analysis of the message's header and content (body). The program is able to learn from the user's classifications and corrections.} maintainers gmail.com:chenggao categories mail version 1.2.1 revision 0 -cclient 498 -variants {ssl_plaintext universal darwin_10} portdir mail/cclient description {UW IMAP c-client library} homepage http://www.washington.edu/imap/ epoch 0 platforms darwin name cclient depends_lib {port:openssl lib:libz:zlib lib:libgssapi_krb5:kerberos5} long_description {C-client is a common API for accessing mailboxes. It is used internally by the popular PINE mail reader as well as the University of Washington's IMAP server.} maintainers nomaintainer categories mail version 2007d revision 0 +cclient 492 +variants {ssl_plaintext universal} portdir mail/cclient description {UW IMAP c-client library} homepage http://www.washington.edu/imap/ epoch 0 platforms darwin name cclient depends_lib {port:openssl port:zlib lib:libgssapi_krb5:kerberos5} long_description {C-client is a common API for accessing mailboxes. It is used internally by the popular PINE mail reader as well as the University of Washington's IMAP server.} maintainers nomaintainer categories {mail devel} version 2007e revision 0 clamsmtp 603 variants universal portdir mail/clamsmtp description {SMTP filter checking for viruses using the ClamAV anti-virus} homepage http://memberwebs.com/nielsen/software/clamsmtp/ epoch 0 depends_run bin:clamd:clamav platforms darwin name clamsmtp long_description {ClamSMTP is an SMTP filter that allows you to check for viruses using the ClamAV anti-virus software. It accepts SMTP connections and forwards the SMTP commands and responses to another SMTP server. The 'DATA' email body is intercepted and scanned before forwarding.} maintainers nomaintainer categories {mail security} version 1.6 revision 0 claws-mail 658 Modified: trunk/dports/PortIndex.quick =================================================================== (Binary files differ) -------------- next part -------------- An HTML attachment was scrubbed... URL: From alakazam at macports.org Tue Jan 5 10:05:39 2010 From: alakazam at macports.org (alakazam at macports.org) Date: Tue, 5 Jan 2010 10:05:39 -0800 (PST) Subject: [62377] trunk/dports/python Message-ID: <20100105180539.CFE553A71679@beta.macosforge.org> Revision: 62377 http://trac.macports.org/changeset/62377 Author: alakazam at macports.org Date: 2010-01-05 10:05:37 -0800 (Tue, 05 Jan 2010) Log Message: ----------- Add portfile for the Django debug toolbar. Added Paths: ----------- trunk/dports/python/py26-django-debug-toolbar/ trunk/dports/python/py26-django-debug-toolbar/Portfile Added: trunk/dports/python/py26-django-debug-toolbar/Portfile =================================================================== --- trunk/dports/python/py26-django-debug-toolbar/Portfile (rev 0) +++ trunk/dports/python/py26-django-debug-toolbar/Portfile 2010-01-05 18:05:37 UTC (rev 62377) @@ -0,0 +1,27 @@ +# $Id$ + +PortSystem 1.0 +PortGroup python26 1.0 + +name py26-django-debug-toolbar +version 0.8.1 +categories-append www +platforms darwin +maintainers alakazam +homepage http://github.com/robhudson/django-debug-toolbar +description Configurable debug information for the Django Framework. +long_description A configurable set of panels for the Django Framework \ + that display various debug information about the current \ + request/response. + +master_sites http://pypi.python.org/packages/source/d/django-debug-toolbar/ +distname django-debug-toolbar-${version} +checksums md5 6b18cdb479d9414beb9c378779ffd8d1 \ + sha1 3b972ec6861d5b0ae33e13327d58bb1015e96880 \ + rmd160 090be6b91a999b68aecb7d2561c3d6cc9845eed3 + +depends_lib-append port:py26-setuptools + +livecheck.type regex +livecheck.url http://pypi.python.org/pypi/django-debug-toolbar +livecheck.regex "django-debug-toolbar (0\.\[0-9\]+\.\[0-9\]+)" -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Tue Jan 5 10:54:29 2010 From: portindex at macports.org (portindex at macports.org) Date: Tue, 5 Jan 2010 10:54:29 -0800 (PST) Subject: [62378] trunk/dports Message-ID: <20100105185433.055153A7569B@beta.macosforge.org> Revision: 62378 http://trac.macports.org/changeset/62378 Author: portindex at macports.org Date: 2010-01-05 10:54:28 -0800 (Tue, 05 Jan 2010) Log Message: ----------- Total number of ports parsed: 6475 Ports successfully parsed: 6475 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex trunk/dports/PortIndex.quick Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-05 18:05:37 UTC (rev 62377) +++ trunk/dports/PortIndex 2010-01-05 18:54:28 UTC (rev 62378) @@ -9304,6 +9304,8 @@ portdir python/py26-distutils-extra description {enhancements to the Python build system} homepage http://packages.debian.org/source/sid/python-distutils-extra epoch 0 platforms darwin depends_lib {port:python26 port:intltool} name py26-distutils-extra maintainers nomaintainer long_description {{enhancements to the Python build system}} version 1.91.2 categories python revision 0 py26-django 434 variants bash_completion portdir python/py26-django description {Django is a high-level Python Web framework} homepage http://www.djangoproject.com epoch 0 platforms darwin depends_lib {port:python26 port:py26-setuptools} name py26-django long_description {Django is a high-level Python Web framework that encourages rapid development and clean, pragmatic design.} maintainers arthurk version 1.1.1 categories {python www} revision 0 +py26-django-debug-toolbar 493 +portdir python/py26-django-debug-toolbar description {Configurable debug information for the Django Framework.} homepage http://github.com/robhudson/django-debug-toolbar epoch 0 platforms darwin depends_lib {port:python26 port:py26-setuptools} name py26-django-debug-toolbar maintainers alakazam long_description {A configurable set of panels for the Django Framework that display various debug information about the current request/response.} version 0.8.1 categories {python www} revision 0 py26-django-extensions 430 portdir python/py26-django-extensions description {Global custom management extensions for the Django Framework.} homepage http://code.google.com/p/django-command-extensions/ epoch 0 platforms darwin depends_lib {port:python26 port:py26-setuptools} name py26-django-extensions maintainers alakazam long_description {{Global custom management extensions for the Django Framework.}} version 0.4.1 categories {python www} revision 0 py26-dns 369 Modified: trunk/dports/PortIndex.quick =================================================================== (Binary files differ) -------------- next part -------------- An HTML attachment was scrubbed... URL: From tommyd at macports.org Tue Jan 5 13:12:56 2010 From: tommyd at macports.org (tommyd at macports.org) Date: Tue, 5 Jan 2010 13:12:56 -0800 (PST) Subject: [62379] trunk/dports/games/fife/Portfile Message-ID: <20100105211257.6940A3A7F41C@beta.macosforge.org> Revision: 62379 http://trac.macports.org/changeset/62379 Author: tommyd at macports.org Date: 2010-01-05 13:12:53 -0800 (Tue, 05 Jan 2010) Log Message: ----------- * the main category has to come first Modified Paths: -------------- trunk/dports/games/fife/Portfile Modified: trunk/dports/games/fife/Portfile =================================================================== --- trunk/dports/games/fife/Portfile 2010-01-05 18:54:28 UTC (rev 62378) +++ trunk/dports/games/fife/Portfile 2010-01-05 21:12:53 UTC (rev 62379) @@ -5,7 +5,7 @@ name fife version 0.2.999 maintainers tommyd -categories python games +categories games python platforms darwin homepage http://www.fifengine.de/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From easieste at macports.org Tue Jan 5 13:33:40 2010 From: easieste at macports.org (easieste at macports.org) Date: Tue, 5 Jan 2010 13:33:40 -0800 (PST) Subject: [62380] trunk/dports/lang/sbcl Message-ID: <20100105213341.0F3D63A8099F@beta.macosforge.org> Revision: 62380 http://trac.macports.org/changeset/62380 Author: easieste at macports.org Date: 2010-01-05 13:33:36 -0800 (Tue, 05 Jan 2010) Log Message: ----------- Comment out further SB-POSIX tests reported to having failed under Snow Leopard. Modified Paths: -------------- trunk/dports/lang/sbcl/Portfile trunk/dports/lang/sbcl/files/patch-posix-tests.diff Modified: trunk/dports/lang/sbcl/Portfile =================================================================== --- trunk/dports/lang/sbcl/Portfile 2010-01-05 21:12:53 UTC (rev 62379) +++ trunk/dports/lang/sbcl/Portfile 2010-01-05 21:33:36 UTC (rev 62380) @@ -4,7 +4,7 @@ name sbcl version 1.0.33 -revision 2 +revision 3 set subrevision "" categories lang maintainers gwright waqar easieste Modified: trunk/dports/lang/sbcl/files/patch-posix-tests.diff =================================================================== --- trunk/dports/lang/sbcl/files/patch-posix-tests.diff 2010-01-05 21:12:53 UTC (rev 62379) +++ trunk/dports/lang/sbcl/files/patch-posix-tests.diff 2010-01-05 21:33:36 UTC (rev 62380) @@ -1,5 +1,5 @@ --- contrib/sb-posix/posix-tests.lisp.orig 2009-10-25 09:24:59.000000000 +0100 -+++ contrib/sb-posix/posix-tests.lisp 2010-01-03 15:25:54.000000000 +0100 ++++ contrib/sb-posix/posix-tests.lisp 2010-01-05 22:17:14.000000000 +0100 @@ -103,6 +103,7 @@ (sb-posix:syscall-errno c))) #.sb-posix::eexist) @@ -24,7 +24,15 @@ (deftest stat-mode.1 (with-stat-mode (mode *test-directory*) (sb-posix:s-isreg mode)) -@@ -506,6 +509,7 @@ +@@ -347,6 +350,7 @@ + (sb-posix:s-isblk mode)) + nil) + ++#-darwin + (deftest stat-mode.5 + (with-stat-mode (mode *test-directory*) + (sb-posix:s-isfifo mode)) +@@ -506,6 +510,7 @@ (sb-posix:closedir dir)))) nil) @@ -32,3 +40,11 @@ (deftest readdir.1 (let ((dir (sb-posix:opendir "/"))) (unwind-protect +@@ -662,6 +667,7 @@ + #.(concatenate 'string "/" (make-string 255 :initial-element #\a))) + + ;; The error tests are in the order of exposition from SUSv3. ++ #-darwin + (deftest readlink.error.1 + (let* ((subdir-pathname (merge-pathnames + (make-pathname -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Tue Jan 5 13:54:42 2010 From: portindex at macports.org (portindex at macports.org) Date: Tue, 5 Jan 2010 13:54:42 -0800 (PST) Subject: [62381] trunk/dports/PortIndex Message-ID: <20100105215445.9F09E3A8286F@beta.macosforge.org> Revision: 62381 http://trac.macports.org/changeset/62381 Author: portindex at macports.org Date: 2010-01-05 13:54:40 -0800 (Tue, 05 Jan 2010) Log Message: ----------- Total number of ports parsed: 6475 Ports successfully parsed: 6475 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-05 21:33:36 UTC (rev 62380) +++ trunk/dports/PortIndex 2010-01-05 21:54:40 UTC (rev 62381) @@ -2533,7 +2533,7 @@ fbg 549 variants universal portdir games/fbg description {Puzzle game similar to Tetris but with improved graphics.} homepage http://fbg.sourceforge.net/ epoch 0 platforms darwin name fbg depends_lib {path:lib/pkgconfig/sdl.pc:libsdl port:physfs} long_description {Falling Block Game is a puzzle game that is similar to the Hasbro classic, Tetris. Many such games have been released for a variety of platforms, but most have passable graphics or poor gameplay/piece control.} maintainers {jmpp openmaintainer} categories {games aqua} version 0.9 revision 0 fife 480 -depends_build port:scons portdir games/fife description {The FIFE game engine} homepage http://www.fifengine.de/ epoch 0 platforms darwin depends_lib {port:python26 port:libsdl port:libsdl_image port:libsdl_ttf port:boost port:libogg port:libvorbis port:libguichan port:swig-python} name fife maintainers tommyd long_description {FIFE stands for Flexible Isometric Free Engine and is a cross platform game creation framework.} categories {python games} version 0.2.999 revision 0 +depends_build port:scons portdir games/fife description {The FIFE game engine} homepage http://www.fifengine.de/ epoch 0 platforms darwin depends_lib {port:python26 port:libsdl port:libsdl_image port:libsdl_ttf port:boost port:libogg port:libvorbis port:libguichan port:swig-python} name fife maintainers tommyd long_description {FIFE stands for Flexible Isometric Free Engine and is a cross platform game creation framework.} categories {games python} version 0.2.999 revision 0 fizmo 1078 portdir games/fizmo description {Console-based Z-Machine interpreter for Infocom games.} homepage http://spellbreaker.org/~chrender/fizmo/ epoch 0 platforms {darwin linux} name fizmo depends_lib {port:ncursesw port:libsdl_sound port:libsndfile port:libxml2} maintainers spellbreaker.org:Christoph.Ender long_description {Fizmo is a Z-Machine interpreter (Fizmo Interprets Z-Machine Opcodes) which allows you to run Infocom- and most other Z-Machine based games -- except version 6 -- on POSIX-like systems which provide a ncursesw (note the 'w') library. It has been successfully compiled on Debian based Linux, Mac OS X (with MacPorts providing ncursesw) and Windows (using Cygwin and a self-compiled ncursesw library). This is a console-style application, meaning that it runs in textmode and does not provide any GUI whatsoever. For more information about Infocom and interactive fiction, see the 'New to IF' section at http://www.ifarchive.org. Games are available from http://www.ifarchive.org/indexes/if-archiveXgamesXzcode.html} categories games version 0.6.5 revision 0 flobopuyo 350 @@ -4587,7 +4587,7 @@ ruby19 735 variants {nosuffix c_api_docs tk mactk universal} portdir lang/ruby19 description {Powerful and clean object-oriented scripting language} homepage http://www.ruby-lang.org/ epoch 0 platforms darwin name ruby19 depends_lib {port:libiconv port:readline port:openssl port:zlib port:ncurses} long_description {Ruby is the interpreted scripting language for quick and easy object-oriented programming. It has many features to process text files and to do system management tasks (as in Perl). It is simple, straight-forward, extensible, and portable. Version 1.9 contains a new VM called YARV, is faster and slightly incompatible from version 1.8.} maintainers {febeling openmaintainer} categories {lang ruby} version 1.9.1-p376 revision 0 sbcl 594 -variants {powerpc darwin_8_i386 darwin_9_i386 darwin_10_i386 html threads} portdir lang/sbcl description {The Steel Bank Common Lisp system} homepage http://www.sbcl.org epoch 0 platforms darwin name sbcl long_description {Steel Bank Common Lisp (SBCL) is a Open Source development system for ANSI Common Lisp. It provides an interactive environment including an integrated native compiler, interpreter, and debugger. (And it, and its generated code, can also play nicely with Unix when running noninteractively.)} maintainers {gwright waqar easieste} categories lang version 1.0.33 revision 2 +variants {powerpc darwin_8_i386 darwin_9_i386 darwin_10_i386 html threads} portdir lang/sbcl description {The Steel Bank Common Lisp system} homepage http://www.sbcl.org epoch 0 platforms darwin name sbcl long_description {Steel Bank Common Lisp (SBCL) is a Open Source development system for ANSI Common Lisp. It provides an interactive environment including an integrated native compiler, interpreter, and debugger. (And it, and its generated code, can also play nicely with Unix when running noninteractively.)} maintainers {gwright waqar easieste} categories lang version 1.0.33 revision 3 scala 518 portdir lang/scala description {The Scala Programming Language} homepage http://www.scala-lang.org/ epoch 0 platforms darwin name scala maintainers blair long_description {Scala is a modern multi-paradigm programming language designed to express common programming patterns in a concise, elegant, and type-safe way. It smoothly integrates features of object-oriented and functional languages. It runs inside a Java Virtual Machine and is fully interoperable with Java.} version 2.7.7 categories {lang java} revision 0 scala-devel 557 -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Tue Jan 5 15:15:37 2010 From: ryandesign at macports.org (ryandesign at macports.org) Date: Tue, 5 Jan 2010 15:15:37 -0800 (PST) Subject: [62382] trunk/dports/java/glassfishv3/Portfile Message-ID: <20100105231537.E42703A87FEB@beta.macosforge.org> Revision: 62382 http://trac.macports.org/changeset/62382 Author: ryandesign at macports.org Date: 2010-01-05 15:15:36 -0800 (Tue, 05 Jan 2010) Log Message: ----------- glassfishv3: put back the epoch line that was removed in r62370. The epoch line can never be removed from a portfile. Revision Links: -------------- http://trac.macports.org/changeset/62370 Modified Paths: -------------- trunk/dports/java/glassfishv3/Portfile Modified: trunk/dports/java/glassfishv3/Portfile =================================================================== --- trunk/dports/java/glassfishv3/Portfile 2010-01-05 21:54:40 UTC (rev 62381) +++ trunk/dports/java/glassfishv3/Portfile 2010-01-05 23:15:36 UTC (rev 62382) @@ -5,6 +5,7 @@ PortSystem 1.0 name glassfishv3 +epoch 62 version 3 revision 3 -------------- next part -------------- An HTML attachment was scrubbed... URL: From toby at macports.org Tue Jan 5 15:50:35 2010 From: toby at macports.org (toby at macports.org) Date: Tue, 5 Jan 2010 15:50:35 -0800 (PST) Subject: [62383] trunk/dports/devel Message-ID: <20100105235035.EF5D93A8A67D@beta.macosforge.org> Revision: 62383 http://trac.macports.org/changeset/62383 Author: toby at macports.org Date: 2010-01-05 15:50:32 -0800 (Tue, 05 Jan 2010) Log Message: ----------- #22192 (gource 0.15 New port for gource) Added Paths: ----------- trunk/dports/devel/gource/ trunk/dports/devel/gource/Portfile Added: trunk/dports/devel/gource/Portfile =================================================================== --- trunk/dports/devel/gource/Portfile (rev 0) +++ trunk/dports/devel/gource/Portfile 2010-01-05 23:50:32 UTC (rev 62383) @@ -0,0 +1,24 @@ +# $Id$ + +PortSystem 1.0 + +name gource +version 0.23 +categories devel +maintainers nomaintainer +description Version Control Visualization Tool +long_description Gource is a tool that can be used to visualize who \ + committed when, and to which files. It supports git, CVS, \ + Mercurial, and svn. +homepage http://code.google.com/p/gource/ +platforms darwin +master_sites googlecode +checksums md5 8373e2a468af026a4a5eb1f2a6d56166 \ + sha1 92bad90b8e6dd622699086e1366d0a0ba208312a \ + rmd160 6500eaa1cf27d68dfb5550ef019e591547f11274 +depends_lib port:ftgl \ + port:libsdl \ + port:libsdl_image \ + port:pcre \ + port:libpng \ + port:jpeg Property changes on: trunk/dports/devel/gource/Portfile ___________________________________________________________________ Added: svn:keywords + Id Added: svn:eol-style + native -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Tue Jan 5 15:54:27 2010 From: portindex at macports.org (portindex at macports.org) Date: Tue, 5 Jan 2010 15:54:27 -0800 (PST) Subject: [62384] trunk/dports Message-ID: <20100105235428.A652B3A8AA46@beta.macosforge.org> Revision: 62384 http://trac.macports.org/changeset/62384 Author: portindex at macports.org Date: 2010-01-05 15:54:25 -0800 (Tue, 05 Jan 2010) Log Message: ----------- Total number of ports parsed: 6475 Ports successfully parsed: 6475 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex trunk/dports/PortIndex.quick Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-05 23:50:32 UTC (rev 62383) +++ trunk/dports/PortIndex 2010-01-05 23:54:25 UTC (rev 62384) @@ -3738,8 +3738,8 @@ variants darwin portdir java/gant description {A groovy based tool for scripting ant} homepage http://gant.codehaus.org/ epoch 0 depends_run port:groovy platforms darwin name gant long_description {Gant is a tool for scripting Ant tasks using Groovy instead of XML to specify the logic. A Gant specification is a Groovy script and so can bring all the power of Groovy to bear directly, something not possible with Ant scripts. Whilst it might be seen as a competitor to Ant, Gant uses Ant tasks for many of the actions, so Gant is really an alternative way of doing things using Ant, but using a programming language rather than XML to specify the rules.} maintainers breskeby depends_extract bin:unzip:unzip categories {java devel groovy} version 1.9.1 revision 0 gjdb 829 variants universal portdir java/gjdb description {GJDB is a modification of JDB, a debugger that comes with the public JDK (Java Development Kit) from Sun.} homepage http://www.cs.berkeley.edu/~hilfingr/gjdb.html epoch 0 platforms darwin name gjdb long_description {GJDB is a modification of JDB, a debugger that comes with the public JDK (Java Development Kit) from Sun. Unlike Sun's version, it also allows you to debug programs that take input from the terminal. The expression language has been extended to include much more of the language (including numerous features missing from jdb, such as array allocation, initialized array allocation, the .super operator, less fussy overload resolution, and numerous binary numeric and logical operations).} maintainers nomaintainer categories {java devel} version 6.1.2 revision 0 -glassfishv3 370 -portdir java/glassfishv3 description {An open source application server} homepage https://glassfish.dev.java.net/ epoch 0 platforms darwin name glassfishv3 maintainers krischik long_description {GlassFish is an open source application server project led by Sun Microsystems for the Java EE platform.} depends_extract bin:unzip:unzip categories java version 3 revision 3 +glassfishv3 371 +portdir java/glassfishv3 description {An open source application server} homepage https://glassfish.dev.java.net/ epoch 62 platforms darwin name glassfishv3 maintainers krischik long_description {GlassFish is an open source application server project led by Sun Microsystems for the Java EE platform.} depends_extract bin:unzip:unzip categories java version 3 revision 3 gnu-classpath 489 variants {gtk universal} portdir java/gnu-classpath description {Essential libraries for Java.} homepage http://www.gnu.org/software/classpath/classpath.html epoch 0 platforms darwin name gnu-classpath depends_lib port:libiconv long_description {GNU Classpath, Essential Libraries for Java, is a GNU project to create free core class libraries for use with virtual machines and compilers for the java programming language.} maintainers nomaintainer categories java version 0.93 revision 0 gnu-classpath-inetlib 432 Modified: trunk/dports/PortIndex.quick =================================================================== (Binary files differ) -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Tue Jan 5 16:54:24 2010 From: portindex at macports.org (portindex at macports.org) Date: Tue, 5 Jan 2010 16:54:24 -0800 (PST) Subject: [62385] trunk/dports Message-ID: <20100106005426.2B8073A8DE26@beta.macosforge.org> Revision: 62385 http://trac.macports.org/changeset/62385 Author: portindex at macports.org Date: 2010-01-05 16:54:23 -0800 (Tue, 05 Jan 2010) Log Message: ----------- Total number of ports parsed: 6476 Ports successfully parsed: 6476 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex trunk/dports/PortIndex.quick Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-05 23:54:25 UTC (rev 62384) +++ trunk/dports/PortIndex 2010-01-06 00:54:23 UTC (rev 62385) @@ -1384,6 +1384,8 @@ variants universal portdir devel/google-sparsehash description {An extremely memory-efficient hash_map implementation} homepage http://code.google.com/p/google-sparsehash/ epoch 0 platforms darwin name google-sparsehash long_description {An extremely memory-efficient hash_map implementation. 2 bits/entry overhead! The SparseHash library contains several hash-map implementations, including implementations that optimize for space or speed. These hashtable implementations are similar in API to SGI's hash_map class, but with different performance characteristics. It's easy to replace hash_map by sparse_hash_map or dense_hash_map in C++ code.} maintainers piu.fm:a categories devel version 1.4 revision 0 google-test 701 variants universal portdir devel/google-test description {Google's framework for writing C++ tests on a variety of platforms.} homepage http://code.google.com/p/googletest/ epoch 0 platforms darwin name google-test long_description {Google's framework for writing C++ tests on a variety of platforms (Linux, Mac OS X, Windows, Cygwin, Windows CE, and Symbian). Based on the xUnit architecture. Supports automatic test discovery, a rich set of assertions, user-defined assertions, death tests, fatal and non-fatal failures, value- and type-parameterized tests, various options for running the tests, and XML test report generation.} maintainers openmaintainer categories devel version 1.4.0 revision 0 +gource 468 +variants universal portdir devel/gource description {Version Control Visualization Tool} homepage http://code.google.com/p/gource/ epoch 0 platforms darwin name gource depends_lib {port:ftgl port:libsdl port:libsdl_image port:pcre port:libpng port:jpeg} long_description {Gource is a tool that can be used to visualize who committed when, and to which files. It supports git, CVS, Mercurial, and svn.} maintainers nomaintainer categories devel version 0.23 revision 0 gpatch 583 variants universal portdir devel/gpatch description {GNU patch, for applying diffs to files} homepage http://www.gnu.org/software/patch/ epoch 0 platforms {darwin sunos} name gpatch long_description {The GNU patch adds support for: handling arbitrary binary data and large files. the unified context diff format that GNU diff can produce. making GNU Emacs-style backup files. improved interaction with RCS and SCCS. the GNU conventions for option parsing and configuring and compilation. better POSIX.2 compliance.} maintainers nomaintainer categories devel version 2.5.9 revision 0 gperf 322 Modified: trunk/dports/PortIndex.quick =================================================================== (Binary files differ) -------------- next part -------------- An HTML attachment was scrubbed... URL: From toby at macports.org Tue Jan 5 19:45:51 2010 From: toby at macports.org (toby at macports.org) Date: Tue, 5 Jan 2010 19:45:51 -0800 (PST) Subject: [62386] trunk/dports/mail/mutt-devel Message-ID: <20100106034552.8EB293A95B64@beta.macosforge.org> Revision: 62386 http://trac.macports.org/changeset/62386 Author: toby at macports.org Date: 2010-01-05 19:45:48 -0800 (Tue, 05 Jan 2010) Log Message: ----------- #22009 (mutt-devel 1.5.20 Patch: fix gpgme 1.2.0 incompatibility) Modified Paths: -------------- trunk/dports/mail/mutt-devel/Portfile Added Paths: ----------- trunk/dports/mail/mutt-devel/files/patch-1.5.20.gpgme.diff Modified: trunk/dports/mail/mutt-devel/Portfile =================================================================== --- trunk/dports/mail/mutt-devel/Portfile 2010-01-06 00:54:23 UTC (rev 62385) +++ trunk/dports/mail/mutt-devel/Portfile 2010-01-06 03:45:48 UTC (rev 62386) @@ -4,7 +4,7 @@ name mutt-devel version 1.5.20 -revision 1 +revision 2 categories mail platforms darwin maintainers simon openmaintainer @@ -177,6 +177,12 @@ variant gpgme description {Enable GPGME crypto support} { configure.args-append --enable-gpgme --with-gpgme-prefix=${prefix} depends_lib-append port:gpgme + # the following patch makes mutt 1.5.20 compatible with gpgme 1.2.0, + # cf. http://bugs.gentoo.org/show_bug.cgi?id=278394 + # and http://dev.mutt.org/trac/ticket/3300 + patchfiles-append patch-1.5.20.gpgme.diff + checksums-append patch-1.5.20.gpgme.diff md5 \ + 6faa84e2520dad7c603e8a8b9e0a9b30 } livecheck.type regex Added: trunk/dports/mail/mutt-devel/files/patch-1.5.20.gpgme.diff =================================================================== --- trunk/dports/mail/mutt-devel/files/patch-1.5.20.gpgme.diff (rev 0) +++ trunk/dports/mail/mutt-devel/files/patch-1.5.20.gpgme.diff 2010-01-06 03:45:48 UTC (rev 62386) @@ -0,0 +1,33 @@ +--- mutt-1.5.20/init.c.orig 2009-07-21 17:54:59 +0200 ++++ mutt-1.5.20/init.c 2009-07-21 17:59:47 +0200 +@@ -37,7 +37,6 @@ + #endif + + +- + #include "mx.h" + #include "init.h" + #include "mailbox.h" +@@ -50,6 +49,10 @@ + #include + #include + ++#if defined(CRYPT_BACKEND_GPGME) ++#include ++#endif ++ + #define CHECK_PAGER \ + if ((CurrentMenu == MENU_PAGER) && (idx >= 0) && \ + (MuttVars[idx].flags & R_RESORT)) \ +@@ -3262,6 +3265,11 @@ + + mutt_read_histfile (); + ++#ifdef CRYPT_BACKEND_GPGME ++ /* needed since version 1.2.0, ticket #3300 */ ++ gpgme_check_version (NULL); ++#endif ++ + #if 0 + set_option (OPTWEED); /* turn weeding on by default */ + #endif -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Tue Jan 5 19:54:26 2010 From: portindex at macports.org (portindex at macports.org) Date: Tue, 5 Jan 2010 19:54:26 -0800 (PST) Subject: [62387] trunk/dports/PortIndex Message-ID: <20100106035427.CCA063A96191@beta.macosforge.org> Revision: 62387 http://trac.macports.org/changeset/62387 Author: portindex at macports.org Date: 2010-01-05 19:54:24 -0800 (Tue, 05 Jan 2010) Log Message: ----------- Total number of ports parsed: 6476 Ports successfully parsed: 6476 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-06 03:45:48 UTC (rev 62386) +++ trunk/dports/PortIndex 2010-01-06 03:54:24 UTC (rev 62387) @@ -4805,7 +4805,7 @@ mutt 770 variants {darwin linux pop imap ssl debug buffy compress nntp universal} portdir mail/mutt description {Mongrel of Mail User Agents (part Elm, Pine, Mush, mh, etc)} homepage http://www.mutt.org/ epoch 0 platforms {darwin linux} name mutt depends_lib port:gettext long_description {Mutt -- {The Mongrel of Mail User Agents} (part Elm, part Pine, part mh, part slrn, part everything else) is an interactive screen-oriented mailer program that supersedes Elm, Pine, mail and mailx. Features include color support, message threading, MIME support (including RFC1522 support for encoded headers), customizable key bindings, POP3, Delivery Status Notification (DSN) support, PGP/MIME, and S/MIME.} maintainers {simon openmaintainer} categories mail version 1.4.2.3 revision 1 mutt-devel 899 -variants {idn pop imap ssl sasl debug gnuregex compress headercache qdbm gdbm db4 tokyocabinet nntp deepif date_conditional smtp sidebar trash gpgme universal} portdir mail/mutt-devel description {Mongrel of Mail User Agents (part Elm, Pine, Mush, mh, etc)} homepage http://www.mutt.org/ epoch 0 platforms darwin name mutt-devel depends_lib {port:gettext port:libiconv port:ncurses port:gdbm} long_description {Mutt -- {The Mongrel of Mail User Agents} (part Elm, part Pine, part mh, part slrn, part everything else) is an interactive screen-oriented mailer program that supersedes Elm, Pine, mail and mailx. Features include color support, message threading, MIME support (including RFC1522 support for encoded headers), customizable key bindings, POP3, Delivery Status Notification (DSN) support, PGP/MIME, and S/MIME.} maintainers {simon openmaintainer} categories mail version 1.5.20 revision 1 +variants {idn pop imap ssl sasl debug gnuregex compress headercache qdbm gdbm db4 tokyocabinet nntp deepif date_conditional smtp sidebar trash gpgme universal} portdir mail/mutt-devel description {Mongrel of Mail User Agents (part Elm, Pine, Mush, mh, etc)} homepage http://www.mutt.org/ epoch 0 platforms darwin name mutt-devel depends_lib {port:gettext port:libiconv port:ncurses port:gdbm} long_description {Mutt -- {The Mongrel of Mail User Agents} (part Elm, part Pine, part mh, part slrn, part everything else) is an interactive screen-oriented mailer program that supersedes Elm, Pine, mail and mailx. Features include color support, message threading, MIME support (including RFC1522 support for encoded headers), customizable key bindings, POP3, Delivery Status Notification (DSN) support, PGP/MIME, and S/MIME.} maintainers {simon openmaintainer} categories mail version 1.5.20 revision 2 muttprint 520 portdir mail/muttprint description {pretty printing of your mails} homepage http://muttprint.sourceforge.net epoch 0 platforms darwin name muttprint depends_lib {port:p5-text-iconv port:dialog} maintainers nomaintainer long_description {Muttprint formats the output of mail clients to a good-looking printing. It uses the typesetting system LaTeX, which is normally part of every Linux distribution and which is also available for other operating systems like *BSD and Solaris.} categories mail version 0.72d revision 0 nbsmtp 370 -------------- next part -------------- An HTML attachment was scrubbed... URL: From nox at macports.org Tue Jan 5 22:53:10 2010 From: nox at macports.org (nox at macports.org) Date: Tue, 5 Jan 2010 22:53:10 -0800 (PST) Subject: [62388] trunk/dports/devel/apache-ant/Portfile Message-ID: <20100106065311.47E463A9BEF0@beta.macosforge.org> Revision: 62388 http://trac.macports.org/changeset/62388 Author: nox at macports.org Date: 2010-01-05 22:53:07 -0800 (Tue, 05 Jan 2010) Log Message: ----------- Fix apache-ant livecheck Modified Paths: -------------- trunk/dports/devel/apache-ant/Portfile Modified: trunk/dports/devel/apache-ant/Portfile =================================================================== --- trunk/dports/devel/apache-ant/Portfile 2010-01-06 03:54:24 UTC (rev 62387) +++ trunk/dports/devel/apache-ant/Portfile 2010-01-06 06:53:07 UTC (rev 62388) @@ -73,5 +73,5 @@ universal_variant no livecheck.type regex -livecheck.url ${homepage}srcdownload.cgi +livecheck.url http://www.apache.org/dist/ant/README.html livecheck.regex {Apache Ant (\d+(?:\.\d+)*)} -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Wed Jan 6 00:21:39 2010 From: ryandesign at macports.org (ryandesign at macports.org) Date: Wed, 6 Jan 2010 00:21:39 -0800 (PST) Subject: [62389] trunk/dports/graphics Message-ID: <20100106082140.56F133A9F5AC@beta.macosforge.org> Revision: 62389 http://trac.macports.org/changeset/62389 Author: ryandesign at macports.org Date: 2010-01-06 00:21:35 -0800 (Wed, 06 Jan 2010) Log Message: ----------- graphviz-devel, graphviz-gui-devel: update to 2.27.20100106.0545 Modified Paths: -------------- trunk/dports/graphics/graphviz-devel/Portfile trunk/dports/graphics/graphviz-gui-devel/Portfile Modified: trunk/dports/graphics/graphviz-devel/Portfile =================================================================== --- trunk/dports/graphics/graphviz-devel/Portfile 2010-01-06 06:53:07 UTC (rev 62388) +++ trunk/dports/graphics/graphviz-devel/Portfile 2010-01-06 08:21:35 UTC (rev 62389) @@ -6,7 +6,7 @@ conflicts graphviz set my_name graphviz # keep version in sync between graphviz-devel and graphviz-gui-devel -version 2.27.20091230.0545 +version 2.27.20100106.0545 categories graphics maintainers ryandesign license CPLv1.0 @@ -33,9 +33,9 @@ variant to build graphviz without its display routines. checksums \ - md5 4543a3f1dda9c9166ca6db005a444378 \ - sha1 ad870916e9b35cf1e633bac3807d642ab81dea1c \ - rmd160 225b40464cb4f5c4f24d41a40d716757fb416553 + md5 f3379a0ee6754cf124330459dd3b51a6 \ + sha1 4e93b8e17963db16d78cdbd5faeaeea608d055d9 \ + rmd160 a0ec56bcc722f0c33734102d1323c4ce9dc67036 pre-extract { if {"darwin" == ${os.platform} && 9 == ${os.major}} { Modified: trunk/dports/graphics/graphviz-gui-devel/Portfile =================================================================== --- trunk/dports/graphics/graphviz-gui-devel/Portfile 2010-01-06 06:53:07 UTC (rev 62388) +++ trunk/dports/graphics/graphviz-gui-devel/Portfile 2010-01-06 08:21:35 UTC (rev 62389) @@ -7,7 +7,7 @@ conflicts graphviz-gui graphviz-oldgui set my_name graphviz # keep version in sync between graphviz-devel and graphviz-gui-devel -version 2.27.20091230.0545 +version 2.27.20100106.0545 categories graphics aqua maintainers ryandesign license CPLv1.0 @@ -25,9 +25,9 @@ ${description}. checksums \ - md5 4543a3f1dda9c9166ca6db005a444378 \ - sha1 ad870916e9b35cf1e633bac3807d642ab81dea1c \ - rmd160 225b40464cb4f5c4f24d41a40d716757fb416553 + md5 f3379a0ee6754cf124330459dd3b51a6 \ + sha1 4e93b8e17963db16d78cdbd5faeaeea608d055d9 \ + rmd160 a0ec56bcc722f0c33734102d1323c4ce9dc67036 depends_lib \ port:graphviz-devel -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Wed Jan 6 00:54:33 2010 From: portindex at macports.org (portindex at macports.org) Date: Wed, 6 Jan 2010 00:54:33 -0800 (PST) Subject: [62390] trunk/dports/PortIndex Message-ID: <20100106085435.7B5893AA05F1@beta.macosforge.org> Revision: 62390 http://trac.macports.org/changeset/62390 Author: portindex at macports.org Date: 2010-01-06 00:54:29 -0800 (Wed, 06 Jan 2010) Log Message: ----------- Total number of ports parsed: 6476 Ports successfully parsed: 6476 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-06 08:21:35 UTC (rev 62389) +++ trunk/dports/PortIndex 2010-01-06 08:54:29 UTC (rev 62390) @@ -3323,11 +3323,11 @@ graphviz 1048 variants {macosx guile lua ocaml perl php python24 python25 python26 ruby tcl java smyrna r rsvg gdk_pixbuf glitz ming no_pangocairo no_x11 gui universal} depends_build port:pkgconfig portdir graphics/graphviz description {Graph visualization software from AT&T and Bell Labs} homepage http://www.graphviz.org/ depends_run port:urw-fonts epoch 0 platforms darwin name graphviz depends_lib {port:xorg-libXaw path:lib/pkgconfig/pango.pc:pango port:jpeg port:libpng port:fontconfig port:freetype port:expat port:gd2 port:zlib port:gettext} long_description {Graph Visualization Software from AT&T Laboratories and Bell Laboratories (Lucent Technologies). The package contains: dot - batch program for drawing directed graphs as hierarchies neato - batch program for drawing undirected graphs using Kamada-Kawai spring models. Users wishing to have only the graph layout programs (for non-interactive use) can use the +no_x11 variant to build graphviz without its display routines.} maintainers ryandesign categories graphics version 2.26.0 revision 0 graphviz-devel 1072 -variants {macosx guile lua ocaml perl php python24 python25 python26 ruby tcl java smyrna r rsvg gdk_pixbuf glitz ming no_pangocairo no_x11 gui universal} depends_build port:pkgconfig portdir graphics/graphviz-devel description {Graph visualization software from AT&T and Bell Labs} homepage http://www.graphviz.org/ depends_run port:urw-fonts epoch 0 platforms darwin name graphviz-devel depends_lib {port:xorg-libXaw path:lib/pkgconfig/pango.pc:pango port:jpeg port:libpng port:fontconfig port:freetype port:expat port:gd2 port:zlib port:gettext} long_description {Graph Visualization Software from AT&T Laboratories and Bell Laboratories (Lucent Technologies). The package contains: dot - batch program for drawing directed graphs as hierarchies neato - batch program for drawing undirected graphs using Kamada-Kawai spring models. Users wishing to have only the graph layout programs (for non-interactive use) can use the +no_x11 variant to build graphviz without its display routines.} maintainers ryandesign categories graphics version 2.27.20091230.0545 revision 0 +variants {macosx guile lua ocaml perl php python24 python25 python26 ruby tcl java smyrna r rsvg gdk_pixbuf glitz ming no_pangocairo no_x11 gui universal} depends_build port:pkgconfig portdir graphics/graphviz-devel description {Graph visualization software from AT&T and Bell Labs} homepage http://www.graphviz.org/ depends_run port:urw-fonts epoch 0 platforms darwin name graphviz-devel depends_lib {port:xorg-libXaw path:lib/pkgconfig/pango.pc:pango port:jpeg port:libpng port:fontconfig port:freetype port:expat port:gd2 port:zlib port:gettext} long_description {Graph Visualization Software from AT&T Laboratories and Bell Laboratories (Lucent Technologies). The package contains: dot - batch program for drawing directed graphs as hierarchies neato - batch program for drawing undirected graphs using Kamada-Kawai spring models. Users wishing to have only the graph layout programs (for non-interactive use) can use the +no_x11 variant to build graphviz without its display routines.} maintainers ryandesign categories graphics version 2.27.20100106.0545 revision 0 graphviz-gui 384 variants universal portdir graphics/graphviz-gui description {Mac OS X Aqua GUI for viewing and exporting Graphviz graphs} homepage http://www.graphviz.org/ epoch 0 platforms macosx depends_lib port:graphviz name graphviz-gui long_description {{Mac OS X Aqua GUI for viewing and exporting Graphviz graphs.}} maintainers ryandesign version 2.26.0 categories {graphics aqua} revision 0 graphviz-gui-devel 414 -variants universal portdir graphics/graphviz-gui-devel description {Mac OS X Aqua GUI for viewing and exporting Graphviz graphs} homepage http://www.graphviz.org/ epoch 0 platforms macosx depends_lib port:graphviz-devel name graphviz-gui-devel long_description {{Mac OS X Aqua GUI for viewing and exporting Graphviz graphs.}} maintainers ryandesign version 2.27.20091230.0545 categories {graphics aqua} revision 0 +variants universal portdir graphics/graphviz-gui-devel description {Mac OS X Aqua GUI for viewing and exporting Graphviz graphs} homepage http://www.graphviz.org/ epoch 0 platforms macosx depends_lib port:graphviz-devel name graphviz-gui-devel long_description {{Mac OS X Aqua GUI for viewing and exporting Graphviz graphs.}} maintainers ryandesign version 2.27.20100106.0545 categories {graphics aqua} revision 0 graphviz-oldgui 423 depends_build {port:pkgconfig port:libiconv} portdir graphics/graphviz-oldgui description {Mac OS X Aqua GUI for viewing and exporting Graphviz graphs} homepage http://www.pixelglow.com/graphviz/ epoch 0 platforms macosx depends_lib path:bin/dot:graphviz name graphviz-oldgui long_description {{Mac OS X Aqua GUI for viewing and exporting Graphviz graphs.}} maintainers ryandesign categories graphics version 16 revision 0 greycstoration 689 -------------- next part -------------- An HTML attachment was scrubbed... URL: From easieste at macports.org Wed Jan 6 04:37:23 2010 From: easieste at macports.org (easieste at macports.org) Date: Wed, 6 Jan 2010 04:37:23 -0800 (PST) Subject: [62391] trunk/dports/lang/sbcl Message-ID: <20100106123725.236E73AA7582@beta.macosforge.org> Revision: 62391 http://trac.macports.org/changeset/62391 Author: easieste at macports.org Date: 2010-01-06 04:37:19 -0800 (Wed, 06 Jan 2010) Log Message: ----------- Remove yet another reported failing sb-posix test that prevents installation under Snow Leopard. Modified Paths: -------------- trunk/dports/lang/sbcl/Portfile trunk/dports/lang/sbcl/files/patch-posix-tests.diff Modified: trunk/dports/lang/sbcl/Portfile =================================================================== --- trunk/dports/lang/sbcl/Portfile 2010-01-06 08:54:29 UTC (rev 62390) +++ trunk/dports/lang/sbcl/Portfile 2010-01-06 12:37:19 UTC (rev 62391) @@ -4,7 +4,7 @@ name sbcl version 1.0.33 -revision 3 +revision 4 set subrevision "" categories lang maintainers gwright waqar easieste Modified: trunk/dports/lang/sbcl/files/patch-posix-tests.diff =================================================================== --- trunk/dports/lang/sbcl/files/patch-posix-tests.diff 2010-01-06 08:54:29 UTC (rev 62390) +++ trunk/dports/lang/sbcl/files/patch-posix-tests.diff 2010-01-06 12:37:19 UTC (rev 62391) @@ -1,5 +1,5 @@ --- contrib/sb-posix/posix-tests.lisp.orig 2009-10-25 09:24:59.000000000 +0100 -+++ contrib/sb-posix/posix-tests.lisp 2010-01-05 22:17:14.000000000 +0100 ++++ contrib/sb-posix/posix-tests.lisp 2010-01-06 13:08:14.000000000 +0100 @@ -103,6 +103,7 @@ (sb-posix:syscall-errno c))) #.sb-posix::eexist) @@ -24,7 +24,13 @@ (deftest stat-mode.1 (with-stat-mode (mode *test-directory*) (sb-posix:s-isreg mode)) -@@ -347,6 +350,7 @@ +@@ -342,11 +345,13 @@ + (sb-posix:s-ischr mode)) + nil) + ++#-darwin + (deftest stat-mode.4 + (with-stat-mode (mode *test-directory*) (sb-posix:s-isblk mode)) nil) @@ -32,7 +38,7 @@ (deftest stat-mode.5 (with-stat-mode (mode *test-directory*) (sb-posix:s-isfifo mode)) -@@ -506,6 +510,7 @@ +@@ -506,6 +511,7 @@ (sb-posix:closedir dir)))) nil) @@ -40,7 +46,7 @@ (deftest readdir.1 (let ((dir (sb-posix:opendir "/"))) (unwind-protect -@@ -662,6 +667,7 @@ +@@ -662,6 +668,7 @@ #.(concatenate 'string "/" (make-string 255 :initial-element #\a))) ;; The error tests are in the order of exposition from SUSv3. -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Wed Jan 6 04:54:41 2010 From: portindex at macports.org (portindex at macports.org) Date: Wed, 6 Jan 2010 04:54:41 -0800 (PST) Subject: [62392] trunk/dports/PortIndex Message-ID: <20100106125443.8725D3AA785F@beta.macosforge.org> Revision: 62392 http://trac.macports.org/changeset/62392 Author: portindex at macports.org Date: 2010-01-06 04:54:38 -0800 (Wed, 06 Jan 2010) Log Message: ----------- Total number of ports parsed: 6476 Ports successfully parsed: 6476 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-06 12:37:19 UTC (rev 62391) +++ trunk/dports/PortIndex 2010-01-06 12:54:38 UTC (rev 62392) @@ -4589,7 +4589,7 @@ ruby19 735 variants {nosuffix c_api_docs tk mactk universal} portdir lang/ruby19 description {Powerful and clean object-oriented scripting language} homepage http://www.ruby-lang.org/ epoch 0 platforms darwin name ruby19 depends_lib {port:libiconv port:readline port:openssl port:zlib port:ncurses} long_description {Ruby is the interpreted scripting language for quick and easy object-oriented programming. It has many features to process text files and to do system management tasks (as in Perl). It is simple, straight-forward, extensible, and portable. Version 1.9 contains a new VM called YARV, is faster and slightly incompatible from version 1.8.} maintainers {febeling openmaintainer} categories {lang ruby} version 1.9.1-p376 revision 0 sbcl 594 -variants {powerpc darwin_8_i386 darwin_9_i386 darwin_10_i386 html threads} portdir lang/sbcl description {The Steel Bank Common Lisp system} homepage http://www.sbcl.org epoch 0 platforms darwin name sbcl long_description {Steel Bank Common Lisp (SBCL) is a Open Source development system for ANSI Common Lisp. It provides an interactive environment including an integrated native compiler, interpreter, and debugger. (And it, and its generated code, can also play nicely with Unix when running noninteractively.)} maintainers {gwright waqar easieste} categories lang version 1.0.33 revision 3 +variants {powerpc darwin_8_i386 darwin_9_i386 darwin_10_i386 html threads} portdir lang/sbcl description {The Steel Bank Common Lisp system} homepage http://www.sbcl.org epoch 0 platforms darwin name sbcl long_description {Steel Bank Common Lisp (SBCL) is a Open Source development system for ANSI Common Lisp. It provides an interactive environment including an integrated native compiler, interpreter, and debugger. (And it, and its generated code, can also play nicely with Unix when running noninteractively.)} maintainers {gwright waqar easieste} categories lang version 1.0.33 revision 4 scala 518 portdir lang/scala description {The Scala Programming Language} homepage http://www.scala-lang.org/ epoch 0 platforms darwin name scala maintainers blair long_description {Scala is a modern multi-paradigm programming language designed to express common programming patterns in a concise, elegant, and type-safe way. It smoothly integrates features of object-oriented and functional languages. It runs inside a Java Virtual Machine and is fully interoperable with Java.} version 2.7.7 categories {lang java} revision 0 scala-devel 557 -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Wed Jan 6 05:35:17 2010 From: ryandesign at macports.org (ryandesign at macports.org) Date: Wed, 6 Jan 2010 05:35:17 -0800 (PST) Subject: [62393] trunk/dports/_resources/port1.0/group/archcheck-1.0.tcl Message-ID: <20100106133517.CC1253AA835B@beta.macosforge.org> Revision: 62393 http://trac.macports.org/changeset/62393 Author: ryandesign at macports.org Date: 2010-01-06 05:35:13 -0800 (Wed, 06 Jan 2010) Log Message: ----------- archcheck-1.0.tcl: Test for the existence of the file before checking its architecture, because sometimes dependencies get built incorrectly and don't contain the file we're checking; see #23057 Modified Paths: -------------- trunk/dports/_resources/port1.0/group/archcheck-1.0.tcl Modified: trunk/dports/_resources/port1.0/group/archcheck-1.0.tcl =================================================================== --- trunk/dports/_resources/port1.0/group/archcheck-1.0.tcl 2010-01-06 12:54:38 UTC (rev 62392) +++ trunk/dports/_resources/port1.0/group/archcheck-1.0.tcl 2010-01-06 13:35:13 UTC (rev 62393) @@ -55,6 +55,19 @@ if {"/" != [string index ${file} 0]} { set file [file join ${prefix} ${file}] } + + # Make sure the file exists -- there have been cases where dylibs are + # inexplicably absent (e.g. #23057). + if {![file exists ${file}]} { + ui_error "The file ${file} does not exist, though it was" + ui_error "expected to have been provided by one of ${name}'s dependencies. Try" + ui_error "rebuilding the port that should have provided that file by running" + ui_error "" + ui_error " sudo port -n upgrade --force " + ui_error "" + return -code error "missing required file" + } + set file_archs [string trim [strsed [exec lipo -info ${file}] {s/.*://}]] set file_archs [string map {ppc7400 ppc} ${file_archs}] -------------- next part -------------- An HTML attachment was scrubbed... URL: From nox at macports.org Wed Jan 6 06:17:48 2010 From: nox at macports.org (nox at macports.org) Date: Wed, 6 Jan 2010 06:17:48 -0800 (PST) Subject: [62394] trunk/dports/java/jaxen/Portfile Message-ID: <20100106141748.CF3B53AA98CC@beta.macosforge.org> Revision: 62394 http://trac.macports.org/changeset/62394 Author: nox at macports.org Date: 2010-01-06 06:17:44 -0800 (Wed, 06 Jan 2010) Log Message: ----------- Make whitespace changes to jaxen Modified Paths: -------------- trunk/dports/java/jaxen/Portfile Modified: trunk/dports/java/jaxen/Portfile =================================================================== --- trunk/dports/java/jaxen/Portfile 2010-01-06 13:35:13 UTC (rev 62393) +++ trunk/dports/java/jaxen/Portfile 2010-01-06 14:17:44 UTC (rev 62394) @@ -1,59 +1,60 @@ # $Id$ -PortSystem 1.0 +PortSystem 1.0 -name jaxen -version 1.1-beta-9 +name jaxen +version 1.1-beta-9 +categories java devel textproc +platforms darwin +maintainers nomaintainer +description Java XPath engine -categories java devel textproc -platforms darwin +long_description \ + The jaxen project is a Java XPath Engine. jaxen is a universal object \ + model walker, capable of evaluating XPath expressions across multiple \ + models. Currently supported are dom4j and JDOM. -maintainers nomaintainer -description Java XPath engine -long_description The jaxen project is a Java XPath Engine. jaxen is a \ - universal object model walker, capable of evaluating \ - XPath expressions across multiple models. Currently \ - supported are dom4j and JDOM. -homepage http://www.jaxen.org/ +homepage http://www.jaxen.org/ +distname ${name}-${version}-src +master_sites http://dist.codehaus.org/jaxen/distributions/ -distname ${name}-${version}-src -master_sites http://dist.codehaus.org/jaxen/distributions/ -checksums md5 e7f42d2b9dc633252ee47eeab52cdced +checksums md5 e7f42d2b9dc633252ee47eeab52cdced -depends_build bin:ant:apache-ant -depends_lib bin:java:kaffe \ - port:junit \ - port:dom4j \ - port:jdom \ - port:xercesj \ - port:xom - -worksrcdir ${name}-${version} -use_configure no +depends_build bin:ant:apache-ant +depends_lib bin:java:kaffe \ + port:junit \ + port:dom4j \ + port:jdom \ + port:xercesj \ + port:xom +worksrcdir ${name}-${version} + +use_configure no + set javaLibs ${prefix}/share/java set classpath " - ${javaLibs}/apache-ant/ant.jar - ${javaLibs}/junit.jar - ${javaLibs}/xalan.jar - ${javaLibs}/xml-apis.jar - ${javaLibs}/dom4j.jar - ${javaLibs}/jdom.jar - ${javaLibs}/xercesImpl.jar - ${javaLibs}/xml-apis.jar - ${javaLibs}/xom.jar - " + ${javaLibs}/apache-ant/ant.jar + ${javaLibs}/junit.jar + ${javaLibs}/xalan.jar + ${javaLibs}/xml-apis.jar + ${javaLibs}/dom4j.jar + ${javaLibs}/jdom.jar + ${javaLibs}/xercesImpl.jar + ${javaLibs}/xml-apis.jar + ${javaLibs}/xom.jar + " -build.cmd ant -build.target dist -build.env CLASSPATH=[join ${classpath} :] -build.args -Dnoget -Djunit.jar=${prefix}/share/java/junit.jar +build.cmd ant +build.target dist +build.env CLASSPATH=[join ${classpath} :] +build.args -Dnoget -Djunit.jar=${prefix}/share/java/junit.jar destroot { - xinstall -m 755 -d ${destroot}${prefix}/share/java \ - ${destroot}${prefix}/share/doc - xinstall -m 644 ${worksrcpath}/dist/${name}-${version}.jar \ - ${destroot}${prefix}/share/java/${name}.jar - file copy ${worksrcpath}/dist/docs \ - ${destroot}${prefix}/share/doc/${name} + xinstall -m 755 -d ${destroot}${prefix}/share/java \ + ${destroot}${prefix}/share/doc + xinstall -m 644 ${worksrcpath}/dist/${name}-${version}.jar \ + ${destroot}${prefix}/share/java/${name}.jar + file copy ${worksrcpath}/dist/docs \ + ${destroot}${prefix}/share/doc/${name} } -------------- next part -------------- An HTML attachment was scrubbed... URL: From simon at macports.org Wed Jan 6 06:38:22 2010 From: simon at macports.org (simon at macports.org) Date: Wed, 6 Jan 2010 06:38:22 -0800 (PST) Subject: [62396] trunk/dports/perl/p5-mail-spamassassin Message-ID: <20100106143824.564AE3AABE71@beta.macosforge.org> Revision: 62396 http://trac.macports.org/changeset/62396 Author: simon at macports.org Date: 2010-01-06 06:38:19 -0800 (Wed, 06 Jan 2010) Log Message: ----------- perl/p5-mail-spamassassin: Fix FH_DATE_PAST_20XX bug, closes #23087. Modified Paths: -------------- trunk/dports/perl/p5-mail-spamassassin/Portfile Added Paths: ----------- trunk/dports/perl/p5-mail-spamassassin/files/patch-FH_DATE_PAST_20XX_bug.diff Modified: trunk/dports/perl/p5-mail-spamassassin/Portfile =================================================================== --- trunk/dports/perl/p5-mail-spamassassin/Portfile 2010-01-06 14:17:57 UTC (rev 62395) +++ trunk/dports/perl/p5-mail-spamassassin/Portfile 2010-01-06 14:38:19 UTC (rev 62396) @@ -45,7 +45,8 @@ startupitem.executable ${prefix}/bin/spamd -l } -patchfiles patch-Makefile.PL.diff +patchfiles patch-Makefile.PL.diff \ + patch-FH_DATE_PAST_20XX_bug.diff post-patch { reinplace "s|return ''|return 'PRIV'|" ${worksrcpath}/Makefile.PL Added: trunk/dports/perl/p5-mail-spamassassin/files/patch-FH_DATE_PAST_20XX_bug.diff =================================================================== --- trunk/dports/perl/p5-mail-spamassassin/files/patch-FH_DATE_PAST_20XX_bug.diff (rev 0) +++ trunk/dports/perl/p5-mail-spamassassin/files/patch-FH_DATE_PAST_20XX_bug.diff 2010-01-06 14:38:19 UTC (rev 62396) @@ -0,0 +1,13 @@ +Fix bug 6269: https://issues.apache.org/SpamAssassin/show_bug.cgi?id=6269 + +--- rules/72_active.cf.orig 2010-01-06 15:19:19.000000000 +0100 ++++ rules/72_active.cf 2010-01-06 15:20:04.000000000 +0100 +@@ -540,7 +540,7 @@ + ##} FH_DATE_IS_19XX + + ##{ FH_DATE_PAST_20XX +-header FH_DATE_PAST_20XX Date =~ /20[1-9][0-9]/ [if-unset: 2006] ++header FH_DATE_PAST_20XX Date =~ /20[2-9][0-9]/ [if-unset: 2006] + describe FH_DATE_PAST_20XX The date is grossly in the future. + ##} FH_DATE_PAST_20XX + -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Wed Jan 6 06:48:20 2010 From: ryandesign at macports.org (ryandesign at macports.org) Date: Wed, 6 Jan 2010 06:48:20 -0800 (PST) Subject: [62397] trunk/dports/perl/p5-mail-spamassassin/Portfile Message-ID: <20100106144820.531033AAC18F@beta.macosforge.org> Revision: 62397 http://trac.macports.org/changeset/62397 Author: ryandesign at macports.org Date: 2010-01-06 06:48:18 -0800 (Wed, 06 Jan 2010) Log Message: ----------- p5-mail-spamassassin: bump revision so everyone gets the fix from r62396; see #23087 Revision Links: -------------- http://trac.macports.org/changeset/62396 Modified Paths: -------------- trunk/dports/perl/p5-mail-spamassassin/Portfile Modified: trunk/dports/perl/p5-mail-spamassassin/Portfile =================================================================== --- trunk/dports/perl/p5-mail-spamassassin/Portfile 2010-01-06 14:38:19 UTC (rev 62396) +++ trunk/dports/perl/p5-mail-spamassassin/Portfile 2010-01-06 14:48:18 UTC (rev 62397) @@ -4,7 +4,7 @@ PortGroup perl5 1.0 perl5.setup Mail-SpamAssassin 3.2.5 -revision 2 +revision 3 categories-append mail platforms darwin maintainers simon openmaintainer -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Wed Jan 6 07:54:36 2010 From: portindex at macports.org (portindex at macports.org) Date: Wed, 6 Jan 2010 07:54:36 -0800 (PST) Subject: [62398] trunk/dports/PortIndex Message-ID: <20100106155439.B85FF3AAEC9F@beta.macosforge.org> Revision: 62398 http://trac.macports.org/changeset/62398 Author: portindex at macports.org Date: 2010-01-06 07:54:34 -0800 (Wed, 06 Jan 2010) Log Message: ----------- Total number of ports parsed: 6476 Ports successfully parsed: 6476 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-06 14:48:18 UTC (rev 62397) +++ trunk/dports/PortIndex 2010-01-06 15:54:34 UTC (rev 62398) @@ -7001,7 +7001,7 @@ p5-mail-sendmail 575 portdir perl/p5-mail-sendmail description {Simple platform independent e-mail from perl scripts.} homepage http://search.cpan.org/dist/Mail-Sendmail/ epoch 0 platforms darwin name p5-mail-sendmail depends_lib path:bin/perl:perl5 maintainers {jmr openmaintainer} long_description {Simple platform independent e-mail from your perl script. Only requires Perl 5 and a network connection. Mail::Sendmail contains mainly &sendmail, which takes a hash with the message to send and sends it. It is intended to be very easy to setup and use.} version 0.79 categories perl revision 0 p5-mail-spamassassin 800 -variants {razor ssl vpopmail} portdir perl/p5-mail-spamassassin description {mail filter to identify spam} homepage http://spamassassin.apache.org/ epoch 0 platforms darwin name p5-mail-spamassassin depends_lib {path:bin/perl:perl5 port:p5-digest-sha1 port:p5-html-parser port:p5-mailtools port:p5-mail-audit port:p5-net-dns port:p5-net-ident port:p5-archive-tar port:p5-io-zlib port:p5-io-compress port:p5-ip-country port:p5-time-hires port:p5-mail-dkim port:p5-mail-spf port:p5-libwww-perl} long_description {SpamAssassin(tm) is a mail filter to identify spam. Using its rule base, it uses a wide range of heuristic tests on mail headers and body text to identify spam, also known as unsolicited commercial email.} maintainers {simon openmaintainer} categories {perl mail} version 3.2.5 revision 2 +variants {razor ssl vpopmail} portdir perl/p5-mail-spamassassin description {mail filter to identify spam} homepage http://spamassassin.apache.org/ epoch 0 platforms darwin name p5-mail-spamassassin depends_lib {path:bin/perl:perl5 port:p5-digest-sha1 port:p5-html-parser port:p5-mailtools port:p5-mail-audit port:p5-net-dns port:p5-net-ident port:p5-archive-tar port:p5-io-zlib port:p5-io-compress port:p5-ip-country port:p5-time-hires port:p5-mail-dkim port:p5-mail-spf port:p5-libwww-perl} long_description {SpamAssassin(tm) is a mail filter to identify spam. Using its rule base, it uses a wide range of heuristic tests on mail headers and body text to identify spam, also known as unsolicited commercial email.} maintainers {simon openmaintainer} categories {perl mail} version 3.2.5 revision 3 p5-mail-spf 490 portdir perl/p5-mail-spf description {Object oriented implementation of SPF} homepage http://search.cpan.org/~jmehnle/Mail-SPF-v2.006 epoch 0 platforms darwin name p5-mail-spf depends_lib {path:bin/perl:perl5 port:p5-net-dns port:p5-version port:p5-error port:p5-netaddr-ip port:p5-uri} maintainers yahoo.com:compconsultant long_description {Mail-SPF provides an object oriented interface to the Sender Policy Framework, also knows as SPF.} categories {perl mail} version v2.006 revision 0 p5-mail-spf-query 598 -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Wed Jan 6 09:12:44 2010 From: ryandesign at macports.org (ryandesign at macports.org) Date: Wed, 6 Jan 2010 09:12:44 -0800 (PST) Subject: [62399] trunk/dports/security/cyrus-sasl2/Portfile Message-ID: <20100106171245.E7A973AB3163@beta.macosforge.org> Revision: 62399 http://trac.macports.org/changeset/62399 Author: ryandesign at macports.org Date: 2010-01-06 09:12:41 -0800 (Wed, 06 Jan 2010) Log Message: ----------- cyrus-sasl2: since the archcheck portgroup was already added in r61539, actually use it to prevent build problems like http://lists.macosforge.org/pipermail/macports-users/2010-January/018317.html Revision Links: -------------- http://trac.macports.org/changeset/61539 Modified Paths: -------------- trunk/dports/security/cyrus-sasl2/Portfile Modified: trunk/dports/security/cyrus-sasl2/Portfile =================================================================== --- trunk/dports/security/cyrus-sasl2/Portfile 2010-01-06 15:54:34 UTC (rev 62398) +++ trunk/dports/security/cyrus-sasl2/Portfile 2010-01-06 17:12:41 UTC (rev 62399) @@ -28,6 +28,8 @@ depends_lib port:openssl \ port:zlib +archcheck.files lib/libssl.dylib \ + lib/libz.dylib patchfiles patch-utils_Makefile.in.diff -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Wed Jan 6 09:47:38 2010 From: ryandesign at macports.org (ryandesign at macports.org) Date: Wed, 6 Jan 2010 09:47:38 -0800 (PST) Subject: [62400] trunk/dports/databases/oracle-instantclient/Portfile Message-ID: <20100106174739.124313AB482C@beta.macosforge.org> Revision: 62400 http://trac.macports.org/changeset/62400 Author: ryandesign at macports.org Date: 2010-01-06 09:47:35 -0800 (Wed, 06 Jan 2010) Log Message: ----------- oracle-instantclient: more whitespace in "may not be able to download" message, for better readability Modified Paths: -------------- trunk/dports/databases/oracle-instantclient/Portfile Modified: trunk/dports/databases/oracle-instantclient/Portfile =================================================================== --- trunk/dports/databases/oracle-instantclient/Portfile 2010-01-06 17:12:41 UTC (rev 62399) +++ trunk/dports/databases/oracle-instantclient/Portfile 2010-01-06 17:47:35 UTC (rev 62400) @@ -99,12 +99,20 @@ ui_msg "is available." ui_msg "" } - ui_warn "MacPorts may not be able to download the necessary distfiles for ${name}." - ui_warn "If you get a checksum error, please visit ${homepage}" - ui_warn "and download these files manually and place them in ${distpath}" + ui_warn "MacPorts may not be able to download the necessary distfiles for" + ui_warn "${name}. If you get a checksum error, please visit this URL:" + ui_warn "" + ui_warn " ${homepage}" + ui_warn "" + ui_warn "and download these files manually:" + ui_warn "" foreach distfile ${distfiles} { - ui_msg " * [strsed ${distfile} {/:.*$//}]" + ui_warn " [strsed ${distfile} {/:.*$//}]" } + ui_warn "" + ui_warn "and place them in this directory:" + ui_warn "" + ui_warn " ${distpath}" } extract { -------------- next part -------------- An HTML attachment was scrubbed... URL: From dluke at macports.org Wed Jan 6 09:54:47 2010 From: dluke at macports.org (dluke at macports.org) Date: Wed, 6 Jan 2010 09:54:47 -0800 (PST) Subject: [62401] trunk/dports/devel/subversion/Portfile Message-ID: <20100106175447.C06473AB4B7F@beta.macosforge.org> Revision: 62401 http://trac.macports.org/changeset/62401 Author: dluke at macports.org Date: 2010-01-06 09:54:46 -0800 (Wed, 06 Jan 2010) Log Message: ----------- Add svn to the description to help people port search for it (fixes #23159) Modified Paths: -------------- trunk/dports/devel/subversion/Portfile Modified: trunk/dports/devel/subversion/Portfile =================================================================== --- trunk/dports/devel/subversion/Portfile 2010-01-06 17:47:35 UTC (rev 62400) +++ trunk/dports/devel/subversion/Portfile 2010-01-06 17:54:46 UTC (rev 62401) @@ -9,7 +9,7 @@ maintainers geeklair.net:dluke description A version control system designed to be a better cvs. -long_description Subversion is a version control system designed to be \ +long_description Subversion (svn) is a version control system designed to be \ as similar to cvs(1) as possible, while fixing many \ outstanding problems with cvs(1). -------------- next part -------------- An HTML attachment was scrubbed... URL: From snc at macports.org Wed Jan 6 10:44:30 2010 From: snc at macports.org (snc at macports.org) Date: Wed, 6 Jan 2010 10:44:30 -0800 (PST) Subject: [62402] trunk/dports/office/todotxt/Portfile Message-ID: <20100106184430.80F5A3AB6923@beta.macosforge.org> Revision: 62402 http://trac.macports.org/changeset/62402 Author: snc at macports.org Date: 2010-01-06 10:44:27 -0800 (Wed, 06 Jan 2010) Log Message: ----------- updated version, add license Modified Paths: -------------- trunk/dports/office/todotxt/Portfile Modified: trunk/dports/office/todotxt/Portfile =================================================================== --- trunk/dports/office/todotxt/Portfile 2010-01-06 17:54:46 UTC (rev 62401) +++ trunk/dports/office/todotxt/Portfile 2010-01-06 18:44:27 UTC (rev 62402) @@ -4,9 +4,9 @@ PortSystem 1.0 name todotxt -version 2.4 +version 2.5 categories office -#license GPL +license GPL maintainers snc openmaintainer description Simple, extensible shell script to manage your todo file. -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Wed Jan 6 10:54:29 2010 From: portindex at macports.org (portindex at macports.org) Date: Wed, 6 Jan 2010 10:54:29 -0800 (PST) Subject: [62403] trunk/dports Message-ID: <20100106185431.CB97E3AB6F06@beta.macosforge.org> Revision: 62403 http://trac.macports.org/changeset/62403 Author: portindex at macports.org Date: 2010-01-06 10:54:26 -0800 (Wed, 06 Jan 2010) Log Message: ----------- Total number of ports parsed: 6476 Ports successfully parsed: 6476 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex trunk/dports/PortIndex.quick Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-06 18:44:27 UTC (rev 62402) +++ trunk/dports/PortIndex 2010-01-06 18:54:26 UTC (rev 62403) @@ -2100,8 +2100,8 @@ variants html_man_docs portdir devel/stgit description {Push/pop utility on top of GIT} homepage http://www.procode.org/stgit/ depends_run port:git-core epoch 0 platforms darwin depends_lib port:python26 name stgit long_description {StGIT is a Python application providing similar functionality to Quilt (i.e. pushing/popping patches to/from a stack) on top of GIT. These operations are performed using GIT commands and the patches are stored as GIT commit objects, allowing easy merging of the StGIT patches into other repositories using standard GIT functionality. Note that StGIT is not an SCM interface on top of GIT and it expects a previously initialised GIT repository (unless it is cloned using StGIT directly). For standard SCM operations, either use plain GIT commands or the Cogito tool but it is not recommended to mix them with the StGIT commands.} maintainers {boeyms openmaintainer} version 0.15 categories {devel python} revision 1 strigi 718 variants {debug universal} depends_build port:cmake portdir devel/strigi description {Fastest and smallest desktop searching program} homepage http://strigi.sourceforge.net/ epoch 0 platforms darwin depends_lib {port:bzip2 port:clucene port:dbus port:libxml2 port:zlib} name strigi maintainers {gmail.com:clubjuggler openmaintainer} long_description {Strigi is a daemon which uses a very fast and efficient crawler that can index data on your harddrive. Indexing operations are performed without hammering your system, this makes Strigi the fastest and smallest desktop searching program. Strigi can index different file formats, including the contents of the archive files.} categories devel version 0.6.3 revision 2 -subversion 677 -variants {mod_dav_svn no_neon no_bdb mac_os_x_server_mod_dav_svn tools unicode_path bash_completion disable_keychain darwin_7 universal} portdir devel/subversion description {A version control system designed to be a better cvs.} homepage http://subversion.tigris.org/ epoch 0 platforms darwin name subversion depends_lib {port:expat port:neon port:apr port:apr-util port:db46 port:sqlite3 port:gettext port:libiconv port:serf port:cyrus-sasl2} long_description {Subversion is a version control system designed to be as similar to cvs(1) as possible, while fixing many outstanding problems with cvs(1).} maintainers geeklair.net:dluke categories devel version 1.6.6 revision 0 +subversion 683 +variants {mod_dav_svn no_neon no_bdb mac_os_x_server_mod_dav_svn tools unicode_path bash_completion disable_keychain darwin_7 universal} portdir devel/subversion description {A version control system designed to be a better cvs.} homepage http://subversion.tigris.org/ epoch 0 platforms darwin name subversion depends_lib {port:expat port:neon port:apr port:apr-util port:db46 port:sqlite3 port:gettext port:libiconv port:serf port:cyrus-sasl2} long_description {Subversion (svn) is a version control system designed to be as similar to cvs(1) as possible, while fixing many outstanding problems with cvs(1).} maintainers geeklair.net:dluke categories devel version 1.6.6 revision 0 subversion-javahlbindings 723 variants {no_bdb no_neon darwin_7 universal} portdir devel/subversion-javahlbindings description {Java (javahl) bindings for the subversion version control system.} homepage http://subversion.tigris.org/ epoch 0 platforms darwin name subversion-javahlbindings depends_lib {port:expat port:neon port:apr port:apr-util port:db46 port:subversion port:junit port:sqlite3 port:gettext port:libiconv port:serf port:cyrus-sasl2} long_description {Subversion is a version control system designed to be as similar to cvs(1) as possible, while fixing many outstanding problems with cvs(1). The java bindings provide access to subversion API from java.} maintainers geeklair.net:dluke categories {devel java} version 1.6.6 revision 0 subversion-perlbindings 719 @@ -6165,7 +6165,7 @@ taskjuggler 472 variants {darwin_9 qt3mac nokde docs debug universal} portdir office/taskjuggler description {A powerful project management tool.} homepage http://www.taskjuggler.org/ epoch 0 platforms darwin name taskjuggler depends_lib {port:qt3 port:fontconfig port:jpeg port:libpng port:kdebase3 port:kdelibs3 port:kdepim3} maintainers rene long_description {TaskJuggler is a modern and powerful, Open Source project management tool.} categories {office pim} version 2.4.3 revision 1 todotxt 380 -portdir office/todotxt description {Simple, extensible shell script to manage your todo file.} depends_fetch bin:git:git-core homepage http://ginatrapani.github.com/todo.txt-cli/ epoch 0 platforms darwin name todotxt maintainers {snc openmaintainer} long_description {A simple and extensible shell script for managing your todo.txt file.} categories office version 2.4 revision 0 +portdir office/todotxt description {Simple, extensible shell script to manage your todo file.} depends_fetch bin:git:git-core homepage http://ginatrapani.github.com/todo.txt-cli/ epoch 0 platforms darwin name todotxt maintainers {snc openmaintainer} long_description {A simple and extensible shell script for managing your todo.txt file.} categories office version 2.5 revision 0 treeline 679 portdir office/treeline description {Advanced outliner and personal information manager} homepage http://treeline.bellz.org epoch 0 platforms darwin name treeline depends_lib {port:py25-pyqt4 port:aspell} maintainers alpha long_description {Some would call TreeLine an Outliner, others would call it a PIM. Basically, it just stores almost any kind of information. A tree structure makes it easy to keep things organized. And each node in the tree can contain several fields, forming a mini-database. The output format for each node can be defined, and the output can be shown on the screen, printed, or exported to html.} categories {office pim python} version 1.2.3 revision 0 hrsh2csv 393 Modified: trunk/dports/PortIndex.quick =================================================================== (Binary files differ) -------------- next part -------------- An HTML attachment was scrubbed... URL: From tommyd at macports.org Wed Jan 6 11:43:40 2010 From: tommyd at macports.org (tommyd at macports.org) Date: Wed, 6 Jan 2010 11:43:40 -0800 (PST) Subject: [62404] trunk/dports/games/fife/Portfile Message-ID: <20100106194341.2226A3AB9280@beta.macosforge.org> Revision: 62404 http://trac.macports.org/changeset/62404 Author: tommyd at macports.org Date: 2010-01-06 11:43:38 -0800 (Wed, 06 Jan 2010) Log Message: ----------- * new prelimninary svn version uploaded which fixes a couple of issues Modified Paths: -------------- trunk/dports/games/fife/Portfile Modified: trunk/dports/games/fife/Portfile =================================================================== --- trunk/dports/games/fife/Portfile 2010-01-06 18:54:26 UTC (rev 62403) +++ trunk/dports/games/fife/Portfile 2010-01-06 19:43:38 UTC (rev 62404) @@ -4,6 +4,7 @@ name fife version 0.2.999 +revision 1 maintainers tommyd categories games python platforms darwin @@ -16,9 +17,9 @@ master_sites http://thomaskeller.biz/stuff use_bzip2 yes -checksums md5 28e772860b3bff9f41dd07e5415f6d1e \ - sha1 88afd8578079651f98f0d3c63a7fc8892c83b645 \ - rmd160 6e796b97805b92803bb15034c3db0cc9d3cf1b36 +checksums md5 9704aa6d1bdc21d3be810035c9156c93 \ + sha1 854a6e3e6cbada6dd60e038f7b67781a50944f58 \ + rmd160 f828f8e43440375ba93a758e1b51f13488e39b90 depends_build port:scons -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Wed Jan 6 11:54:30 2010 From: portindex at macports.org (portindex at macports.org) Date: Wed, 6 Jan 2010 11:54:30 -0800 (PST) Subject: [62405] trunk/dports/PortIndex Message-ID: <20100106195431.89DEE3AB9BCD@beta.macosforge.org> Revision: 62405 http://trac.macports.org/changeset/62405 Author: portindex at macports.org Date: 2010-01-06 11:54:29 -0800 (Wed, 06 Jan 2010) Log Message: ----------- Total number of ports parsed: 6476 Ports successfully parsed: 6476 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-06 19:43:38 UTC (rev 62404) +++ trunk/dports/PortIndex 2010-01-06 19:54:29 UTC (rev 62405) @@ -2535,7 +2535,7 @@ fbg 549 variants universal portdir games/fbg description {Puzzle game similar to Tetris but with improved graphics.} homepage http://fbg.sourceforge.net/ epoch 0 platforms darwin name fbg depends_lib {path:lib/pkgconfig/sdl.pc:libsdl port:physfs} long_description {Falling Block Game is a puzzle game that is similar to the Hasbro classic, Tetris. Many such games have been released for a variety of platforms, but most have passable graphics or poor gameplay/piece control.} maintainers {jmpp openmaintainer} categories {games aqua} version 0.9 revision 0 fife 480 -depends_build port:scons portdir games/fife description {The FIFE game engine} homepage http://www.fifengine.de/ epoch 0 platforms darwin depends_lib {port:python26 port:libsdl port:libsdl_image port:libsdl_ttf port:boost port:libogg port:libvorbis port:libguichan port:swig-python} name fife maintainers tommyd long_description {FIFE stands for Flexible Isometric Free Engine and is a cross platform game creation framework.} categories {games python} version 0.2.999 revision 0 +depends_build port:scons portdir games/fife description {The FIFE game engine} homepage http://www.fifengine.de/ epoch 0 platforms darwin depends_lib {port:python26 port:libsdl port:libsdl_image port:libsdl_ttf port:boost port:libogg port:libvorbis port:libguichan port:swig-python} name fife maintainers tommyd long_description {FIFE stands for Flexible Isometric Free Engine and is a cross platform game creation framework.} categories {games python} version 0.2.999 revision 1 fizmo 1078 portdir games/fizmo description {Console-based Z-Machine interpreter for Infocom games.} homepage http://spellbreaker.org/~chrender/fizmo/ epoch 0 platforms {darwin linux} name fizmo depends_lib {port:ncursesw port:libsdl_sound port:libsndfile port:libxml2} maintainers spellbreaker.org:Christoph.Ender long_description {Fizmo is a Z-Machine interpreter (Fizmo Interprets Z-Machine Opcodes) which allows you to run Infocom- and most other Z-Machine based games -- except version 6 -- on POSIX-like systems which provide a ncursesw (note the 'w') library. It has been successfully compiled on Debian based Linux, Mac OS X (with MacPorts providing ncursesw) and Windows (using Cygwin and a self-compiled ncursesw library). This is a console-style application, meaning that it runs in textmode and does not provide any GUI whatsoever. For more information about Infocom and interactive fiction, see the 'New to IF' section at http://www.ifarchive.org. Games are available from http://www.ifarchive.org/indexes/if-archiveXgamesXzcode.html} categories games version 0.6.5 revision 0 flobopuyo 350 -------------- next part -------------- An HTML attachment was scrubbed... URL: From jmr at macports.org Wed Jan 6 13:56:04 2010 From: jmr at macports.org (jmr at macports.org) Date: Wed, 6 Jan 2010 13:56:04 -0800 (PST) Subject: [62406] trunk/dports/devel/cryptlib Message-ID: <20100106215604.84AE73ABDB72@beta.macosforge.org> Revision: 62406 http://trac.macports.org/changeset/62406 Author: jmr at macports.org Date: 2010-01-06 13:56:01 -0800 (Wed, 06 Jan 2010) Log Message: ----------- cryptlib: stealth update (#23162) Modified Paths: -------------- trunk/dports/devel/cryptlib/Portfile trunk/dports/devel/cryptlib/files/patch-crypt_osconfig.h Modified: trunk/dports/devel/cryptlib/Portfile =================================================================== --- trunk/dports/devel/cryptlib/Portfile 2010-01-06 19:54:29 UTC (rev 62405) +++ trunk/dports/devel/cryptlib/Portfile 2010-01-06 21:56:01 UTC (rev 62406) @@ -4,6 +4,7 @@ name cryptlib version 3.3.3 +revision 1 categories devel security crypto maintainers nomaintainer description cryptlib is a powerful security toolkit (library) @@ -19,11 +20,13 @@ platforms darwin sunos homepage http://www.cs.auckland.ac.nz/~pgut001/cryptlib/ -master_sites ftp://ftp.franken.de/pub/crypt/cryptlib/ +master_sites ftp://ftp.franken.de/pub/crypt/cryptlib/ \ + http://www.cypherpunks.to/~peter/ distname cl[join [split $version .] ""] +dist_subdir ${name}/${version}_1 use_zip yes -checksums md5 afdb94894f7f798702703f4a95a2e7ac \ - sha1 128d24c98f1406cb4ba547617a73ec1e254caf33 +checksums md5 98effb4644e1336a57bd3be50bae07d4 \ + sha1 f745ec44b4578b76eae49702035b635a004dfa14 worksrcdir cryptlib pre-extract { Modified: trunk/dports/devel/cryptlib/files/patch-crypt_osconfig.h =================================================================== --- trunk/dports/devel/cryptlib/files/patch-crypt_osconfig.h 2010-01-06 19:54:29 UTC (rev 62405) +++ trunk/dports/devel/cryptlib/files/patch-crypt_osconfig.h 2010-01-06 21:56:01 UTC (rev 62406) @@ -1,10 +1,9 @@ --- crypt/osconfig.h.orig 2009-05-07 02:07:36.000000000 +1000 +++ crypt/osconfig.h 2009-09-22 05:53:36.000000000 +1000 -@@ -231,7 +231,10 @@ +@@ -231,6 +231,10 @@ #else #define L_ENDIAN #endif -- #define B_ENDIAN + #if defined( __LP64__ ) + #undef SIXTY_FOUR_BIT + #define SIXTY_FOUR_BIT_LONG -------------- next part -------------- An HTML attachment was scrubbed... URL: From tommyd at macports.org Wed Jan 6 14:50:02 2010 From: tommyd at macports.org (tommyd at macports.org) Date: Wed, 6 Jan 2010 14:50:02 -0800 (PST) Subject: [62407] trunk/dports/games/fife/Portfile Message-ID: <20100106225002.E64FC3ABF06E@beta.macosforge.org> Revision: 62407 http://trac.macports.org/changeset/62407 Author: tommyd at macports.org Date: 2010-01-06 14:49:59 -0800 (Wed, 06 Jan 2010) Log Message: ----------- * ensure that the correct Python version is active in whose site-packages directory we later install the binary. If this is not the right version, the binary may be incompatible with the particular Python version and crash the interpreter. Modified Paths: -------------- trunk/dports/games/fife/Portfile Modified: trunk/dports/games/fife/Portfile =================================================================== --- trunk/dports/games/fife/Portfile 2010-01-06 21:56:01 UTC (rev 62406) +++ trunk/dports/games/fife/Portfile 2010-01-06 22:49:59 UTC (rev 62407) @@ -4,7 +4,7 @@ name fife version 0.2.999 -revision 1 +revision 2 maintainers tommyd categories games python platforms darwin @@ -36,6 +36,20 @@ use_configure no use_parallel_build no +pre-build { + if { ![string equal [string trim [ exec ${prefix}/bin/python_select -s] ] "python26" ] } { + ui_error "#################################################" + ui_error "Python 2.6 is currently not selected as default, " + ui_error "so fife's binary module will probably not load " + ui_error "correctly into this version of Python. " + ui_error "Please execute " + ui_error " sudo ${prefix}/python_select python26 " + ui_error "and try again. " + ui_error "#################################################" + return -code error "wrong python version selected" + } +} + build.cmd scons build.target fife build.args --prefix=${prefix} \ -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Wed Jan 6 14:54:31 2010 From: portindex at macports.org (portindex at macports.org) Date: Wed, 6 Jan 2010 14:54:31 -0800 (PST) Subject: [62408] trunk/dports/PortIndex Message-ID: <20100106225432.EF8C03ABF1D7@beta.macosforge.org> Revision: 62408 http://trac.macports.org/changeset/62408 Author: portindex at macports.org Date: 2010-01-06 14:54:31 -0800 (Wed, 06 Jan 2010) Log Message: ----------- Total number of ports parsed: 6476 Ports successfully parsed: 6476 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-06 22:49:59 UTC (rev 62407) +++ trunk/dports/PortIndex 2010-01-06 22:54:31 UTC (rev 62408) @@ -1155,7 +1155,7 @@ cppunit 410 variants universal portdir devel/cppunit description {unit testing framework for C++} homepage http://cppunit.sourceforge.net/ epoch 0 platforms darwin name cppunit long_description {CppUnit is the C++ port of the famous JUnit framework for unit testing. Test output is in XML or text format for automatic testing and GUI based for supervised tests.} maintainers mww categories devel version 1.12.1 revision 0 cryptlib 767 -variants {darwin darwin_10 sunos} portdir devel/cryptlib description {cryptlib is a powerful security toolkit (library)} homepage http://www.cs.auckland.ac.nz/~pgut001/cryptlib/ epoch 0 platforms {darwin sunos} name cryptlib long_description {cryptlib is a powerful security toolkit that allows even inexperienced crypto programmers to easily add encryption and authentication services to their software. The high-level interface provides anyone with the ability to add strong security capabilities to an application in as little as half an hour, without needing to know any of the low-level details that make the encryption or authentication work.} maintainers nomaintainer depends_extract bin:unzip:unzip categories {devel security crypto} version 3.3.3 revision 0 +variants {darwin darwin_10 sunos} portdir devel/cryptlib description {cryptlib is a powerful security toolkit (library)} homepage http://www.cs.auckland.ac.nz/~pgut001/cryptlib/ epoch 0 platforms {darwin sunos} name cryptlib long_description {cryptlib is a powerful security toolkit that allows even inexperienced crypto programmers to easily add encryption and authentication services to their software. The high-level interface provides anyone with the ability to add strong security capabilities to an application in as little as half an hour, without needing to know any of the low-level details that make the encryption or authentication work.} maintainers nomaintainer depends_extract bin:unzip:unzip categories {devel security crypto} version 3.3.3 revision 1 cryptokit 481 portdir devel/cryptokit description {Objective Caml interface to cryptographic functions.} homepage http://pauillac.inria.fr/~xleroy/software.html epoch 0 platforms darwin name cryptokit depends_lib bin:camlp4:ocaml maintainers avsm long_description {The Cryptokit library for Objective Caml provides a variety of cryptographic primitives that can be used to implement cryptographic protocols in security-sensitive applications.} categories {devel security} version 1.3 revision 0 cscope 598 -------------- next part -------------- An HTML attachment was scrubbed... URL: From markd at macports.org Wed Jan 6 15:28:22 2010 From: markd at macports.org (markd at macports.org) Date: Wed, 6 Jan 2010 15:28:22 -0800 (PST) Subject: [62409] trunk/dports/x11/tktable Message-ID: <20100106232822.DBEA93AC03B2@beta.macosforge.org> Revision: 62409 http://trac.macports.org/changeset/62409 Author: markd at macports.org Date: 2010-01-06 15:28:18 -0800 (Wed, 06 Jan 2010) Log Message: ----------- Update to 2.10. Modified Paths: -------------- trunk/dports/x11/tktable/Portfile Removed Paths: ------------- trunk/dports/x11/tktable/files/patch-configure Modified: trunk/dports/x11/tktable/Portfile =================================================================== --- trunk/dports/x11/tktable/Portfile 2010-01-06 22:54:31 UTC (rev 62408) +++ trunk/dports/x11/tktable/Portfile 2010-01-06 23:28:18 UTC (rev 62409) @@ -2,8 +2,7 @@ PortSystem 1.0 name tktable -version 2.9 -revision 1 +version 2.10 categories x11 maintainers markd description A table/matrix widget extension to Tk/Tcl @@ -12,8 +11,7 @@ platforms darwin master_sites sourceforge distname Tktable${version} -checksums md5 a91cac4270a0c46945723d8f5106e80b -patchfiles patch-configure +checksums md5 ecdd96b39ad49b820bf084eb1c786f66 depends_build \ port:tcl \ Deleted: trunk/dports/x11/tktable/files/patch-configure =================================================================== --- trunk/dports/x11/tktable/files/patch-configure 2010-01-06 22:54:31 UTC (rev 62408) +++ trunk/dports/x11/tktable/files/patch-configure 2010-01-06 23:28:18 UTC (rev 62409) @@ -1,20 +0,0 @@ ---- configure.org 2004-07-22 11:43:15.000000000 -0700 -+++ configure 2006-08-14 08:36:41.000000000 -0700 -@@ -7247,7 +7247,7 @@ - # results, and the version is kept in special file). - - if test -r /etc/.relid -a "X`uname -n`" = "X`uname -s`" ; then -- system=MP-RAS-`awk '{print }' /etc/.relid'` -+ system=MP-RAS-`awk '{print }' /etc/.relid` - fi - if test "`uname -s`" = "AIX" ; then - system=AIX-`uname -v`.`uname -r` -@@ -8651,7 +8651,7 @@ - LD_SEARCH_FLAGS="" - LD_LIBRARY_PATH_VAR="DYLD_LIBRARY_PATH" - CFLAGS_OPTIMIZE="-O3" -- CFLAGS="$CFLAGS -arch ppc -pipe" -+ CFLAGS="$CFLAGS -pipe" - ;; - NEXTSTEP-*) - SHLIB_CFLAGS="" -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Wed Jan 6 15:54:48 2010 From: portindex at macports.org (portindex at macports.org) Date: Wed, 6 Jan 2010 15:54:48 -0800 (PST) Subject: [62410] trunk/dports Message-ID: <20100106235450.B9F103AC13E0@beta.macosforge.org> Revision: 62410 http://trac.macports.org/changeset/62410 Author: portindex at macports.org Date: 2010-01-06 15:54:44 -0800 (Wed, 06 Jan 2010) Log Message: ----------- Total number of ports parsed: 6476 Ports successfully parsed: 6476 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex trunk/dports/PortIndex.quick Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-06 23:28:18 UTC (rev 62409) +++ trunk/dports/PortIndex 2010-01-06 23:54:44 UTC (rev 62410) @@ -2535,7 +2535,7 @@ fbg 549 variants universal portdir games/fbg description {Puzzle game similar to Tetris but with improved graphics.} homepage http://fbg.sourceforge.net/ epoch 0 platforms darwin name fbg depends_lib {path:lib/pkgconfig/sdl.pc:libsdl port:physfs} long_description {Falling Block Game is a puzzle game that is similar to the Hasbro classic, Tetris. Many such games have been released for a variety of platforms, but most have passable graphics or poor gameplay/piece control.} maintainers {jmpp openmaintainer} categories {games aqua} version 0.9 revision 0 fife 480 -depends_build port:scons portdir games/fife description {The FIFE game engine} homepage http://www.fifengine.de/ epoch 0 platforms darwin depends_lib {port:python26 port:libsdl port:libsdl_image port:libsdl_ttf port:boost port:libogg port:libvorbis port:libguichan port:swig-python} name fife maintainers tommyd long_description {FIFE stands for Flexible Isometric Free Engine and is a cross platform game creation framework.} categories {games python} version 0.2.999 revision 1 +depends_build port:scons portdir games/fife description {The FIFE game engine} homepage http://www.fifengine.de/ epoch 0 platforms darwin depends_lib {port:python26 port:libsdl port:libsdl_image port:libsdl_ttf port:boost port:libogg port:libvorbis port:libguichan port:swig-python} name fife maintainers tommyd long_description {FIFE stands for Flexible Isometric Free Engine and is a cross platform game creation framework.} categories {games python} version 0.2.999 revision 2 fizmo 1078 portdir games/fizmo description {Console-based Z-Machine interpreter for Infocom games.} homepage http://spellbreaker.org/~chrender/fizmo/ epoch 0 platforms {darwin linux} name fizmo depends_lib {port:ncursesw port:libsdl_sound port:libsndfile port:libxml2} maintainers spellbreaker.org:Christoph.Ender long_description {Fizmo is a Z-Machine interpreter (Fizmo Interprets Z-Machine Opcodes) which allows you to run Infocom- and most other Z-Machine based games -- except version 6 -- on POSIX-like systems which provide a ncursesw (note the 'w') library. It has been successfully compiled on Debian based Linux, Mac OS X (with MacPorts providing ncursesw) and Windows (using Cygwin and a self-compiled ncursesw library). This is a console-style application, meaning that it runs in textmode and does not provide any GUI whatsoever. For more information about Infocom and interactive fiction, see the 'New to IF' section at http://www.ifarchive.org. Games are available from http://www.ifarchive.org/indexes/if-archiveXgamesXzcode.html} categories games version 0.6.5 revision 0 flobopuyo 350 @@ -12442,8 +12442,8 @@ variants universal portdir x11/tkdiff description {graphical front end to the diff program} homepage http://tkdiff.sourceforge.net/ epoch 0 depends_run port:tk platforms darwin name tkdiff long_description {tkdiff is a graphical front end to the diff program. It provides a side-by-side view of the differences between two files, along with several innovative features such as diff bookmarks and a graphical map of differences for quick navigation.} maintainers nomaintainer categories {x11 devel} version 4.1.4 revision 0 tkregexp 494 portdir x11/tkregexp description {Design and debug regular expressions} homepage http://laurent.riesterer.free.fr/regexp/ epoch 0 depends_run bin:wish8.4:tk platforms darwin name tkregexp maintainers nomaintainer long_description {tkregexp helps you to design or more generally work with regular expressions. As it is often difficult to write the right regexp at the first try, this tool will show you the effet of your regexp on a sample you can choose.} categories x11 version 3.0 revision 0 -tktable 326 -variants universal depends_build {port:tcl port:tk} portdir x11/tktable description {A table/matrix widget extension to Tk/Tcl} homepage http://tktable.sourceforge.net/ epoch 0 platforms darwin name tktable long_description {{A table/matrix widget extension to Tk/Tcl}} maintainers markd categories x11 version 2.9 revision 1 +tktable 327 +variants universal depends_build {port:tcl port:tk} portdir x11/tktable description {A table/matrix widget extension to Tk/Tcl} homepage http://tktable.sourceforge.net/ epoch 0 platforms darwin name tktable long_description {{A table/matrix widget extension to Tk/Tcl}} maintainers markd categories x11 version 2.10 revision 0 twm 554 variants universal depends_build port:pkgconfig portdir x11/twm description {Tab Window Manager for X11} homepage http://www.x.org/ epoch 0 platforms darwin depends_lib port:xorg-libXmu name twm long_description {Twm is a window manager for the X Window System. It provides titlebars, shaped windows, several forms of icon management, user-defined macro functions, click-to-type and pointer-driven keyboard focus, and user-specified key and pointer button bindings.} maintainers {jeremyhu openmaintainer} categories {x11 x11-wm} version 1.0.4 revision 1 unclutter 455 Modified: trunk/dports/PortIndex.quick =================================================================== (Binary files differ) -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Wed Jan 6 18:41:44 2010 From: ryandesign at macports.org (ryandesign at macports.org) Date: Wed, 6 Jan 2010 18:41:44 -0800 (PST) Subject: [62411] trunk/dports/games/fife/Portfile Message-ID: <20100107024145.3128B3AC79C6@beta.macosforge.org> Revision: 62411 http://trac.macports.org/changeset/62411 Author: ryandesign at macports.org Date: 2010-01-06 18:41:41 -0800 (Wed, 06 Jan 2010) Log Message: ----------- fife: fix path in error message Modified Paths: -------------- trunk/dports/games/fife/Portfile Modified: trunk/dports/games/fife/Portfile =================================================================== --- trunk/dports/games/fife/Portfile 2010-01-06 23:54:44 UTC (rev 62410) +++ trunk/dports/games/fife/Portfile 2010-01-07 02:41:41 UTC (rev 62411) @@ -43,7 +43,7 @@ ui_error "so fife's binary module will probably not load " ui_error "correctly into this version of Python. " ui_error "Please execute " - ui_error " sudo ${prefix}/python_select python26 " + ui_error " sudo ${prefix}/bin/python_select python26 " ui_error "and try again. " ui_error "#################################################" return -code error "wrong python version selected" -------------- next part -------------- An HTML attachment was scrubbed... URL: From markd at macports.org Wed Jan 6 19:00:43 2010 From: markd at macports.org (markd at macports.org) Date: Wed, 6 Jan 2010 19:00:43 -0800 (PST) Subject: [62412] trunk/dports/devel/tcllib/Portfile Message-ID: <20100107030043.A96A63AC82D2@beta.macosforge.org> Revision: 62412 http://trac.macports.org/changeset/62412 Author: markd at macports.org Date: 2010-01-06 19:00:42 -0800 (Wed, 06 Jan 2010) Log Message: ----------- Update to 1.12 Modified Paths: -------------- trunk/dports/devel/tcllib/Portfile Modified: trunk/dports/devel/tcllib/Portfile =================================================================== --- trunk/dports/devel/tcllib/Portfile 2010-01-07 02:41:41 UTC (rev 62411) +++ trunk/dports/devel/tcllib/Portfile 2010-01-07 03:00:42 UTC (rev 62412) @@ -2,7 +2,7 @@ PortSystem 1.0 name tcllib -version 1.11.1 +version 1.12 categories devel platforms darwin maintainers nomaintainer @@ -11,9 +11,9 @@ become even more productive with Tcl. homepage http://tcllib.sf.net/ master_sites sourceforge:tcllib -checksums md5 e14f66e3949400e7d359bdb4e294b6a0 \ - sha1 aafc666dfa557fe0b8c4af82d9930b0438cdd660 \ - rmd160 c1ccb34960aee8fee1981c7bf315cb6ef3b34b15 +checksums md5 ad45b523773d2f3707a4c2e4909ed44d \ + sha1 71d211b57fab902a3e7f183fa784cb5801e09f67 \ + rmd160 727f225266c1fd09dbe53feef0ec4f762b0feda3 use_bzip2 yes configure.args --mandir=${prefix}/share/man @@ -24,3 +24,8 @@ depends_lib port:tcl \ path:bin/dot:graphviz \ port:tk + +post-destroot { +# Prevent conflict with tcl port + delete ${destroot}${prefix}/share/man/mann/msgcat.n +} -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Wed Jan 6 19:54:25 2010 From: portindex at macports.org (portindex at macports.org) Date: Wed, 6 Jan 2010 19:54:25 -0800 (PST) Subject: [62413] trunk/dports Message-ID: <20100107035427.CD29C3AC9CDD@beta.macosforge.org> Revision: 62413 http://trac.macports.org/changeset/62413 Author: portindex at macports.org Date: 2010-01-06 19:54:22 -0800 (Wed, 06 Jan 2010) Log Message: ----------- Total number of ports parsed: 6476 Ports successfully parsed: 6476 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex trunk/dports/PortIndex.quick Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-07 03:00:42 UTC (rev 62412) +++ trunk/dports/PortIndex 2010-01-07 03:54:22 UTC (rev 62413) @@ -2168,8 +2168,8 @@ variants universal portdir devel/tcl-tls description {TLS OpenSSL extension to TCL.} homepage http://tls.sourceforge.net epoch 0 platforms darwin name tcl-tls depends_lib port:openssl long_description {TLS is an OpenSSL / RSA-bsafe Tcl extension that provides secure connections on top of the Tcl socket mechanism.} maintainers {jmpp openmaintainer} categories devel version 1.5.0 revision 0 tclcurl 474 variants universal portdir devel/tclcurl description {Tcl binding for libcurl} homepage http://personal1.iddeo.es/andresgarci/tclcurl/english/ epoch 0 platforms darwin name tclcurl depends_lib {port:curl port:tcl} long_description {The TclCurl extension gives Tcl programmers access to the libcurl library written by Daniel Stenberg, with it you can download urls, upload them and many other neat tricks.} maintainers nomaintainer categories devel version 7.17.1 revision 0 -tcllib 387 -variants universal portdir devel/tcllib description {tcllib standardized library} homepage http://tcllib.sf.net/ epoch 0 platforms darwin name tcllib depends_lib {port:tcl path:bin/dot:graphviz port:tk} long_description {tcllib is a set of pure-Tcl extensions that you can use to become even more productive with Tcl.} maintainers nomaintainer categories devel version 1.11.1 revision 0 +tcllib 385 +variants universal portdir devel/tcllib description {tcllib standardized library} homepage http://tcllib.sf.net/ epoch 0 platforms darwin name tcllib depends_lib {port:tcl path:bin/dot:graphviz port:tk} long_description {tcllib is a set of pure-Tcl extensions that you can use to become even more productive with Tcl.} maintainers nomaintainer categories devel version 1.12 revision 0 tclsqlite2 410 variants universal portdir devel/tclsqlite2 description {TCL bindings for the SQLite embedded database engine} homepage http://www.sqlite.org/ epoch 0 platforms darwin name tclsqlite2 depends_lib port:sqlite2 long_description {TCL bindings for the SQLite embedded database engine. This port contains bindings for sqlite 2.x.} maintainers nomaintainer categories {devel databases tcl} version 2.8.17 revision 0 tig 345 Modified: trunk/dports/PortIndex.quick =================================================================== (Binary files differ) -------------- next part -------------- An HTML attachment was scrubbed... URL: From stromnov at macports.org Thu Jan 7 00:37:00 2010 From: stromnov at macports.org (stromnov at macports.org) Date: Thu, 7 Jan 2010 00:37:00 -0800 (PST) Subject: [62414] trunk/dports/databases/postgis/Portfile Message-ID: <20100107083700.60A433AD1AC7@beta.macosforge.org> Revision: 62414 http://trac.macports.org/changeset/62414 Author: stromnov at macports.org Date: 2010-01-07 00:36:58 -0800 (Thu, 07 Jan 2010) Log Message: ----------- postgis: set xlsdir (closes #22613) Modified Paths: -------------- trunk/dports/databases/postgis/Portfile Modified: trunk/dports/databases/postgis/Portfile =================================================================== --- trunk/dports/databases/postgis/Portfile 2010-01-07 03:54:22 UTC (rev 62413) +++ trunk/dports/databases/postgis/Portfile 2010-01-07 08:36:58 UTC (rev 62414) @@ -38,7 +38,8 @@ configure.args \ --datadir=${prefix}/share/${name} \ - --with-projdir=${prefix} + --with-projdir=${prefix} \ + --with-xsldir=${prefix}/share/xsl/docbook-xsl build.target-append comments build.args ICONV_LDFLAGS='-L${prefix}/lib -liconv' -------------- next part -------------- An HTML attachment was scrubbed... URL: From stromnov at macports.org Thu Jan 7 00:50:01 2010 From: stromnov at macports.org (stromnov at macports.org) Date: Thu, 7 Jan 2010 00:50:01 -0800 (PST) Subject: [62415] trunk/dports/databases/postgis/Portfile Message-ID: <20100107085001.ABA4A3AD20AA@beta.macosforge.org> Revision: 62415 http://trac.macports.org/changeset/62415 Author: stromnov at macports.org Date: 2010-01-07 00:50:00 -0800 (Thu, 07 Jan 2010) Log Message: ----------- postgis: disable parallel build Modified Paths: -------------- trunk/dports/databases/postgis/Portfile Modified: trunk/dports/databases/postgis/Portfile =================================================================== --- trunk/dports/databases/postgis/Portfile 2010-01-07 08:36:58 UTC (rev 62414) +++ trunk/dports/databases/postgis/Portfile 2010-01-07 08:50:00 UTC (rev 62415) @@ -36,6 +36,8 @@ port:proj \ port:libiconv +use_parallel_build no + configure.args \ --datadir=${prefix}/share/${name} \ --with-projdir=${prefix} \ -------------- next part -------------- An HTML attachment was scrubbed... URL: From stromnov at macports.org Thu Jan 7 01:49:22 2010 From: stromnov at macports.org (stromnov at macports.org) Date: Thu, 7 Jan 2010 01:49:22 -0800 (PST) Subject: [62416] trunk/dports/graphics Message-ID: <20100107094923.3D8093AD37FB@beta.macosforge.org> Revision: 62416 http://trac.macports.org/changeset/62416 Author: stromnov at macports.org Date: 2010-01-07 01:49:18 -0800 (Thu, 07 Jan 2010) Log Message: ----------- graphics/vlfeat: New port. Added Paths: ----------- trunk/dports/graphics/vlfeat/ trunk/dports/graphics/vlfeat/Portfile trunk/dports/graphics/vlfeat/files/ trunk/dports/graphics/vlfeat/files/patch-Makefile.diff Added: trunk/dports/graphics/vlfeat/Portfile =================================================================== --- trunk/dports/graphics/vlfeat/Portfile (rev 0) +++ trunk/dports/graphics/vlfeat/Portfile 2010-01-07 09:49:18 UTC (rev 62416) @@ -0,0 +1,45 @@ +# -*- 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 vlfeat +version 0.9.5 +categories graphics devel +platforms darwin +maintainers stromnov openmaintainer +description Implementation of SIFT, MSER and other CV algorithms. + +long_description \ + The VLFeat open source library implements popular computer vision \ + algorithms including SIFT, MSER, k-means, hierarchical k-means, \ + agglomerative information bottleneck, and quick shift. + +homepage http://vlfeat.org/ +master_sites http://vlfeat.org/download/ +worksrcdir ${name} + +checksums md5 43abe237f4f4b6956e978a8808dbed12 \ + sha1 1cefeedd0b5f56bf2bbb4f61a7d9d3c04116d70a \ + rmd160 de18bc57582759b420b7f749a4d091be96f5f257 + +patchfiles patch-Makefile.diff + +use_configure no + +post-patch { + reinplace "s|@loader_path/|${prefix}/lib/|g" ${worksrcpath}/Makefile +} + +destroot { + xinstall -m 755 -W ${worksrcpath}/bin/maci libvl.dylib ${destroot}${prefix}/lib + xinstall -m 755 -W ${worksrcpath}/bin/maci sift mser ${destroot}${prefix}/bin + xinstall -d -m 755 ${destroot}${prefix}/include/vl + foreach header [glob -directory ${worksrcpath}/vl *.h] { + xinstall -m 644 $header ${destroot}${prefix}/include/vl + } +} + +livecheck.type regex +livecheck.url ${master_sites} +livecheck.regex "${name}-(\\d+(?:\\.\\d+)*)${extract.suffix}" Property changes on: trunk/dports/graphics/vlfeat/Portfile ___________________________________________________________________ Added: svn:keywords + Id Added: svn:eol-style + native Added: trunk/dports/graphics/vlfeat/files/patch-Makefile.diff =================================================================== --- trunk/dports/graphics/vlfeat/files/patch-Makefile.diff (rev 0) +++ trunk/dports/graphics/vlfeat/files/patch-Makefile.diff 2010-01-07 09:49:18 UTC (rev 62416) @@ -0,0 +1,11 @@ +--- Makefile.orig 2009-04-29 03:57:47.000000000 +0400 ++++ Makefile 2009-10-22 17:19:19.000000000 +0400 +@@ -555,7 +555,7 @@ + + # Auto-deps + ifeq ($(filter doc clean distclean info, $(MAKECMDGOALS)),) +-include $(dll_dep) $(bin_dep) $(mex_dep) ++include $(dll_dep) $(bin_dep) + endif + + # Makefile for documentation -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Thu Jan 7 02:54:43 2010 From: portindex at macports.org (portindex at macports.org) Date: Thu, 7 Jan 2010 02:54:43 -0800 (PST) Subject: [62417] trunk/dports Message-ID: <20100107105446.BD6513AD43CF@beta.macosforge.org> Revision: 62417 http://trac.macports.org/changeset/62417 Author: portindex at macports.org Date: 2010-01-07 02:54:40 -0800 (Thu, 07 Jan 2010) Log Message: ----------- Total number of ports parsed: 6477 Ports successfully parsed: 6477 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex trunk/dports/PortIndex.quick Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-07 09:49:18 UTC (rev 62416) +++ trunk/dports/PortIndex 2010-01-07 10:54:40 UTC (rev 62417) @@ -3554,6 +3554,8 @@ portdir graphics/vigra description {Generic Image Processing Library for C++} homepage http://kogs-www.informatik.uni-hamburg.de/~koethe/vigra/ epoch 0 platforms darwin name vigra depends_lib {port:jpeg port:tiff port:libpng port:zlib port:fftw-3 port:doxygen} maintainers gmail.com:benjamin.seppke long_description {VIGRA stands for {"Vision} with Generic Algorithms\". It's a novel computer vision library that puts its main emphasis on customizable algorithms and data structures. By using template techniques similar to those in the C++ Standard Template Library, you can easily adapt any VIGRA component to the needs of your application, without thereby giving up execution speed.} categories graphics version 1.6.0 revision 2 vips 596 depends_build {port:pkgconfig port:gtk-doc} portdir graphics/vips description {VIPS is an image processing library.} homepage http://www.vips.ecs.soton.ac.uk epoch 0 platforms darwin depends_lib {port:fftw-3 path:lib/pkgconfig/glib-2.0.pc:glib2 port:jpeg port:libpng port:tiff port:ImageMagick port:openexr port:matio port:lcms port:zlib path:lib/pkgconfig/pango.pc:pango port:libexif port:liboil port:libxml2} name vips long_description {VIPS is an image processing library. It's good for large images and for colour.} maintainers gmail.com:jcupitt categories graphics version 7.20.3 revision 1 +vlfeat 452 +portdir graphics/vlfeat description {Implementation of SIFT, MSER and other CV algorithms.} homepage http://vlfeat.org/ epoch 0 platforms darwin name vlfeat maintainers {stromnov openmaintainer} long_description {The VLFeat open source library implements popular computer vision algorithms including SIFT, MSER, k-means, hierarchical k-means, agglomerative information bottleneck, and quick shift.} version 0.9.5 categories {graphics devel} revision 0 VTK 566 variants {darwin x11 universal} depends_build bin:cmake:cmake portdir graphics/vtk description {3D visualization toolkit} homepage http://www.vtk.org/ epoch 0 platforms {darwin freebsd} name VTK long_description {an open source, freely available software system for 3D computer graphics, image processing, and visualization used by thousands of researchers and developers around the world. VTK consists of a C++ class library, and several interpreted interface layers including Tcl/Tk, Java, and Python.} maintainers css categories graphics version 4.4.2 revision 0 vtk-devel 805 Modified: trunk/dports/PortIndex.quick =================================================================== (Binary files differ) -------------- next part -------------- An HTML attachment was scrubbed... URL: From easieste at macports.org Thu Jan 7 03:12:16 2010 From: easieste at macports.org (easieste at macports.org) Date: Thu, 7 Jan 2010 03:12:16 -0800 (PST) Subject: [62418] trunk/dports/lang/slime/Portfile Message-ID: <20100107111217.5EF743AD466F@beta.macosforge.org> Revision: 62418 http://trac.macports.org/changeset/62418 Author: easieste at macports.org Date: 2010-01-07 03:12:13 -0800 (Thu, 07 Jan 2010) Log Message: ----------- New Year, new SLIME. Modified Paths: -------------- trunk/dports/lang/slime/Portfile Modified: trunk/dports/lang/slime/Portfile =================================================================== --- trunk/dports/lang/slime/Portfile 2010-01-07 10:54:40 UTC (rev 62417) +++ trunk/dports/lang/slime/Portfile 2010-01-07 11:12:13 UTC (rev 62418) @@ -4,8 +4,8 @@ PortSystem 1.0 name slime -version 20090905 -epoch 20090905 +version 20100106 +epoch 20100106 revision 0 categories lang platforms darwin @@ -129,7 +129,7 @@ ui_msg "" ui_msg "Then put the following in your ~/.emacs:" ui_msg "" - ui_msg "(setq load-path (cons \"${prefix}/share/emacs/site-lisp/slime\" load-path))" + ui_msg "(add-to-list 'load-path \"${prefix}/share/emacs/site-lisp/slime\")" ui_msg "(require 'slime-autoloads)" ui_msg "(setq slime-lisp-implementations" ui_msg " \`((sbcl (\"${prefix}/bin/sbcl\"))" -------------- next part -------------- An HTML attachment was scrubbed... URL: From nox at macports.org Thu Jan 7 03:21:29 2010 From: nox at macports.org (nox at macports.org) Date: Thu, 7 Jan 2010 03:21:29 -0800 (PST) Subject: [62419] trunk/dports/x11/gtk2/Portfile Message-ID: <20100107112130.047EF3AD47EC@beta.macosforge.org> Revision: 62419 http://trac.macports.org/changeset/62419 Author: nox at macports.org Date: 2010-01-07 03:21:26 -0800 (Thu, 07 Jan 2010) Log Message: ----------- Remove superfluous quartz variant description in gtk2 Modified Paths: -------------- trunk/dports/x11/gtk2/Portfile Modified: trunk/dports/x11/gtk2/Portfile =================================================================== --- trunk/dports/x11/gtk2/Portfile 2010-01-07 11:12:13 UTC (rev 62418) +++ trunk/dports/x11/gtk2/Portfile 2010-01-07 11:21:26 UTC (rev 62419) @@ -186,7 +186,7 @@ } } -variant quartz requires no_x11 conflicts x11 description {Enable Quartz rendering} { +variant quartz requires no_x11 conflicts x11 { configure.args-append --with-gdktarget=quartz } -------------- next part -------------- An HTML attachment was scrubbed... URL: From nox at macports.org Thu Jan 7 03:21:37 2010 From: nox at macports.org (nox at macports.org) Date: Thu, 7 Jan 2010 03:21:37 -0800 (PST) Subject: [62420] trunk/dports/textproc/libxslt/Portfile Message-ID: <20100107112137.8960B3AD4817@beta.macosforge.org> Revision: 62420 http://trac.macports.org/changeset/62420 Author: nox at macports.org Date: 2010-01-07 03:21:36 -0800 (Thu, 07 Jan 2010) Log Message: ----------- Describe debug variant in libxslt Modified Paths: -------------- trunk/dports/textproc/libxslt/Portfile Modified: trunk/dports/textproc/libxslt/Portfile =================================================================== --- trunk/dports/textproc/libxslt/Portfile 2010-01-07 11:21:26 UTC (rev 62419) +++ trunk/dports/textproc/libxslt/Portfile 2010-01-07 11:21:36 UTC (rev 62420) @@ -77,7 +77,7 @@ variant doc description {Install extra documentation} {} -variant debug { +variant debug description {Enable debug support} { configure.cflags-append -O0 -g configure.args-append --with-debugger } -------------- next part -------------- An HTML attachment was scrubbed... URL: From nox at macports.org Thu Jan 7 03:21:47 2010 From: nox at macports.org (nox at macports.org) Date: Thu, 7 Jan 2010 03:21:47 -0800 (PST) Subject: [62421] trunk/dports/graphics/osgswig-devel/Portfile Message-ID: <20100107112147.9CD3D3AD4844@beta.macosforge.org> Revision: 62421 http://trac.macports.org/changeset/62421 Author: nox at macports.org Date: 2010-01-07 03:21:46 -0800 (Thu, 07 Jan 2010) Log Message: ----------- Use svn.revision instead of svn.tag in osgswig-devel Modified Paths: -------------- trunk/dports/graphics/osgswig-devel/Portfile Modified: trunk/dports/graphics/osgswig-devel/Portfile =================================================================== --- trunk/dports/graphics/osgswig-devel/Portfile 2010-01-07 11:21:36 UTC (rev 62420) +++ trunk/dports/graphics/osgswig-devel/Portfile 2010-01-07 11:21:46 UTC (rev 62421) @@ -20,7 +20,7 @@ homepage http://code.google.com/p/osgswig/ fetch.type svn svn.url http://osgswig.googlecode.com/svn/trunk/ -svn.tag ${version} +svn.revision ${version} worksrcdir trunk -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Thu Jan 7 03:54:33 2010 From: portindex at macports.org (portindex at macports.org) Date: Thu, 7 Jan 2010 03:54:33 -0800 (PST) Subject: [62422] trunk/dports/PortIndex Message-ID: <20100107115435.C01D03AD4DFB@beta.macosforge.org> Revision: 62422 http://trac.macports.org/changeset/62422 Author: portindex at macports.org Date: 2010-01-07 03:54:31 -0800 (Thu, 07 Jan 2010) Log Message: ----------- Total number of ports parsed: 6477 Ports successfully parsed: 6477 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-07 11:21:46 UTC (rev 62421) +++ trunk/dports/PortIndex 2010-01-07 11:54:31 UTC (rev 62422) @@ -4617,7 +4617,7 @@ slang2 694 variants universal portdir lang/slang2 description {multi-platform programmer's library} homepage http://www.s-lang.org/ epoch 0 platforms darwin name slang2 depends_lib {port:libiconv port:libpng port:pcre port:zlib} long_description {S-Lang is a multi-platform programmer's library designed to allow a developer to create robust multi-platform software. It provides facilities required by interactive applications such as display/screen management, keyboard input, keymaps, and so on. The most exciting feature of the library is the slang interpreter that may be easily embedded into a program to make it extensible.} maintainers nomaintainer categories {lang devel} version 2.2.2 revision 0 slime 723 -variants {app sbcl openmcl clisp} portdir lang/slime description {An Emacs mode for unifying Common Lisp development} depends_fetch bin:cvs:cvs homepage http://common-lisp.net/project/slime/ epoch 20090905 platforms darwin depends_lib port:emacs name slime long_description {SLIME extends Emacs with new support for interactive programming in Common Lisp. The features are centred around `slime-mode', an Emacs minor-mode that complements the standard `lisp-mode'. While `lisp-mode' supports editing Lisp source files, `slime-mode' adds support for interacting with a running Common Lisp process for compilation, debugging, documentation lookup, and so on.} maintainers easieste categories lang version 20090905 revision 0 +variants {app sbcl openmcl clisp} portdir lang/slime description {An Emacs mode for unifying Common Lisp development} depends_fetch bin:cvs:cvs homepage http://common-lisp.net/project/slime/ epoch 20100106 platforms darwin depends_lib port:emacs name slime long_description {SLIME extends Emacs with new support for interactive programming in Common Lisp. The features are centred around `slime-mode', an Emacs minor-mode that complements the standard `lisp-mode'. While `lisp-mode' supports editing Lisp source files, `slime-mode' adds support for interacting with a running Common Lisp process for compilation, debugging, documentation lookup, and so on.} maintainers easieste categories lang version 20100106 revision 0 sml-mode.el 350 variants docs portdir lang/sml-mode.el description {An EMACS major mode for editing Standard ML} homepage http://www.iro.umontreal.ca/~monnier/elisp/ epoch 0 platforms darwin name sml-mode.el depends_lib port:emacs long_description {{An EMACS major mode for editing Standard ML}} maintainers mcalhoun categories {lang editors} version 4.0 revision 0 smlnj 444 -------------- next part -------------- An HTML attachment was scrubbed... URL: From mnick at macports.org Thu Jan 7 05:34:59 2010 From: mnick at macports.org (mnick at macports.org) Date: Thu, 7 Jan 2010 05:34:59 -0800 (PST) Subject: [62423] trunk/dports/math/R/Portfile Message-ID: <20100107133459.C80723AD62E5@beta.macosforge.org> Revision: 62423 http://trac.macports.org/changeset/62423 Author: mnick at macports.org Date: 2010-01-07 05:34:57 -0800 (Thu, 07 Jan 2010) Log Message: ----------- maintainer update: version 2.10.1 (closes #23174) Modified Paths: -------------- trunk/dports/math/R/Portfile Modified: trunk/dports/math/R/Portfile =================================================================== --- trunk/dports/math/R/Portfile 2010-01-07 11:54:31 UTC (rev 62422) +++ trunk/dports/math/R/Portfile 2010-01-07 13:34:57 UTC (rev 62423) @@ -3,8 +3,7 @@ PortSystem 1.0 name R -version 2.10.0 -revision 1 +version 2.10.1 categories math science maintainers epfl.ch:kjell.konis platforms darwin @@ -25,9 +24,9 @@ http://cran.hu.r-project.org/src/base/R-2/ \ http://cran.r-project.org/src/base/R-2/ -checksums md5 4486934883b1dbcd5400135e22b26a75 \ - sha1 72249c2fd4dc88d76f775c06b0336c8f934fb358 \ - rmd160 a0d335f99d744eba4f03b2082f6e71f1e9269399 +checksums md5 75f8b7e875b846ea96a4c6cc0abc00a4 \ + sha1 f5b1969fde3642c233f5198e44a7bf17a7b85ab6 \ + rmd160 7acf060192f205da4731d0ea3c2cc318b65b7e91 depends_lib port:gettext \ port:icu \ -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Thu Jan 7 05:54:37 2010 From: portindex at macports.org (portindex at macports.org) Date: Thu, 7 Jan 2010 05:54:37 -0800 (PST) Subject: [62424] trunk/dports/PortIndex Message-ID: <20100107135438.DFC0F3AD6777@beta.macosforge.org> Revision: 62424 http://trac.macports.org/changeset/62424 Author: portindex at macports.org Date: 2010-01-07 05:54:36 -0800 (Thu, 07 Jan 2010) Log Message: ----------- Total number of ports parsed: 6477 Ports successfully parsed: 6477 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-07 13:34:57 UTC (rev 62423) +++ trunk/dports/PortIndex 2010-01-07 13:54:36 UTC (rev 62424) @@ -4893,7 +4893,7 @@ ProofGeneral 566 portdir math/ProofGeneral description {An emacs mode for interactive prooving} homepage http://proofgeneral.inf.ed.ac.uk/ epoch 0 platforms darwin name ProofGeneral maintainers mww long_description {The aim of Proof General is to provide powerful and configurable interfaces which help user-interaction with proof assistants. Proof General targets power users rather than novices, but is designed to be useful to both. Proof General leads to an environment for serious proof engineering of interactively-constructed proofs.} version 3.7.1 categories math revision 0 R 818 -variants {darwin_9 darwin_10 gcc42 gcc43 darwin_8} portdir math/R description {R is GNU S - an interpreted language for statistical computing} homepage http://www.r-project.org/ epoch 0 platforms darwin name R depends_lib {port:gettext port:icu path:lib/pkgconfig/glib-2.0.pc:glib2 port:jpeg port:libiconv path:lib/pkgconfig/pango.pc:pango port:readline port:tcl port:tk port:tiff port:xorg-libXmu port:xorg-libXScrnSaver port:gcc43} long_description {R is a language and environment for statistical computing and graphics. R provides a wide variety of statistical (linear and nonlinear modeling, classical statistical tests, time-series analysis, classification, clustering, ...) and graphical techniques, and is highly extensible.} maintainers epfl.ch:kjell.konis categories {math science} version 2.10.0 revision 1 +variants {darwin_9 darwin_10 gcc42 gcc43 darwin_8} portdir math/R description {R is GNU S - an interpreted language for statistical computing} homepage http://www.r-project.org/ epoch 0 platforms darwin name R depends_lib {port:gettext port:icu path:lib/pkgconfig/glib-2.0.pc:glib2 port:jpeg port:libiconv path:lib/pkgconfig/pango.pc:pango port:readline port:tcl port:tk port:tiff port:xorg-libXmu port:xorg-libXScrnSaver port:gcc43} long_description {R is a language and environment for statistical computing and graphics. R provides a wide variety of statistical (linear and nonlinear modeling, classical statistical tests, time-series analysis, classification, clustering, ...) and graphical techniques, and is highly extensible.} maintainers epfl.ch:kjell.konis categories {math science} version 2.10.1 revision 0 SuiteSparse 364 depends_build port:metis portdir math/SuiteSparse description {Sparse matrix routines} homepage http://www.cise.ufl.edu/research/sparse/SuiteSparse/ epoch 0 platforms darwin name SuiteSparse maintainers stechert long_description {SuiteSparse is a single archive that contains all packages authored by Tim Davis.} categories {math science} version 3.4.0 revision 0 aamath 486 -------------- next part -------------- An HTML attachment was scrubbed... URL: From macsforever2000 at macports.org Thu Jan 7 08:07:28 2010 From: macsforever2000 at macports.org (macsforever2000 at macports.org) Date: Thu, 7 Jan 2010 08:07:28 -0800 (PST) Subject: [62425] trunk/dports/fuse/macfuse/Portfile Message-ID: <20100107160728.A655D3AD7CA7@beta.macosforge.org> Revision: 62425 http://trac.macports.org/changeset/62425 Author: macsforever2000 at macports.org Date: 2010-01-07 08:07:27 -0800 (Thu, 07 Jan 2010) Log Message: ----------- Port abandoned. Changed to new maintainer. (#23018) Modified Paths: -------------- trunk/dports/fuse/macfuse/Portfile Modified: trunk/dports/fuse/macfuse/Portfile =================================================================== --- trunk/dports/fuse/macfuse/Portfile 2010-01-07 13:54:36 UTC (rev 62424) +++ trunk/dports/fuse/macfuse/Portfile 2010-01-07 16:07:27 UTC (rev 62425) @@ -7,7 +7,7 @@ version 2.0.3 categories fuse devel platforms macosx -maintainers eridius +maintainers ambulatoryclam.net:dports description A FUSE-Compliant File System Implementation Mechanism for \ Mac OS X -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Thu Jan 7 08:54:34 2010 From: portindex at macports.org (portindex at macports.org) Date: Thu, 7 Jan 2010 08:54:34 -0800 (PST) Subject: [62426] trunk/dports Message-ID: <20100107165437.4F1FD3AD869F@beta.macosforge.org> Revision: 62426 http://trac.macports.org/changeset/62426 Author: portindex at macports.org Date: 2010-01-07 08:54:31 -0800 (Thu, 07 Jan 2010) Log Message: ----------- Total number of ports parsed: 6477 Ports successfully parsed: 6477 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex trunk/dports/PortIndex.quick Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-07 16:07:27 UTC (rev 62425) +++ trunk/dports/PortIndex 2010-01-07 16:54:31 UTC (rev 62426) @@ -2440,8 +2440,8 @@ portdir fuse/gmailfs description {GmailFS provides a mountable filesystem} homepage http://richard.jones.name/google-hacks/gmail-filesystem/gmail-filesystem.html epoch 0 depends_run {port:macfuse port:python25 port:py25-openssl port:py25-libgmail port:fuse-bindings-python25} platforms macosx name gmailfs maintainers {raimue openmaintainer} long_description {Gmail Filesystem provides a mountable filesystem which uses your Gmail account as its storage medium.} categories fuse version 0.8.0 revision 0 libfuse 258 variants universal portdir fuse/libfuse description {dummy port, use macfuse instead} homepage {} epoch 0 platforms darwin name libfuse long_description {{dummy port, use macfuse instead}} maintainers eridius categories {fuse devel} version 2.7.1 revision 3 -macfuse 692 -variants universal portdir fuse/macfuse description {A FUSE-Compliant File System Implementation Mechanism for Mac OS X} homepage http://code.google.com/p/macfuse/ epoch 0 platforms macosx name macfuse long_description {MacFUSE implements a mechanism that makes it possible to implement a fully functional file system in a user-space program on Mac OS X (10.4 and above). It aims to be API-compliant with the FUSE (File-system in USErspace) mechanism that originated on Linux. Therefore, many existing FUSE file systems become readily usable on Mac OS X. The core of MacFUSE is in a dynamically loadable kernel extension.} maintainers eridius categories {fuse devel} version 2.0.3 revision 0 +macfuse 710 +variants universal portdir fuse/macfuse description {A FUSE-Compliant File System Implementation Mechanism for Mac OS X} homepage http://code.google.com/p/macfuse/ epoch 0 platforms macosx name macfuse long_description {MacFUSE implements a mechanism that makes it possible to implement a fully functional file system in a user-space program on Mac OS X (10.4 and above). It aims to be API-compliant with the FUSE (File-system in USErspace) mechanism that originated on Linux. Therefore, many existing FUSE file systems become readily usable on Mac OS X. The core of MacFUSE is in a dynamically loadable kernel extension.} maintainers ambulatoryclam.net:dports categories {fuse devel} version 2.0.3 revision 0 mhddfs 430 portdir fuse/mhddfs description {FUSE-based filesystem for combined mountpoints} homepage http://mhddfs.uvw.ru/ epoch 0 platforms macosx name mhddfs depends_lib {port:macfuse port:libiconv} maintainers gmail.com:mellon85 long_description {This FUSE-based file system allows mount points (or directories) to be combined, simulating a single big volume which can merge several hard disks.} categories fuse version 0.1.10 revision 0 mp3fs 553 Modified: trunk/dports/PortIndex.quick =================================================================== (Binary files differ) -------------- next part -------------- An HTML attachment was scrubbed... URL: From jmr at macports.org Thu Jan 7 09:33:47 2010 From: jmr at macports.org (jmr at macports.org) Date: Thu, 7 Jan 2010 09:33:47 -0800 (PST) Subject: [62427] trunk/dports/fuse/sshfs-gui/Portfile Message-ID: <20100107173347.B34BD3AD8E4D@beta.macosforge.org> Revision: 62427 http://trac.macports.org/changeset/62427 Author: jmr at macports.org Date: 2010-01-07 09:33:45 -0800 (Thu, 07 Jan 2010) Log Message: ----------- sshfs-gui: fix working directory assumption (see #23145) Modified Paths: -------------- trunk/dports/fuse/sshfs-gui/Portfile Modified: trunk/dports/fuse/sshfs-gui/Portfile =================================================================== --- trunk/dports/fuse/sshfs-gui/Portfile 2010-01-07 16:54:31 UTC (rev 62426) +++ trunk/dports/fuse/sshfs-gui/Portfile 2010-01-07 17:33:45 UTC (rev 62427) @@ -31,7 +31,7 @@ xcode.configuration Release post-patch { - reinplace "s|##PREFIX##|${prefix}|" AppController.m + reinplace "s|##PREFIX##|${prefix}|" ${worksrcpath}/AppController.m } post-destroot { -------------- next part -------------- An HTML attachment was scrubbed... URL: From markd at macports.org Thu Jan 7 10:12:31 2010 From: markd at macports.org (markd at macports.org) Date: Thu, 7 Jan 2010 10:12:31 -0800 (PST) Subject: [62428] trunk/dports/net/nrpe/Portfile Message-ID: <20100107181231.F35813ADAE88@beta.macosforge.org> Revision: 62428 http://trac.macports.org/changeset/62428 Author: markd at macports.org Date: 2010-01-07 10:12:30 -0800 (Thu, 07 Jan 2010) Log Message: ----------- Update to 2.12. Modified Paths: -------------- trunk/dports/net/nrpe/Portfile Modified: trunk/dports/net/nrpe/Portfile =================================================================== --- trunk/dports/net/nrpe/Portfile 2010-01-07 17:33:45 UTC (rev 62427) +++ trunk/dports/net/nrpe/Portfile 2010-01-07 18:12:30 UTC (rev 62428) @@ -3,8 +3,7 @@ PortSystem 1.0 name nrpe -version 2.8.1 -revision 1 +version 2.12 categories net maintainers markd description Nagios Remote Plugin Executor @@ -14,7 +13,7 @@ homepage http://nagios.org master_sites sourceforge:nagios platforms darwin -checksums md5 932dbbe899cd069415fb1f4c65ec479e +checksums md5 b2d75e2962f1e3151ef58794d60c9e97 patchfiles patch-init-script.in @@ -26,7 +25,7 @@ --sysconfdir=${prefix}/etc/${name} \ --with-kerberos-inc=/usr/include/kerberosIV \ --enable-ssl \ - --with-ssl-lib=${prefix} \ + --with-ssl-lib=${prefix}/lib \ --with-ssl-inc=${prefix} \ --enable-command-args @@ -38,6 +37,8 @@ adduser nagios addgroup nagios + reinplace "s|dir/libssl.so|dir/libssl.dylib|g" ${worksrcpath}/configure + reinplace "s|__PREFIX__|${prefix}|g" "${worksrcpath}/init-script.in" } -------------- next part -------------- An HTML attachment was scrubbed... URL: From markd at macports.org Thu Jan 7 10:31:43 2010 From: markd at macports.org (markd at macports.org) Date: Thu, 7 Jan 2010 10:31:43 -0800 (PST) Subject: [62429] trunk/dports/net/rrdtool/Portfile Message-ID: <20100107183143.6E0113ADC313@beta.macosforge.org> Revision: 62429 http://trac.macports.org/changeset/62429 Author: markd at macports.org Date: 2010-01-07 10:31:41 -0800 (Thu, 07 Jan 2010) Log Message: ----------- Update to 1.4.2. Modified Paths: -------------- trunk/dports/net/rrdtool/Portfile Modified: trunk/dports/net/rrdtool/Portfile =================================================================== --- trunk/dports/net/rrdtool/Portfile 2010-01-07 18:12:30 UTC (rev 62428) +++ trunk/dports/net/rrdtool/Portfile 2010-01-07 18:31:41 UTC (rev 62429) @@ -3,7 +3,7 @@ PortSystem 1.0 name rrdtool -version 1.3.8 +version 1.4.2 categories net maintainers markd description Round Robin Database @@ -11,7 +11,7 @@ homepage http://oss.oetiker.ch/rrdtool/ platforms darwin master_sites ${homepage}pub/ -checksums md5 0de79494ab969cebfbfae3d237de18fe +checksums md5 9318d3b4016dd9dd9897f1eac7548032 depends_lib port:expat \ path:lib/pkgconfig/glib-2.0.pc:glib2 \ -------------- next part -------------- An HTML attachment was scrubbed... URL: From breskeby at macports.org Thu Jan 7 10:33:32 2010 From: breskeby at macports.org (breskeby at macports.org) Date: Thu, 7 Jan 2010 10:33:32 -0800 (PST) Subject: [62430] trunk/dports/devel/griffon/Portfile Message-ID: <20100107183332.CCF283ADC5F5@beta.macosforge.org> Revision: 62430 http://trac.macports.org/changeset/62430 Author: breskeby at macports.org Date: 2010-01-07 10:33:31 -0800 (Thu, 07 Jan 2010) Log Message: ----------- version bump to 0.2.1 Modified Paths: -------------- trunk/dports/devel/griffon/Portfile Modified: trunk/dports/devel/griffon/Portfile =================================================================== --- trunk/dports/devel/griffon/Portfile 2010-01-07 18:31:41 UTC (rev 62429) +++ trunk/dports/devel/griffon/Portfile 2010-01-07 18:33:31 UTC (rev 62430) @@ -3,10 +3,9 @@ PortSystem 1.0 name griffon -version 0.2 -set branch [join [lrange [split ${version} .] 0 1] .] +version 0.2.1 categories devel java -maintainers nomaintainer +maintainers breskeby platforms darwin description Griffon is a Grails like application framework for developing desktop applications in Groovy. @@ -20,11 +19,11 @@ homepage http://griffon.codehaus.org/ distname ${name}-bin-${version} -master_sites http://dist.codehaus.org/griffon/griffon/${branch}.x +master_sites http://dist.codehaus.org/griffon/griffon/0.2.x -checksums md5 dd3f9268bf9d0c5ebd771c10093417df \ - sha1 c3a01a432709f14ec3b5f4f00f8d98b76be1f650 \ - rmd160 f9b8664f6af33a2b1fb372635abc457f90e47bc1 +checksums md5 f828cbf7bef192006c7b82f53ca7a74e \ + sha1 b85fa7d6b4204395590f34bea731a70adbcde520 \ + rmd160 e8ee9f50294c4376b6fdd66ed5a3180ff269e490 worksrcdir ${name}-${version} set workTarget "" -------------- next part -------------- An HTML attachment was scrubbed... URL: From sharky at macports.org Thu Jan 7 10:40:23 2010 From: sharky at macports.org (sharky at macports.org) Date: Thu, 7 Jan 2010 10:40:23 -0800 (PST) Subject: [62431] trunk/dports/graphics/inkscape Message-ID: <20100107184023.8A1163ADCF80@beta.macosforge.org> Revision: 62431 http://trac.macports.org/changeset/62431 Author: sharky at macports.org Date: 2010-01-07 10:40:22 -0800 (Thu, 07 Jan 2010) Log Message: ----------- inkscape: update to version 0.47 (#22713) Modified Paths: -------------- trunk/dports/graphics/inkscape/Portfile trunk/dports/graphics/inkscape/files/patch-configure.diff Removed Paths: ------------- trunk/dports/graphics/inkscape/files/patch-src-Makefile.in.diff trunk/dports/graphics/inkscape/files/patch-src-extension-internal-pdfinput-pdf-parser.cpp.diff trunk/dports/graphics/inkscape/files/patch-src-widgets-sp-xmlview-attr-list.h.diff Modified: trunk/dports/graphics/inkscape/Portfile =================================================================== --- trunk/dports/graphics/inkscape/Portfile 2010-01-07 18:33:31 UTC (rev 62430) +++ trunk/dports/graphics/inkscape/Portfile 2010-01-07 18:40:22 UTC (rev 62431) @@ -5,8 +5,8 @@ name inkscape conflicts inkscape-devel -version 0.46 -revision 9 +version 0.47 +revision 0 maintainers devans categories graphics gnome platforms darwin @@ -26,11 +26,12 @@ use_bzip2 yes master_sites sourceforge -checksums md5 59997096c3640b2601c2b4afba8a3d75 \ - sha1 ca68fc9bf539d7bcfc31f36d24f884255b2154e7 +checksums md5 7b497c8f673e40b05295a29f6e2111f4 \ + sha1 7c75352f3882ebf4fcaebc22413bcb79bf3b7895 depends_lib port:libgnomeprintui \ port:boehmgc \ + port:gsl \ port:gtkmm \ port:gnome-vfs \ port:libxslt \ @@ -46,10 +47,7 @@ port:ImageMagick \ port:libwpg -patchfiles patch-configure.diff \ - patch-src-Makefile.in.diff \ - patch-src-widgets-sp-xmlview-attr-list.h.diff \ - patch-src-extension-internal-pdfinput-pdf-parser.cpp.diff +patchfiles patch-configure.diff configure.args \ --mandir=${prefix}/share/man \ Modified: trunk/dports/graphics/inkscape/files/patch-configure.diff =================================================================== --- trunk/dports/graphics/inkscape/files/patch-configure.diff 2010-01-07 18:33:31 UTC (rev 62430) +++ trunk/dports/graphics/inkscape/files/patch-configure.diff 2010-01-07 18:40:22 UTC (rev 62431) @@ -1,35 +1,6 @@ ---- configure.orig 2008-05-28 08:01:28.000000000 -0700 -+++ configure 2008-05-28 08:04:09.000000000 -0700 -@@ -802,7 +802,7 @@ - LIBWPG_LIBS - WITH_LIBWPG_TRUE - WITH_LIBWPG_FALSE --MAGICKPP_CONFIG -+IMAGEMAGICK_CFLAGS - IMAGEMAGICK_LIBS - USE_IMAGE_MAGICK_TRUE - USE_IMAGE_MAGICK_FALSE -@@ -857,6 +857,8 @@ - INKBOARD_LIBS - LIBWPG_CFLAGS - LIBWPG_LIBS -+IMAGEMAGICK_CFLAGS -+IMAGEMAGICK_LIBS - INKSCAPE_CFLAGS - INKSCAPE_LIBS - CAIRO_PDF_CFLAGS -@@ -1509,6 +1511,10 @@ - LIBWPG_CFLAGS - C compiler flags for LIBWPG, overriding pkg-config - LIBWPG_LIBS linker flags for LIBWPG, overriding pkg-config -+ IMAGEMAGICK_CFLAGS -+ C compiler flags for IMAGEMAGICK, overriding pkg-config -+ IMAGEMAGICK_LIBS -+ linker flags for IMAGEMAGICK, overriding pkg-config - INKSCAPE_CFLAGS - C compiler flags for INKSCAPE, overriding pkg-config - INKSCAPE_LIBS -@@ -12715,11 +12721,11 @@ +--- configure.orig 2009-11-16 21:46:34.000000000 +0100 ++++ configure 2009-12-22 18:29:41.000000000 +0100 +@@ -9555,11 +9555,11 @@ if test "x$with_python" = "xyes"; then @@ -43,328 +14,3 @@ if test "$?" -gt "0"; then with_python="no" else -@@ -13631,259 +13637,79 @@ - fi - - -+pkg_failed=no -+{ echo "$as_me:$LINENO: checking for IMAGEMAGICK" >&5 -+echo $ECHO_N "checking for IMAGEMAGICK... " >&6; } - -- -- -- --{ echo "$as_me:$LINENO: checking for InitializeMagick in -lMagick++" >&5 --echo $ECHO_N "checking for InitializeMagick in -lMagick++... $ECHO_C" >&6; } --if test "${ac_cv_lib_Magickpp_InitializeMagick+set}" = set; then -- echo $ECHO_N "(cached) $ECHO_C" >&6 --else -- ac_check_lib_save_LIBS=$LIBS --LIBS="-lMagick++ -llcms -lfreetype -ljpeg -lfontconfig -lXext -lSM -lICE -lX11 -lz -lpthread -lm -lpthread $LIBS" --cat >conftest.$ac_ext <<_ACEOF --/* confdefs.h. */ --_ACEOF --cat confdefs.h >>conftest.$ac_ext --cat >>conftest.$ac_ext <<_ACEOF --/* end confdefs.h. */ -- --/* Override any GCC internal prototype to avoid an error. -- Use char because int might match the return type of a GCC -- builtin and then its argument prototype would still apply. */ --#ifdef __cplusplus --extern "C" --#endif --char InitializeMagick (); --int --main () --{ --return InitializeMagick (); -- ; -- return 0; --} --_ACEOF --rm -f conftest.$ac_objext conftest$ac_exeext --if { (ac_try="$ac_link" --case "(($ac_try" in -- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; -- *) ac_try_echo=$ac_try;; --esac --eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 -- (eval "$ac_link") 2>conftest.er1 -+if test -n "$IMAGEMAGICK_CFLAGS"; then -+ pkg_cv_IMAGEMAGICK_CFLAGS="$IMAGEMAGICK_CFLAGS" -+ elif test -n "$PKG_CONFIG"; then -+ if test -n "$PKG_CONFIG" && \ -+ { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"ImageMagick++\"") >&5 -+ ($PKG_CONFIG --exists --print-errors "ImageMagick++") 2>&5 - ac_status=$? -- grep -v '^ *+' conftest.er1 >conftest.err -- rm -f conftest.er1 -- cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 -- (exit $ac_status); } && { -- test -z "$ac_cxx_werror_flag" || -- test ! -s conftest.err -- } && test -s conftest$ac_exeext && -- $as_test_x conftest$ac_exeext; then -- ac_cv_lib_Magickpp_InitializeMagick=yes -+ (exit $ac_status); }; then -+ pkg_cv_IMAGEMAGICK_CFLAGS=`$PKG_CONFIG --cflags "ImageMagick++" 2>/dev/null` - else -- echo "$as_me: failed program was:" >&5 --sed 's/^/| /' conftest.$ac_ext >&5 -- -- ac_cv_lib_Magickpp_InitializeMagick=no --fi -- --rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ -- conftest$ac_exeext conftest.$ac_ext --LIBS=$ac_check_lib_save_LIBS -+ pkg_failed=yes - fi --{ echo "$as_me:$LINENO: result: $ac_cv_lib_Magickpp_InitializeMagick" >&5 --echo "${ECHO_T}$ac_cv_lib_Magickpp_InitializeMagick" >&6; } --if test $ac_cv_lib_Magickpp_InitializeMagick = yes; then -- if test "${ac_cv_header_Magickpp_h+set}" = set; then -- { echo "$as_me:$LINENO: checking for Magick++.h" >&5 --echo $ECHO_N "checking for Magick++.h... $ECHO_C" >&6; } --if test "${ac_cv_header_Magickpp_h+set}" = set; then -- echo $ECHO_N "(cached) $ECHO_C" >&6 -+ else -+ pkg_failed=untried - fi --{ echo "$as_me:$LINENO: result: $ac_cv_header_Magickpp_h" >&5 --echo "${ECHO_T}$ac_cv_header_Magickpp_h" >&6; } --else -- # Is the header compilable? --{ echo "$as_me:$LINENO: checking Magick++.h usability" >&5 --echo $ECHO_N "checking Magick++.h usability... $ECHO_C" >&6; } --cat >conftest.$ac_ext <<_ACEOF --/* confdefs.h. */ --_ACEOF --cat confdefs.h >>conftest.$ac_ext --cat >>conftest.$ac_ext <<_ACEOF --/* end confdefs.h. */ --$ac_includes_default --#include --_ACEOF --rm -f conftest.$ac_objext --if { (ac_try="$ac_compile" --case "(($ac_try" in -- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; -- *) ac_try_echo=$ac_try;; --esac --eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 -- (eval "$ac_compile") 2>conftest.er1 -+if test -n "$IMAGEMAGICK_LIBS"; then -+ pkg_cv_IMAGEMAGICK_LIBS="$IMAGEMAGICK_LIBS" -+ elif test -n "$PKG_CONFIG"; then -+ if test -n "$PKG_CONFIG" && \ -+ { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"ImageMagick++\"") >&5 -+ ($PKG_CONFIG --exists --print-errors "ImageMagick++") 2>&5 - ac_status=$? -- grep -v '^ *+' conftest.er1 >conftest.err -- rm -f conftest.er1 -- cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 -- (exit $ac_status); } && { -- test -z "$ac_cxx_werror_flag" || -- test ! -s conftest.err -- } && test -s conftest.$ac_objext; then -- ac_header_compiler=yes -+ (exit $ac_status); }; then -+ pkg_cv_IMAGEMAGICK_LIBS=`$PKG_CONFIG --libs "ImageMagick++" 2>/dev/null` - else -- echo "$as_me: failed program was:" >&5 --sed 's/^/| /' conftest.$ac_ext >&5 -- -- ac_header_compiler=no -+ pkg_failed=yes - fi -- --rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext --{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 --echo "${ECHO_T}$ac_header_compiler" >&6; } -- --# Is the header present? --{ echo "$as_me:$LINENO: checking Magick++.h presence" >&5 --echo $ECHO_N "checking Magick++.h presence... $ECHO_C" >&6; } --cat >conftest.$ac_ext <<_ACEOF --/* confdefs.h. */ --_ACEOF --cat confdefs.h >>conftest.$ac_ext --cat >>conftest.$ac_ext <<_ACEOF --/* end confdefs.h. */ --#include --_ACEOF --if { (ac_try="$ac_cpp conftest.$ac_ext" --case "(($ac_try" in -- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; -- *) ac_try_echo=$ac_try;; --esac --eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 -- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 -- ac_status=$? -- grep -v '^ *+' conftest.er1 >conftest.err -- rm -f conftest.er1 -- cat conftest.err >&5 -- echo "$as_me:$LINENO: \$? = $ac_status" >&5 -- (exit $ac_status); } >/dev/null && { -- test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || -- test ! -s conftest.err -- }; then -- ac_header_preproc=yes --else -- echo "$as_me: failed program was:" >&5 --sed 's/^/| /' conftest.$ac_ext >&5 -- -- ac_header_preproc=no -+ else -+ pkg_failed=untried - fi - --rm -f conftest.err conftest.$ac_ext --{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 --echo "${ECHO_T}$ac_header_preproc" >&6; } - --# So? What about this header? --case $ac_header_compiler:$ac_header_preproc:$ac_cxx_preproc_warn_flag in -- yes:no: ) -- { echo "$as_me:$LINENO: WARNING: Magick++.h: accepted by the compiler, rejected by the preprocessor!" >&5 --echo "$as_me: WARNING: Magick++.h: accepted by the compiler, rejected by the preprocessor!" >&2;} -- { echo "$as_me:$LINENO: WARNING: Magick++.h: proceeding with the compiler's result" >&5 --echo "$as_me: WARNING: Magick++.h: proceeding with the compiler's result" >&2;} -- ac_header_preproc=yes -- ;; -- no:yes:* ) -- { echo "$as_me:$LINENO: WARNING: Magick++.h: present but cannot be compiled" >&5 --echo "$as_me: WARNING: Magick++.h: present but cannot be compiled" >&2;} -- { echo "$as_me:$LINENO: WARNING: Magick++.h: check for missing prerequisite headers?" >&5 --echo "$as_me: WARNING: Magick++.h: check for missing prerequisite headers?" >&2;} -- { echo "$as_me:$LINENO: WARNING: Magick++.h: see the Autoconf documentation" >&5 --echo "$as_me: WARNING: Magick++.h: see the Autoconf documentation" >&2;} -- { echo "$as_me:$LINENO: WARNING: Magick++.h: section \"Present But Cannot Be Compiled\"" >&5 --echo "$as_me: WARNING: Magick++.h: section \"Present But Cannot Be Compiled\"" >&2;} -- { echo "$as_me:$LINENO: WARNING: Magick++.h: proceeding with the preprocessor's result" >&5 --echo "$as_me: WARNING: Magick++.h: proceeding with the preprocessor's result" >&2;} -- { echo "$as_me:$LINENO: WARNING: Magick++.h: in the future, the compiler will take precedence" >&5 --echo "$as_me: WARNING: Magick++.h: in the future, the compiler will take precedence" >&2;} - -- ;; --esac --{ echo "$as_me:$LINENO: checking for Magick++.h" >&5 --echo $ECHO_N "checking for Magick++.h... $ECHO_C" >&6; } --if test "${ac_cv_header_Magickpp_h+set}" = set; then -- echo $ECHO_N "(cached) $ECHO_C" >&6 --else -- ac_cv_header_Magickpp_h=$ac_header_preproc --fi --{ echo "$as_me:$LINENO: result: $ac_cv_header_Magickpp_h" >&5 --echo "${ECHO_T}$ac_cv_header_Magickpp_h" >&6; } -+if test $pkg_failed = yes; then - --fi --if test $ac_cv_header_Magickpp_h = yes; then -- magick_ok=yes -+if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then -+ _pkg_short_errors_supported=yes - else -- magick_ok=no -+ _pkg_short_errors_supported=no - fi -+ if test $_pkg_short_errors_supported = yes; then -+ IMAGEMAGICK_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "ImageMagick++" 2>&1` -+ else -+ IMAGEMAGICK_PKG_ERRORS=`$PKG_CONFIG --print-errors "ImageMagick++" 2>&1` -+ fi -+ # Put the nasty error message in config.log where it belongs -+ echo "$IMAGEMAGICK_PKG_ERRORS" >&5 - -- -+ { echo "$as_me:$LINENO: result: no" >&5 -+echo "no" >&6; } -+ magick_ok=no -+elif test $pkg_failed = untried; then -+ magick_ok=no - else -- magick_ok=no -+ IMAGEMAGICK_CFLAGS=$pkg_cv_IMAGEMAGICK_CFLAGS -+ IMAGEMAGICK_LIBS=$pkg_cv_IMAGEMAGICK_LIBS -+ { echo "$as_me:$LINENO: result: yes" >&5 -+echo "yes" >&6; } -+ magick_ok=yes - fi -- -- - if test "x$magick_ok" = "xyes"; then -- # Extract the first word of "Magick++-config", so it can be a program name with args. --set dummy Magick++-config; ac_word=$2 --{ echo "$as_me:$LINENO: checking for $ac_word" >&5 --echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } --if test "${ac_cv_prog_MAGICKPP_CONFIG+set}" = set; then -- echo $ECHO_N "(cached) $ECHO_C" >&6 --else -- if test -n "$MAGICKPP_CONFIG"; then -- ac_cv_prog_MAGICKPP_CONFIG="$MAGICKPP_CONFIG" # Let the user override the test. --else --as_save_IFS=$IFS; IFS=$PATH_SEPARATOR --for as_dir in $PATH --do -- IFS=$as_save_IFS -- test -z "$as_dir" && as_dir=. -- for ac_exec_ext in '' $ac_executable_extensions; do -- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then -- ac_cv_prog_MAGICKPP_CONFIG="yes" -- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 -- break 2 -- fi --done --done --IFS=$as_save_IFS -- -- test -z "$ac_cv_prog_MAGICKPP_CONFIG" && ac_cv_prog_MAGICKPP_CONFIG="no" --fi --fi --MAGICKPP_CONFIG=$ac_cv_prog_MAGICKPP_CONFIG --if test -n "$MAGICKPP_CONFIG"; then -- { echo "$as_me:$LINENO: result: $MAGICKPP_CONFIG" >&5 --echo "${ECHO_T}$MAGICKPP_CONFIG" >&6; } --else -- { echo "$as_me:$LINENO: result: no" >&5 --echo "${ECHO_T}no" >&6; } --fi -- -- -- if test "x$MAGICKPP_CONFIG" = "xyes"; then -- IMAGEMAGICK_LIBS=`Magick++-config --libs` -- - - cat >>confdefs.h <<\_ACEOF - #define WITH_IMAGE_MAGICK 1 - _ACEOF - -- fi - fi -- - if test "x$magick_ok" = "xyes"; then - USE_IMAGE_MAGICK_TRUE= - USE_IMAGE_MAGICK_FALSE='#' -@@ -13894,6 +13720,9 @@ - - - -+ -+ -+ - if test $cc_vers_major -gt 3; then - min_sigc_version=2.0.12 - else -@@ -19146,7 +18975,7 @@ - LIBWPG_LIBS!$LIBWPG_LIBS$ac_delim - WITH_LIBWPG_TRUE!$WITH_LIBWPG_TRUE$ac_delim - WITH_LIBWPG_FALSE!$WITH_LIBWPG_FALSE$ac_delim --MAGICKPP_CONFIG!$MAGICKPP_CONFIG$ac_delim -+IMAGEMAGICK_CFLAGS!$IMAGEMAGICK_CFLAGS$ac_delim - IMAGEMAGICK_LIBS!$IMAGEMAGICK_LIBS$ac_delim - USE_IMAGE_MAGICK_TRUE!$USE_IMAGE_MAGICK_TRUE$ac_delim - USE_IMAGE_MAGICK_FALSE!$USE_IMAGE_MAGICK_FALSE$ac_delim Deleted: trunk/dports/graphics/inkscape/files/patch-src-Makefile.in.diff =================================================================== --- trunk/dports/graphics/inkscape/files/patch-src-Makefile.in.diff 2010-01-07 18:33:31 UTC (rev 62430) +++ trunk/dports/graphics/inkscape/files/patch-src-Makefile.in.diff 2010-01-07 18:40:22 UTC (rev 62431) @@ -1,18 +0,0 @@ ---- src/Makefile.in.orig 2008-05-28 07:30:24.000000000 -0700 -+++ src/Makefile.in 2008-05-28 07:32:26.000000000 -0700 -@@ -1330,6 +1330,7 @@ - GNOME_VFS_CFLAGS = @GNOME_VFS_CFLAGS@ - GNOME_VFS_LIBS = @GNOME_VFS_LIBS@ - GREP = @GREP@ -+IMAGEMAGICK_CFLAGS = @IMAGEMAGICK_CFLAGS@ - IMAGEMAGICK_LIBS = @IMAGEMAGICK_LIBS@ - INKBOARD_CFLAGS = @INKBOARD_CFLAGS@ - INKBOARD_LIBS = @INKBOARD_LIBS@ -@@ -1480,6 +1481,7 @@ - $(FREETYPE_CFLAGS) \ - $(GNOME_PRINT_CFLAGS) \ - $(GNOME_VFS_CFLAGS) \ -+ $(IMAGEMAGICK_CFLAGS) \ - $(INKBOARD_CFLAGS) \ - $(LIBWPG_CFLAGS) \ - $(XFT_CFLAGS) \ Deleted: trunk/dports/graphics/inkscape/files/patch-src-extension-internal-pdfinput-pdf-parser.cpp.diff =================================================================== --- trunk/dports/graphics/inkscape/files/patch-src-extension-internal-pdfinput-pdf-parser.cpp.diff 2010-01-07 18:33:31 UTC (rev 62430) +++ trunk/dports/graphics/inkscape/files/patch-src-extension-internal-pdfinput-pdf-parser.cpp.diff 2010-01-07 18:40:22 UTC (rev 62431) @@ -1,166 +0,0 @@ ---- src/extension/internal/pdfinput/pdf-parser.cpp.orig 2008/03/29 09:49:50 18077 -+++ src/extension/internal/pdfinput/pdf-parser.cpp 2008/06/12 18:14:25 18894 -@@ -2191,6 +2191,153 @@ - } - } - -+ -+#define POPPLER_NEW_GFXFONT -+ -+#ifdef POPPLER_NEW_GFXFONT -+ -+/** -+ * This is for the change to GfxFont's getNextChar() call. -+ * Thanks to tsdgeos for the fix. -+ * Miklos, does this look ok? -+ */ -+ -+void PdfParser::doShowText(GooString *s) { -+ GfxFont *font; -+ int wMode; -+ double riseX, riseY; -+ CharCode code; -+ Unicode *u = NULL; -+ double x, y, dx, dy, dx2, dy2, curX, curY, tdx, tdy, lineX, lineY; -+ double originX, originY, tOriginX, tOriginY; -+ double oldCTM[6], newCTM[6]; -+ double *mat; -+ Object charProc; -+ Dict *resDict; -+ Parser *oldParser; -+ char *p; -+ int len, n, uLen, nChars, nSpaces, i; -+ -+ font = state->getFont(); -+ wMode = font->getWMode(); -+ -+ builder->beginString(state, s); -+ -+ // handle a Type 3 char -+ if (font->getType() == fontType3 && 0) {//out->interpretType3Chars()) { -+ mat = state->getCTM(); -+ for (i = 0; i < 6; ++i) { -+ oldCTM[i] = mat[i]; -+ } -+ mat = state->getTextMat(); -+ newCTM[0] = mat[0] * oldCTM[0] + mat[1] * oldCTM[2]; -+ newCTM[1] = mat[0] * oldCTM[1] + mat[1] * oldCTM[3]; -+ newCTM[2] = mat[2] * oldCTM[0] + mat[3] * oldCTM[2]; -+ newCTM[3] = mat[2] * oldCTM[1] + mat[3] * oldCTM[3]; -+ mat = font->getFontMatrix(); -+ newCTM[0] = mat[0] * newCTM[0] + mat[1] * newCTM[2]; -+ newCTM[1] = mat[0] * newCTM[1] + mat[1] * newCTM[3]; -+ newCTM[2] = mat[2] * newCTM[0] + mat[3] * newCTM[2]; -+ newCTM[3] = mat[2] * newCTM[1] + mat[3] * newCTM[3]; -+ newCTM[0] *= state->getFontSize(); -+ newCTM[1] *= state->getFontSize(); -+ newCTM[2] *= state->getFontSize(); -+ newCTM[3] *= state->getFontSize(); -+ newCTM[0] *= state->getHorizScaling(); -+ newCTM[2] *= state->getHorizScaling(); -+ state->textTransformDelta(0, state->getRise(), &riseX, &riseY); -+ curX = state->getCurX(); -+ curY = state->getCurY(); -+ lineX = state->getLineX(); -+ lineY = state->getLineY(); -+ oldParser = parser; -+ p = s->getCString(); -+ len = s->getLength(); -+ while (len > 0) { -+ n = font->getNextChar(p, len, &code, -+ &u, &uLen, -+ &dx, &dy, &originX, &originY); -+ dx = dx * state->getFontSize() + state->getCharSpace(); -+ if (n == 1 && *p == ' ') { -+ dx += state->getWordSpace(); -+ } -+ dx *= state->getHorizScaling(); -+ dy *= state->getFontSize(); -+ state->textTransformDelta(dx, dy, &tdx, &tdy); -+ state->transform(curX + riseX, curY + riseY, &x, &y); -+ saveState(); -+ state->setCTM(newCTM[0], newCTM[1], newCTM[2], newCTM[3], x, y); -+ //~ the CTM concat values here are wrong (but never used) -+ //out->updateCTM(state, 1, 0, 0, 1, 0, 0); -+ if (0){ /*!out->beginType3Char(state, curX + riseX, curY + riseY, tdx, tdy, -+ code, u, uLen)) {*/ -+ ((Gfx8BitFont *)font)->getCharProc(code, &charProc); -+ if ((resDict = ((Gfx8BitFont *)font)->getResources())) { -+ pushResources(resDict); -+ } -+ if (charProc.isStream()) { -+ //parse(&charProc, gFalse); // TODO: parse into SVG font -+ } else { -+ error(getPos(), "Missing or bad Type3 CharProc entry"); -+ } -+ //out->endType3Char(state); -+ if (resDict) { -+ popResources(); -+ } -+ charProc.free(); -+ } -+ restoreState(); -+ // GfxState::restore() does *not* restore the current position, -+ // so we deal with it here using (curX, curY) and (lineX, lineY) -+ curX += tdx; -+ curY += tdy; -+ state->moveTo(curX, curY); -+ state->textSetPos(lineX, lineY); -+ p += n; -+ len -= n; -+ } -+ parser = oldParser; -+ -+ } else { -+ state->textTransformDelta(0, state->getRise(), &riseX, &riseY); -+ p = s->getCString(); -+ len = s->getLength(); -+ while (len > 0) { -+ n = font->getNextChar(p, len, &code, -+ &u, &uLen, -+ &dx, &dy, &originX, &originY); -+ -+ if (wMode) { -+ dx *= state->getFontSize(); -+ dy = dy * state->getFontSize() + state->getCharSpace(); -+ if (n == 1 && *p == ' ') { -+ dy += state->getWordSpace(); -+ } -+ } else { -+ dx = dx * state->getFontSize() + state->getCharSpace(); -+ if (n == 1 && *p == ' ') { -+ dx += state->getWordSpace(); -+ } -+ dx *= state->getHorizScaling(); -+ dy *= state->getFontSize(); -+ } -+ state->textTransformDelta(dx, dy, &tdx, &tdy); -+ originX *= state->getFontSize(); -+ originY *= state->getFontSize(); -+ state->textTransformDelta(originX, originY, &tOriginX, &tOriginY); -+ builder->addChar(state, state->getCurX() + riseX, state->getCurY() + riseY, -+ dx, dy, tOriginX, tOriginY, code, n, u, uLen); -+ state->shift(tdx, tdy); -+ p += n; -+ len -= n; -+ } -+ } -+ -+ builder->endString(state); -+} -+ -+#else /* !POPPLER_NEW_GFXFONT */ -+ - void PdfParser::doShowText(GooString *s) { - GfxFont *font; - int wMode; -@@ -2325,6 +2470,9 @@ - builder->endString(state); - } - -+#endif /* POPPLER_NEW_GFXFONT */ -+ -+ - //------------------------------------------------------------------------ - // XObject operators - //------------------------------------------------------------------------ Deleted: trunk/dports/graphics/inkscape/files/patch-src-widgets-sp-xmlview-attr-list.h.diff =================================================================== --- trunk/dports/graphics/inkscape/files/patch-src-widgets-sp-xmlview-attr-list.h.diff 2010-01-07 18:33:31 UTC (rev 62430) +++ trunk/dports/graphics/inkscape/files/patch-src-widgets-sp-xmlview-attr-list.h.diff 2010-01-07 18:40:22 UTC (rev 62431) @@ -1,9 +0,0 @@ ---- src/widgets/sp-xmlview-attr-list.h 2008-06-24 13:38:07.000000000 +0200 -+++ src/widgets/sp-xmlview-attr-list.h 2008-07-05 13:03:50.000000000 +0200 -@@ -13,6 +13,7 @@ - */ - - #include -+#include - #include - #include "../xml/repr.h" -------------- next part -------------- An HTML attachment was scrubbed... URL: From markd at macports.org Thu Jan 7 10:48:27 2010 From: markd at macports.org (markd at macports.org) Date: Thu, 7 Jan 2010 10:48:27 -0800 (PST) Subject: [62432] trunk/dports/net/ntop/Portfile Message-ID: <20100107184827.9D7F13ADD9D9@beta.macosforge.org> Revision: 62432 http://trac.macports.org/changeset/62432 Author: markd at macports.org Date: 2010-01-07 10:48:26 -0800 (Thu, 07 Jan 2010) Log Message: ----------- Update to 3.3.10. Modified Paths: -------------- trunk/dports/net/ntop/Portfile Modified: trunk/dports/net/ntop/Portfile =================================================================== --- trunk/dports/net/ntop/Portfile 2010-01-07 18:40:22 UTC (rev 62431) +++ trunk/dports/net/ntop/Portfile 2010-01-07 18:48:26 UTC (rev 62432) @@ -3,8 +3,7 @@ PortSystem 1.0 name ntop -version 3.3.9 -revision 2 +version 3.3.10 categories net maintainers markd description network traffic probe @@ -14,7 +13,7 @@ homepage http://www.ntop.org/ master_sites sourceforge -checksums md5 0c22038e0f2aa003110437b5a5d5a6a5 +checksums md5 6e2ffa90d5f935c8f03d88a5dd19a866 patchfiles patch-external-geoip.diff -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Thu Jan 7 10:54:31 2010 From: portindex at macports.org (portindex at macports.org) Date: Thu, 7 Jan 2010 10:54:31 -0800 (PST) Subject: [62433] trunk/dports Message-ID: <20100107185432.D67413ADE143@beta.macosforge.org> Revision: 62433 http://trac.macports.org/changeset/62433 Author: portindex at macports.org Date: 2010-01-07 10:54:29 -0800 (Thu, 07 Jan 2010) Log Message: ----------- Total number of ports parsed: 6477 Ports successfully parsed: 6477 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex trunk/dports/PortIndex.quick Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-07 18:48:26 UTC (rev 62432) +++ trunk/dports/PortIndex 2010-01-07 18:54:29 UTC (rev 62433) @@ -1402,8 +1402,8 @@ variants darwin portdir devel/grails description {An open-source web application framework that leverages the Groovy language} homepage http://www.grails.org/ epoch 0 platforms darwin name grails long_description {Grails aims to bring the {coding by convention} paradigm to Groovy. It's an open-source web application framework that leverages the Groovy language and complements Java Web development. You can use Grails as a standalone development environment that hides all configuration details or integrate your Java business logic. Grails aims to make development as simple as possible and hence should appeal to a wide range of developers not just those from the Java community.} maintainers breskeby depends_extract bin:unzip:unzip categories {devel java} version 1.2.0 revision 0 grails-devel 803 variants darwin portdir devel/grails-devel description {An open-source web application framework that leverages the Groovy language} homepage http://www.grails.org/ epoch 0 platforms darwin name grails-devel long_description {Grails aims to bring the {coding by convention} paradigm to Groovy. It's an open-source web application framework that leverages the Groovy language and complements Java Web development. You can use Grails as a standalone development environment that hides all configuration details or integrate your Java business logic. Grails aims to make development as simple as possible and hence should appeal to a wide range of developers not just those from the Java community.} maintainers breskeby depends_extract bin:unzip:unzip categories {devel java} version 1.2.0.RC2 revision 0 -griffon 771 -portdir devel/griffon description {Griffon is a Grails like application framework for developing desktop applications in Groovy.} homepage http://griffon.codehaus.org/ epoch 0 platforms darwin name griffon maintainers nomaintainer long_description {Griffon aims to bring the {coding by convention} paradigm to Groovy. It is an open-source application framework that leverages the Groovy language and complements Java desktop development. You can use Griffon as a standalone development environment that hides all configuration details or integrate your Java business logic. Griffon aims to make development as simple as possible and hence should appeal to a wide range of developers not just those from the Java community.} version 0.2 categories {devel java} revision 0 +griffon 769 +portdir devel/griffon description {Griffon is a Grails like application framework for developing desktop applications in Groovy.} homepage http://griffon.codehaus.org/ epoch 0 platforms darwin name griffon maintainers breskeby long_description {Griffon aims to bring the {coding by convention} paradigm to Groovy. It is an open-source application framework that leverages the Groovy language and complements Java desktop development. You can use Griffon as a standalone development environment that hides all configuration details or integrate your Java business logic. Griffon aims to make development as simple as possible and hence should appeal to a wide range of developers not just those from the Java community.} version 0.2.1 categories {devel java} revision 0 gsoap 576 variants universal portdir devel/gsoap description {offers an XML to C/C++ language binding to ease the development of SOAP/XML Web services in C and C/C++} homepage http://www.cs.fsu.edu/~engelen/soap.html epoch 0 platforms darwin name gsoap long_description {The gSOAP toolkit is a cross-platform development environment for C and C++ SOAP/XML Web services (SOAP 1.1/1.2, WSDL 1.1). gSOAP supports XML serialization of native C/C++ data types. Includes stub/skeleton compiler, HTTP Web server, and much more.} maintainers stechert categories devel version 2.7.13 revision 0 gtgt 837 @@ -3350,8 +3350,8 @@ portdir graphics/imlib description {Graphics library related to the enlightenment window manager} homepage http://www.enlightenment.org/pages/imlib.html epoch 0 platforms darwin name imlib depends_lib {port:gtk1 port:jpeg port:tiff path:include/gif_lib.h:giflib port:libpng} maintainers nomaintainer long_description {Imlib is an advanced graphics library meant to replace existing libraries like libXpm, and provides many more features with much greater flexibility and speed.} categories {graphics devel} version 1.9.15 revision 2 imlib2 755 variants {i386 universal} depends_build {port:pkgconfig port:autoconf port:automake port:libtool} portdir graphics/imlib2 description {Image loading and rendering library} homepage http://www.enlightenment.org/pages/imlib2.html epoch 0 platforms darwin depends_lib {port:xorg-libX11 port:xorg-libXext port:libpng port:jpeg port:freetype port:zlib port:giflib port:libid3tag} name imlib2 long_description {Imlib is a general Image loading and rendering library designed to make the task of loading images, and obtaining X-Windows drawables a simple task, as well as a quick one. It also aims to provide simple manipulation routines that might be desired for common operations.} maintainers nomaintainer categories {graphics devel} version 1.4.2 revision 1 -inkscape 775 -variants {disable_debugging enable_debugging} portdir graphics/inkscape description {Inkscape is an open source SVG editor.} homepage http://www.inkscape.org/ epoch 0 platforms darwin depends_lib {port:libgnomeprintui port:boehmgc port:gtkmm port:gnome-vfs port:libxslt port:lcms port:dbus port:dbus-glib port:py25-xml port:libcroco port:poppler port:py25-numpy port:py25-lxml port:boost port:ImageMagick port:libwpg} name inkscape long_description {Inkscape is an open source SVG editor with capabilities similar to Illustrator, CorelDraw, Visio, etc. Supported SVG features include basic shapes, paths, text, alpha blending, transforms, gradients, node editing, svg-to-png export, grouping, and more.} maintainers devans categories {graphics gnome} version 0.46 revision 9 +inkscape 784 +variants {disable_debugging enable_debugging} portdir graphics/inkscape description {Inkscape is an open source SVG editor.} homepage http://www.inkscape.org/ epoch 0 platforms darwin depends_lib {port:libgnomeprintui port:boehmgc port:gsl port:gtkmm port:gnome-vfs port:libxslt port:lcms port:dbus port:dbus-glib port:py25-xml port:libcroco port:poppler port:py25-numpy port:py25-lxml port:boost port:ImageMagick port:libwpg} name inkscape long_description {Inkscape is an open source SVG editor with capabilities similar to Illustrator, CorelDraw, Visio, etc. Supported SVG features include basic shapes, paths, text, alpha blending, transforms, gradients, node editing, svg-to-png export, grouping, and more.} maintainers devans categories {graphics gnome} version 0.47 revision 0 inkscape-devel 901 variants {no_x11 enable_debugging} depends_build {port:pkgconfig port:autoconf port:automake port:p5-xml-parser port:intltool} portdir graphics/inkscape-devel depends_fetch port:subversion description {Unstable development version of Inkscape from recent SVN leading up to release of version 0.47.} homepage http://www.inkscape.org/ depends_run port:ghostscript epoch 1 platforms darwin name inkscape-devel depends_lib {port:boehmgc port:poppler port:lcms port:libwpg port:ImageMagick port:gtkmm port:aspell-dict-en port:gtkspell2 port:gsl port:boost} long_description {Inkscape is an open source SVG editor with capabilities similar to Illustrator, CorelDraw, Visio, etc. Supported SVG features include basic shapes, paths, text, alpha blending, transforms, gradients, node editing, svg-to-png export, grouping, and more.} maintainers devans categories {graphics gnome} version 0.46.22457 revision 0 ivtools 471 @@ -5856,8 +5856,8 @@ variants {no_ssl no_pcre zenmap universal} portdir net/nmap description {Port scanning utility for large networks} homepage http://nmap.org/ epoch 0 platforms {darwin freebsd} name nmap depends_lib {port:libpcap port:openssl port:pcre port:zlib} long_description {Nmap is a utility for port scanning large networks, although it works fine for single hosts. The guiding philosophy for the creation of nmap was TMTOWTDI (There's More Than One Way To Do It). This is the Perl slogan, but it is equally applicable to scanners. Sometimes you need speed, other times you may need stealth. In some cases, bypassing firewalls may be required. Not to mention the fact that you may want to scan different protocols (UDP, TCP, ICMP, etc.). You just can't do all this with one scanning mode. And you don't want to have 10 different scanners around, all with different interfaces and capabilities.} maintainers {darkart.com:opendarwin.org geeklair.net:dluke} categories net version 5.00 revision 0 nrg 547 variants {i386 pingd_server universal} portdir net/nrg description {Network Resource Grapher} homepage http://nrg.hep.wisc.edu/ epoch 0 platforms darwin name nrg depends_lib {port:rrdtool port:p5-time-hires} long_description {NRG is an RRDtool front-end tool to monitor traffic and load on network links or any other resource utilization source. It automatically creates and maintains web pages and RRDtool databases, while providing short and long-term graph web pages just like MRTG.} maintainers markd categories net version 0.99.27 revision 0 -nrpe 310 -variants universal portdir net/nrpe description {Nagios Remote Plugin Executor} homepage http://nagios.org epoch 0 platforms darwin name nrpe long_description {Allows {"local"} Nagios plugins to run on remote hosts and report back to a Nagios server.} maintainers markd categories net version 2.8.1 revision 1 +nrpe 309 +variants universal portdir net/nrpe description {Nagios Remote Plugin Executor} homepage http://nagios.org epoch 0 platforms darwin name nrpe long_description {Allows {"local"} Nagios plugins to run on remote hosts and report back to a Nagios server.} maintainers markd categories net version 2.12 revision 0 nsca 483 variants universal depends_build port:libmcrypt portdir net/nsca description {Nagios Service Check Acceptor} homepage http://nagios.org epoch 0 platforms darwin name nsca long_description {The NSCA addon is designed to accept passive host and service check results from clients that use the send_nsca utility (also included in this package) and pass them along to the Nagios process by using the external command interface.} maintainers markd categories net version 2.7.2 revision 0 nsd 391 @@ -5945,7 +5945,7 @@ roadrunner 490 variants universal depends_build path:bin/pkg-config:pkgconfig portdir net/roadrunner description {implementation of the BEEP protocol (RFC 3080) in C} homepage http://rr.codefactory.se/ epoch 0 platforms darwin depends_lib {lib:libxml2:libxml2 path:lib/pkgconfig/glib-2.0.pc:glib2} name roadrunner long_description {RoadRunner is a full-featured, robust implementation of the BEEP protocol (RFC 3080) written in C.} maintainers nomaintainer categories {net devel} version 0.9.1 revision 0 rrdtool 497 -variants {python universal} portdir net/rrdtool description {Round Robin Database} homepage http://oss.oetiker.ch/rrdtool/ epoch 0 platforms darwin name rrdtool depends_lib {port:expat path:lib/pkgconfig/glib-2.0.pc:glib2 port:libiconv port:gettext path:lib/pkgconfig/pango.pc:pango path:bin/perl:perl5 port:tcl port:zlib port:libpng port:libxml2 port:intltool} long_description {RRDtool is a system to store and display time-series data} maintainers markd categories net version 1.3.8 revision 0 +variants {python universal} portdir net/rrdtool description {Round Robin Database} homepage http://oss.oetiker.ch/rrdtool/ epoch 0 platforms darwin name rrdtool depends_lib {port:expat path:lib/pkgconfig/glib-2.0.pc:glib2 port:libiconv port:gettext path:lib/pkgconfig/pango.pc:pango path:bin/perl:perl5 port:tcl port:zlib port:libpng port:libxml2 port:intltool} long_description {RRDtool is a system to store and display time-series data} maintainers markd categories net version 1.4.2 revision 0 rsync 652 variants {rsyncd universal} portdir net/rsync description {Tool that provides fast incremental file transfer.} homepage http://samba.org/rsync/ epoch 0 platforms {darwin freebsd sunos} name rsync depends_lib {port:popt port:libiconv} long_description {rsync is an open source utility that provides fast incremental file transfer. rsync is freely available under the GNU General Public License and is currently being maintained by Wayne Davison. Rsync version 3.0.7 has been released. This is a bug-fix release. Related pages: http://rsync.samba.org/ftp/rsync/rsync-3.0.7-NEWS} maintainers {simon openmaintainer} categories net version 3.0.7 revision 0 rsync-devel 1076 Modified: trunk/dports/PortIndex.quick =================================================================== (Binary files differ) -------------- next part -------------- An HTML attachment was scrubbed... URL: From markd at macports.org Thu Jan 7 11:02:29 2010 From: markd at macports.org (markd at macports.org) Date: Thu, 7 Jan 2010 11:02:29 -0800 (PST) Subject: [62434] trunk/dports/net/cacti/Portfile Message-ID: <20100107190229.BA4E13ADEE01@beta.macosforge.org> Revision: 62434 http://trac.macports.org/changeset/62434 Author: markd at macports.org Date: 2010-01-07 11:02:26 -0800 (Thu, 07 Jan 2010) Log Message: ----------- Update plugin package to 2.6. Modified Paths: -------------- trunk/dports/net/cacti/Portfile Modified: trunk/dports/net/cacti/Portfile =================================================================== --- trunk/dports/net/cacti/Portfile 2010-01-07 18:54:29 UTC (rev 62433) +++ trunk/dports/net/cacti/Portfile 2010-01-07 19:02:26 UTC (rev 62434) @@ -4,6 +4,7 @@ name cacti version 0.8.7e +revision 1 categories net maintainers markd platforms darwin @@ -28,7 +29,7 @@ build {} set cactiversion 0.8.7e -set pluginversion 2.5 +set pluginversion 2.6 set cactidir ${prefix}/share/cacti variant server description {does nothing in this port, but its presence triggers mysql5 server variant} {} @@ -37,7 +38,7 @@ variant plugins description {The Plugin Architecture for Cacti} { master_sites-append http://mirror.cactiusers.org/downloads/plugins:plugins distfiles-append cacti-plugin-${cactiversion}-PA-v${pluginversion}${extract.suffix}:plugins - checksums-append cacti-plugin-${version}-PA-v${pluginversion}${extract.suffix} md5 e171374af8c5267b9fb0d144ac817f86 + checksums-append cacti-plugin-${version}-PA-v${pluginversion}${extract.suffix} md5 b337a2d569f8b387786fafc9f3d83a3f } destroot { @@ -48,7 +49,7 @@ # Copy PA architecture files if { [variant_isset plugins] } { # system "cd ${worksrcpath} && patch -p1 -N -F 3 < ${workpath}/cacti-plugin-${version}-PA-v${pluginversion}.diff" - system "cp -R ${workpath}/files-${version}/* ${destroot}${cactidir}" + system "cp -R ${workpath}/cacti-plugin-arch/files-${version}/* ${destroot}${cactidir}" } } -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Thu Jan 7 11:54:36 2010 From: portindex at macports.org (portindex at macports.org) Date: Thu, 7 Jan 2010 11:54:36 -0800 (PST) Subject: [62435] trunk/dports Message-ID: <20100107195439.242273AE238B@beta.macosforge.org> Revision: 62435 http://trac.macports.org/changeset/62435 Author: portindex at macports.org Date: 2010-01-07 11:54:33 -0800 (Thu, 07 Jan 2010) Log Message: ----------- Total number of ports parsed: 6477 Ports successfully parsed: 6477 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex trunk/dports/PortIndex.quick Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-07 19:02:26 UTC (rev 62434) +++ trunk/dports/PortIndex 2010-01-07 19:54:33 UTC (rev 62435) @@ -5423,7 +5423,7 @@ c-ares 382 variants universal portdir net/c-ares description {asynchronous DNS library} homepage http://c-ares.haxx.se/ epoch 0 platforms darwin name c-ares long_description {c-ares is a C library that performs DNS requests and name resolves asynchronously. c-ares is a fork of the library named 'ares', written by Greg Hudson at MIT.} maintainers toby categories net version 1.7.0 revision 0 cacti 472 -variants {server plugins} portdir net/cacti description {Cacti is a complete RRDtool network graphing solution.} homepage http://www.cacti.net epoch 0 platforms darwin depends_lib {path:bin/mysql_config5:mysql5 port:rrdtool} name cacti long_description {Cacti is a complete network graphing solution designed to harness the power of RRDtool's data storage and graphing functions.} maintainers markd depends_extract bin:unzip:unzip categories net version 0.8.7e revision 0 +variants {server plugins} portdir net/cacti description {Cacti is a complete RRDtool network graphing solution.} homepage http://www.cacti.net epoch 0 platforms darwin depends_lib {path:bin/mysql_config5:mysql5 port:rrdtool} name cacti long_description {Cacti is a complete network graphing solution designed to harness the power of RRDtool's data storage and graphing functions.} maintainers markd depends_extract bin:unzip:unzip categories net version 0.8.7e revision 1 canto 536 portdir net/canto description {flexible ncurses Atom/RSS newsreader for the console} homepage http://codezen.org/canto epoch 0 platforms darwin depends_lib {port:ncursesw port:py26-feedparser port:py26-chardet} name canto maintainers {jack at codezen.org brett} long_description {Canto is an Atom/RSS feed reader for the console that is meant to be quick, concise, and colorful. It provides a minimal, yet information packed interface with almost infinite customization and extensibility} version 0.6.13 categories {net python} revision 0 cclive 428 @@ -5868,8 +5868,8 @@ portdir net/nsping description {DNS ping} epoch 0 platforms darwin name nsping maintainers nomaintainer long_description {Nsping uses DNS queries to monitor reachability and operation of nameservers, as well as the latency of DNS queries. It does this by sending random recursive DNS queries to the nameserver (avoiding the effects of DNS caching) and measuring the amount of time between the sending of the query and the receipt of the response packet.} version 0.8 categories net revision 3 nss 332 portdir net/nss description {Network Security Service libraries.} homepage http://www.mozilla.org/projects/security/pki/nss/ epoch 0 platforms darwin name nss depends_lib {port:nspr port:sqlite3} maintainers {jeremyhu openmaintainer} long_description {{Network Security Service libraries.}} categories net version 3.12.4 revision 0 -ntop 489 -variants universal depends_build {port:gawk port:wget port:rrdtool port:autoconf port:automake port:libtool} portdir net/ntop description {network traffic probe} homepage http://www.ntop.org/ epoch 0 platforms darwin depends_lib {port:libpcap port:gd2 port:libpng port:gdbm port:libgeoip} name ntop long_description {ntop is a network traffic probe that shows the network usage, similar to what the popular top Unix command does.} maintainers markd categories net version 3.3.9 revision 2 +ntop 490 +variants universal depends_build {port:gawk port:wget port:rrdtool port:autoconf port:automake port:libtool} portdir net/ntop description {network traffic probe} homepage http://www.ntop.org/ epoch 0 platforms darwin depends_lib {port:libpcap port:gd2 port:libpng port:gdbm port:libgeoip} name ntop long_description {ntop is a network traffic probe that shows the network usage, similar to what the popular top Unix command does.} maintainers markd categories net version 3.3.10 revision 0 nylon 446 variants universal portdir net/nylon description {A Unix SOCKS 4, 4a and 5 proxy server} homepage http://monkey.org/~marius/nylon/ epoch 0 platforms darwin name nylon depends_lib lib:libevent:libevent long_description {nylon is a proxy server which currently supports SOCKS version 4, 4a and 5, as well as a mirror mode which allows nylon to mirror services.} maintainers {boeyms openmaintainer} categories {net security} version 1.21 revision 1 nzbget 431 Modified: trunk/dports/PortIndex.quick =================================================================== (Binary files differ) -------------- next part -------------- An HTML attachment was scrubbed... URL: From noreply at macports.org Thu Jan 7 12:31:54 2010 From: noreply at macports.org (MacPorts) Date: Thu, 07 Jan 2010 20:31:54 -0000 Subject: [MacPorts] snc/snowleopard modified Message-ID: <20100107203154.A70DF7F52F3F@mail-out3.apple.com> Changed page "snc/snowleopard" by mail at uwe-arzt.de from 80.187.99.25* Page URL: Diff URL: Revision 174 -------8<------8<------8<------8<------8<------8<------8<------8<-------- Index: snc/snowleopard ========================================================================= --- snc/snowleopard (version: 173) +++ snc/snowleopard (version: 174) @@ -66,7 +66,7 @@ lprof LyX macfuse ? (not 64-bit) -mp3fs macfuse +mp3fs ? (not 64-bit, see macfuse) mumble murmur ntfs-3g macfuse -------8<------8<------8<------8<------8<------8<------8<------8<-------- * The IP shown here might not mean anything if the user or the server is behind a proxy. -- MacPorts Ports system for Mac OS This is an automated message. Someone at http://www.macports.org/ added your email address to be notified of changes on snc/snowleopard. If it was not you, please report to . From ryandesign at macports.org Thu Jan 7 18:37:03 2010 From: ryandesign at macports.org (ryandesign at macports.org) Date: Thu, 7 Jan 2010 18:37:03 -0800 (PST) Subject: [62436] trunk/dports/devel/griffon/Portfile Message-ID: <20100108023703.A3C9C3AFA10D@beta.macosforge.org> Revision: 62436 http://trac.macports.org/changeset/62436 Author: ryandesign at macports.org Date: 2010-01-07 18:37:00 -0800 (Thu, 07 Jan 2010) Log Message: ----------- griffon: redo r59916 which was undone by r62430 Revision Links: -------------- http://trac.macports.org/changeset/59916 http://trac.macports.org/changeset/62430 Modified Paths: -------------- trunk/dports/devel/griffon/Portfile Modified: trunk/dports/devel/griffon/Portfile =================================================================== --- trunk/dports/devel/griffon/Portfile 2010-01-07 19:54:33 UTC (rev 62435) +++ trunk/dports/devel/griffon/Portfile 2010-01-08 02:37:00 UTC (rev 62436) @@ -4,6 +4,7 @@ name griffon version 0.2.1 +set branch [join [lrange [split ${version} .] 0 1] .] categories devel java maintainers breskeby platforms darwin @@ -19,7 +20,7 @@ homepage http://griffon.codehaus.org/ distname ${name}-bin-${version} -master_sites http://dist.codehaus.org/griffon/griffon/0.2.x +master_sites http://dist.codehaus.org/griffon/griffon/${branch}.x checksums md5 f828cbf7bef192006c7b82f53ca7a74e \ sha1 b85fa7d6b4204395590f34bea731a70adbcde520 \ -------------- next part -------------- An HTML attachment was scrubbed... URL: From markd at macports.org Thu Jan 7 18:50:43 2010 From: markd at macports.org (markd at macports.org) Date: Thu, 7 Jan 2010 18:50:43 -0800 (PST) Subject: [62437] trunk/dports/net/zabbix/Portfile Message-ID: <20100108025045.1F5CF3AFB257@beta.macosforge.org> Revision: 62437 http://trac.macports.org/changeset/62437 Author: markd at macports.org Date: 2010-01-07 18:50:38 -0800 (Thu, 07 Jan 2010) Log Message: ----------- Update to 1.6.8. Modified Paths: -------------- trunk/dports/net/zabbix/Portfile Modified: trunk/dports/net/zabbix/Portfile =================================================================== --- trunk/dports/net/zabbix/Portfile 2010-01-08 02:37:00 UTC (rev 62436) +++ trunk/dports/net/zabbix/Portfile 2010-01-08 02:50:38 UTC (rev 62437) @@ -3,7 +3,7 @@ PortSystem 1.0 name zabbix -version 1.6.2 +version 1.6.8 categories net maintainers markd openmaintainer platforms darwin @@ -14,7 +14,7 @@ homepage http://www.zabbix.com master_sites sourceforge -checksums md5 33da3661868a04042c596a819896446f +checksums md5 3255afd2d44454bae3ec5158920a824f patchfiles patch-include-common.h default_variants +server depends_lib path:bin/mysql_config5:mysql5 \ -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Thu Jan 7 19:54:32 2010 From: portindex at macports.org (portindex at macports.org) Date: Thu, 7 Jan 2010 19:54:32 -0800 (PST) Subject: [62438] trunk/dports/PortIndex Message-ID: <20100108035438.481413AFE409@beta.macosforge.org> Revision: 62438 http://trac.macports.org/changeset/62438 Author: portindex at macports.org Date: 2010-01-07 19:54:28 -0800 (Thu, 07 Jan 2010) Log Message: ----------- Total number of ports parsed: 6477 Ports successfully parsed: 6477 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-08 02:50:38 UTC (rev 62437) +++ trunk/dports/PortIndex 2010-01-08 03:54:28 UTC (rev 62438) @@ -6129,7 +6129,7 @@ ytalk 704 variants universal portdir net/ytalk description {multi-user talk client} homepage http://www.impul.se/ytalk/ epoch 0 platforms darwin name ytalk long_description {YTalk is a compatible replacement for the BSD talk(1) program. The main advantage of YTalk is the ability to communicate with any arbitrary number of users at once. It supports both talk protocols (talk and ntalk) and can communicate with several different talk daemons at the same time. You may also spawn a command shell in your talk window and let other users watch. YTalk supports a basic set of VT100 control codes, as well as job control (BSD support added in 3.1.3).} maintainers nomaintainer categories net version 3.3.0 revision 0 zabbix 417 -variants {server pgsql81 pgsql82 pgsql83 sqlite3 agent_only universal} portdir net/zabbix description {An open source application and network monitor} homepage http://www.zabbix.com epoch 0 platforms darwin depends_lib {path:bin/mysql_config5:mysql5 port:fping} name zabbix long_description {{An open source application and network monitor}} maintainers {markd openmaintainer} categories net version 1.6.2 revision 0 +variants {server pgsql81 pgsql82 pgsql83 sqlite3 agent_only universal} portdir net/zabbix description {An open source application and network monitor} homepage http://www.zabbix.com epoch 0 platforms darwin depends_lib {path:bin/mysql_config5:mysql5 port:fping} name zabbix long_description {{An open source application and network monitor}} maintainers {markd openmaintainer} categories net version 1.6.8 revision 0 zsync 485 variants universal portdir net/zsync description {file transfer program} homepage http://zsync.moria.org.uk/ epoch 0 platforms darwin name zsync long_description {zsync is a file transfer program. It allows you to download a file from a remote web server, where you have a copy of an older version of the file on your computer already. zsync downloads only the new parts of the file. It uses the same algorithm as rsync.} maintainers nomaintainer categories net version 0.5 revision 0 PlopFolio 437 -------------- next part -------------- An HTML attachment was scrubbed... URL: From takeshi at macports.org Fri Jan 8 00:52:00 2010 From: takeshi at macports.org (takeshi at macports.org) Date: Fri, 8 Jan 2010 00:52:00 -0800 (PST) Subject: [62439] trunk/dports/science/grib_api/Portfile Message-ID: <20100108085200.6C6963B05699@beta.macosforge.org> Revision: 62439 http://trac.macports.org/changeset/62439 Author: takeshi at macports.org Date: 2010-01-08 00:51:58 -0800 (Fri, 08 Jan 2010) Log Message: ----------- grib_api: added default_variants +gcc43 Modified Paths: -------------- trunk/dports/science/grib_api/Portfile Modified: trunk/dports/science/grib_api/Portfile =================================================================== --- trunk/dports/science/grib_api/Portfile 2010-01-08 03:54:28 UTC (rev 62438) +++ trunk/dports/science/grib_api/Portfile 2010-01-08 08:51:58 UTC (rev 62439) @@ -37,8 +37,7 @@ --with-jasper=${prefix} \ --with-openjpeg=${prefix} \ --with-png-support=${prefix} \ - --with-emos=-lemosR64 \ - --with-perl="" + --with-emos=-lemosR64 test.run yes test.target check @@ -52,6 +51,10 @@ } } +if {![variant_isset g95]} { + default_variants +gcc43 +} + variant gcc43 conflicts g95 description {builds fortran interface with gfortran} { depends_build-append port:gcc43 configure.args-delete --disable-fortran -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Fri Jan 8 01:45:37 2010 From: ryandesign at macports.org (ryandesign at macports.org) Date: Fri, 8 Jan 2010 01:45:37 -0800 (PST) Subject: [62440] trunk/dports/net/curl/Portfile Message-ID: <20100108094538.8A2D03B06CFF@beta.macosforge.org> Revision: 62440 http://trac.macports.org/changeset/62440 Author: ryandesign at macports.org Date: 2010-01-08 01:45:35 -0800 (Fri, 08 Jan 2010) Log Message: ----------- curl: * remove +ipv6 variant; always enable ipv6 support * remove +doc variant; always install all documentation, now to an unversioned directory * enable +ssl variant by default unless user has already requested +gnutls variant See #23177. Modified Paths: -------------- trunk/dports/net/curl/Portfile Modified: trunk/dports/net/curl/Portfile =================================================================== --- trunk/dports/net/curl/Portfile 2010-01-08 08:51:58 UTC (rev 62439) +++ trunk/dports/net/curl/Portfile 2010-01-08 09:45:35 UTC (rev 62440) @@ -7,6 +7,7 @@ name curl # keep the version in sync with the curl-ca-bundle port version 7.19.7 +revision 1 categories net www maintainers ryandesign license curl @@ -37,7 +38,7 @@ rmd160 b170b24af3a6d3fc3357e90fc7ae5ef34d722fb4 configure.args \ - --disable-ipv6 \ + --enable-ipv6 \ --without-libidn \ --without-libssh2 \ --without-ssl \ @@ -68,10 +69,9 @@ } } -set docdir ${prefix}/share/doc/${name}-${version} - post-destroot { - xinstall -d ${destroot}${docdir} + set docdir ${prefix}/share/doc/${name} + xinstall -d ${destroot}${docdir}/html/libcurl ${destroot}${docdir}/pdf/libcurl xinstall -m 0644 -W ${worksrcpath} \ CHANGES \ COPYING \ @@ -90,10 +90,19 @@ RESOURCES \ THANKS \ TODO \ + TheArtOfHttpScripting \ VERSIONS \ ${destroot}${docdir} + eval xinstall -m 0644 [glob ${worksrcpath}/docs/*.html] ${destroot}${docdir}/html + eval xinstall -m 0644 [glob ${worksrcpath}/docs/libcurl/*.html] ${destroot}${docdir}/html/libcurl + eval xinstall -m 0644 [glob ${worksrcpath}/docs/*.pdf] ${destroot}${docdir}/pdf + eval xinstall -m 0644 [glob ${worksrcpath}/docs/libcurl/*.pdf] ${destroot}${docdir}/pdf/libcurl } +if {![variant_isset gnutls]} { + default_variants +ssl +} + variant ssl { depends_lib-append port:openssl \ port:curl-ca-bundle @@ -102,11 +111,6 @@ configure.args-delete --without-ssl } -variant ipv6 { - configure.args-delete --disable-ipv6 - configure.args-append --enable-ipv6 -} - variant ares description {Add support for resolving names asynchronously} { depends_lib-append port:c-ares archcheck.files-append lib/libcares.dylib @@ -148,19 +152,5 @@ configure.args-delete --without-libssh2 } -variant doc { - post-destroot { - xinstall -d ${destroot}${docdir}/html/libcurl - xinstall -m 0644 -W ${worksrcpath}/docs TheArtOfHttpScripting ${destroot}${docdir}/html - eval xinstall -m 0644 [glob ${worksrcpath}/docs/*.html] ${destroot}${docdir}/html - eval xinstall -m 0644 [glob ${worksrcpath}/docs/libcurl/*.html] \ - ${destroot}${docdir}/html/libcurl - - xinstall -d ${destroot}${docdir}/pdf/libcurl - xinstall -m 0644 -W ${worksrcpath}/docs curl-config.pdf curl.pdf ${destroot}${docdir}/pdf - eval xinstall -m 0644 [glob ${worksrcpath}/docs/libcurl/*.pdf] ${destroot}${docdir}/pdf/libcurl - } -} - livecheck.type freshmeat livecheck.regex (?i)curl and libcurl (.*) -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Fri Jan 8 01:54:48 2010 From: portindex at macports.org (portindex at macports.org) Date: Fri, 8 Jan 2010 01:54:48 -0800 (PST) Subject: [62441] trunk/dports Message-ID: <20100108095449.C9EAD3B073D8@beta.macosforge.org> Revision: 62441 http://trac.macports.org/changeset/62441 Author: portindex at macports.org Date: 2010-01-08 01:54:46 -0800 (Fri, 08 Jan 2010) Log Message: ----------- Total number of ports parsed: 6477 Ports successfully parsed: 6477 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex trunk/dports/PortIndex.quick Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-08 09:45:35 UTC (rev 62440) +++ trunk/dports/PortIndex 2010-01-08 09:54:46 UTC (rev 62441) @@ -5460,8 +5460,8 @@ variants darwin_10 portdir net/csup description {Csup is a rewrite of CVSup in C.} homepage http://mu.org/~mux/csup.html epoch 0 platforms darwin name csup depends_lib {port:zlib port:openssl} long_description {Csup is a rewrite of CVSup in C. CVSup(R) is a software for distributing and updating collections of files accross a network. It can efficiently and accurately mirror all types of files, including sources, binaries, hard links, symbolic links, and even device nodes. In addition to being a great general-purpose mirroring tool, CVSup includes special features and optimizations specifically tailored to CVS repositories. It is being used as the preferred way to update sources within the FreeBSD, NetBSD and OpenBSD projects and more.} maintainers nomaintainer categories {net devel} version 20060318 revision 0 ctorrent 416 variants universal portdir net/ctorrent description {command line BitTorrent client} homepage http://sourceforge.net/projects/dtorrent/ epoch 0 platforms darwin name ctorrent maintainers {rene openmaintainer} long_description {Enhanced CTorrent is a BitTorrent client for unix-like environments. High performance with minimal system resources and dependencies is a priority.} categories net version 3.3.2 revision 0 -curl 548 -variants {universal ssl ipv6 ares idn spnego gnutls gss openldap sftp_scp doc} depends_build port:pkgconfig portdir net/curl description {Tool for transferring files with URL syntax} homepage http://curl.haxx.se/ epoch 0 platforms {darwin freebsd} depends_lib port:zlib name curl maintainers ryandesign long_description {curl is a client to get documents/files from servers, using any of the supported protocols. The command is designed to work without user interaction or any kind of interactivity.} categories {net www} version 7.19.7 revision 0 +curl 574 +variants {universal ssl ares idn spnego gnutls gss openldap sftp_scp} depends_build port:pkgconfig portdir net/curl description {Tool for transferring files with URL syntax} homepage http://curl.haxx.se/ epoch 0 platforms {darwin freebsd} depends_lib {port:zlib port:openssl port:curl-ca-bundle} name curl maintainers ryandesign long_description {curl is a client to get documents/files from servers, using any of the supported protocols. The command is designed to work without user interaction or any kind of interactivity.} categories {net www} version 7.19.7 revision 1 curl-ca-bundle 444 depends_build path:bin/perl:perl5 portdir net/curl-ca-bundle description {CA certificate bundle for curl} homepage http://curl.haxx.se/ epoch 0 platforms {darwin freebsd} name curl-ca-bundle maintainers ryandesign long_description {Installs a bundle of certification authority certificates (CA certs) which curl (when linked with OpenSSL) uses to verify the authenticity of secure web and FTP servers.} categories net version 7.19.7 revision 1 cvsup 335 @@ -10358,8 +10358,8 @@ variants {darwin_8 universal} depends_build port:pkgconfig portdir science/grads2 description {interactive visualization tool for earth science data} homepage http://www.opengrads.org/ epoch 0 platforms darwin name grads2 depends_lib {port:libwww port:readline port:rx port:netcdf port:udunits port:hdf4 port:gd2 port:libnc-dap port:gadap port:wgrib2 port:curl port:libgeotiff} long_description {The Grid Analysis and Display System (GrADS) is an interactive desktop tool that is used for easy access, manipulation, and visualization of earth science data. The format of the data may be either binary, GRIB, NetCDF, or HDF-SDS (Scientific Data Sets). GrADS has been implemented worldwide on a variety of commonly used operating systems and is freely distributed over the Internet.} maintainers takeshi categories science version 2.0.a5.oga.5 revision 1 gri 871 variants universal depends_build {port:ImageMagick bin:tex:texlive port:ghostscript path:bin/perl:perl5} portdir science/gri description {A scientific graphics programming language} homepage http://gri.sourceforge.net epoch 0 platforms darwin name gri long_description {Gri is a language for scientific graphics programming. The word language is important: Gri is command-driven, not point/click. Some users consider Gri similar to LaTeX, since both provide extensive power in exchange for patience in learning syntax. Gri can make x-y graphs, contour graphs, and image graphs, in PostScript and (someday) SVG formats. Control is provided over all aspects of drawing, e.g. line widths, colors, and fonts. A TeX-like syntax provides common mathematical symbols.} maintainers {dal.ca:dan.kelley neu.edu:j.stalnaker} categories {science graphics} version 2.12.18 revision 0 -grib_api 618 -variants {gcc43 g95 universal} depends_build port:emos portdir science/grib_api description {GRIB decoder} homepage http://www.ecmwf.int/products/data/software/grib_api.html epoch 0 platforms darwin name grib_api depends_lib {port:jasper port:openjpeg port:libpng} long_description {The ECMWF GRIB API is an application program interface accessible from C and FORTRAN programs developed for encoding and decoding WMO FM-92 GRIB edition 1 and edition 2 messages. A useful set of command line tools is also provided to give quick access to grib messages.} maintainers takeshi categories science version 1.8.0 revision 0 +grib_api 631 +variants {gcc43 g95 universal} depends_build {port:emos port:gcc43} portdir science/grib_api description {GRIB decoder} homepage http://www.ecmwf.int/products/data/software/grib_api.html epoch 0 platforms darwin name grib_api depends_lib {port:jasper port:openjpeg port:libpng} long_description {The ECMWF GRIB API is an application program interface accessible from C and FORTRAN programs developed for encoding and decoding WMO FM-92 GRIB edition 1 and edition 2 messages. A useful set of command line tools is also provided to give quick access to grib messages.} maintainers takeshi categories science version 1.8.0 revision 0 gromacs 837 variants {universal no_x11 gsl openmpi gcc42 gcc43 gcc44} portdir science/gromacs description {The World's fastest Molecular Dynamics package} homepage http://www.gromacs.org/ epoch 0 platforms darwin depends_lib port:gcc44 name gromacs long_description {GROMACS is a versatile package to perform molecular dynamics, i.e. simulate the Newtonian equations of motion for systems with hundreds to millions of particles. It is primarily designed for biochemical molecules like proteins and lipids that have a lot of complicated bonded interactions, but since GROMACS is extremely fast at calculating the nonbonded interactions (that usually dominate simulations) many groups are also using it for research on non-biological systems, e.g. polymers.} maintainers {adfernandes openmaintainer} categories {science math} version 4.0.7 revision 1 gromacs-double 889 Modified: trunk/dports/PortIndex.quick =================================================================== (Binary files differ) -------------- next part -------------- An HTML attachment was scrubbed... URL: From sharky at macports.org Fri Jan 8 02:08:36 2010 From: sharky at macports.org (sharky at macports.org) Date: Fri, 8 Jan 2010 02:08:36 -0800 (PST) Subject: [62442] trunk/dports/graphics/libicns/Portfile Message-ID: <20100108100836.A1B9A3B07681@beta.macosforge.org> Revision: 62442 http://trac.macports.org/changeset/62442 Author: sharky at macports.org Date: 2010-01-08 02:08:32 -0800 (Fri, 08 Jan 2010) Log Message: ----------- libicns: update to version 0.7.1 Modified Paths: -------------- trunk/dports/graphics/libicns/Portfile Modified: trunk/dports/graphics/libicns/Portfile =================================================================== --- trunk/dports/graphics/libicns/Portfile 2010-01-08 09:54:46 UTC (rev 62441) +++ trunk/dports/graphics/libicns/Portfile 2010-01-08 10:08:32 UTC (rev 62442) @@ -3,8 +3,7 @@ PortSystem 1.0 name libicns -version 0.7.0 -revision 1 +version 0.7.1 categories graphics devel maintainers adfernandes openmaintainer description libicns is a library for manipulation of the Mac OS icns resource format and includes the icns2png converter @@ -24,7 +23,7 @@ platforms darwin -checksums sha1 96e66119f4d8e6736b9d44120bff8c337d400ce5 +checksums sha1 e12a6ca21988929d56320ac1b96a1a059af0fd43 # Note we need a patched jasper >= 1.900.1_5 depends_lib port:zlib port:libpng port:jasper -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Fri Jan 8 02:33:40 2010 From: ryandesign at macports.org (ryandesign at macports.org) Date: Fri, 8 Jan 2010 02:33:40 -0800 (PST) Subject: [62443] trunk/dports/net/curl/Portfile Message-ID: <20100108103341.23F313B07B5C@beta.macosforge.org> Revision: 62443 http://trac.macports.org/changeset/62443 Author: ryandesign at macports.org Date: 2010-01-08 02:33:38 -0800 (Fri, 08 Jan 2010) Log Message: ----------- curl: whitespace changes only Modified Paths: -------------- trunk/dports/net/curl/Portfile Modified: trunk/dports/net/curl/Portfile =================================================================== --- trunk/dports/net/curl/Portfile 2010-01-08 10:08:32 UTC (rev 62442) +++ trunk/dports/net/curl/Portfile 2010-01-08 10:33:38 UTC (rev 62443) @@ -1,63 +1,56 @@ # $Id$ -PortSystem 1.0 -PortGroup muniversal 1.0 -PortGroup archcheck 1.0 +PortSystem 1.0 +PortGroup muniversal 1.0 +PortGroup archcheck 1.0 -name curl +name curl # keep the version in sync with the curl-ca-bundle port -version 7.19.7 -revision 1 -categories net www -maintainers ryandesign -license curl -homepage http://curl.haxx.se/ -platforms darwin freebsd -use_bzip2 yes -use_parallel_build yes +version 7.19.7 +revision 1 +categories net www +maintainers ryandesign +license curl +homepage http://curl.haxx.se/ +platforms darwin freebsd +use_bzip2 yes +use_parallel_build yes -description \ - Tool for transferring files with URL syntax +description Tool for transferring files with URL syntax -long_description \ - curl is a client to get documents/files from servers, using any of \ - the supported protocols. The command is designed to work without \ - user interaction or any kind of interactivity. +long_description curl is a client to get documents/files from servers, \ + using any of the supported protocols. The command is \ + designed to work without user interaction or any kind \ + of interactivity. # keep the master_sites in sync with the curl-ca-bundle port -master_sites \ - http://curl.haxx.se/download/ \ - ftp://ftp.sunet.se/pub/www/utilities/curl/ \ - http://curl.sourceforge.net/download/ \ - http://cool.haxx.se/curl/ \ - http://www.execve.net/curl/ +master_sites http://curl.haxx.se/download/ \ + ftp://ftp.sunet.se/pub/www/utilities/curl/ \ + http://curl.sourceforge.net/download/ \ + http://cool.haxx.se/curl/ \ + http://www.execve.net/curl/ -checksums \ - md5 79a8fbb2eed5464b97bdf94bee109380 \ - sha1 c306ebf0f65fb90df3c9c9a12fb04fb77cc29e2c \ - rmd160 b170b24af3a6d3fc3357e90fc7ae5ef34d722fb4 +checksums md5 79a8fbb2eed5464b97bdf94bee109380 \ + sha1 c306ebf0f65fb90df3c9c9a12fb04fb77cc29e2c \ + rmd160 b170b24af3a6d3fc3357e90fc7ae5ef34d722fb4 -configure.args \ - --enable-ipv6 \ - --without-libidn \ - --without-libssh2 \ - --without-ssl \ - --disable-ldap \ - --with-zlib=${prefix} +configure.args --enable-ipv6 \ + --without-libidn \ + --without-libssh2 \ + --without-ssl \ + --disable-ldap \ + --with-zlib=${prefix} -configure.env \ - PKG_CONFIG_PATH=${prefix} +configure.env PKG_CONFIG_PATH=${prefix} -depends_build \ - port:pkgconfig +depends_build port:pkgconfig -depends_lib \ - port:zlib +depends_lib port:zlib -archcheck.files lib/libz.dylib +archcheck.files lib/libz.dylib -test.run yes -test.target test-full +test.run yes +test.target test-full post-build { if {[variant_isset universal]} { -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Fri Jan 8 02:54:38 2010 From: portindex at macports.org (portindex at macports.org) Date: Fri, 8 Jan 2010 02:54:38 -0800 (PST) Subject: [62444] trunk/dports/PortIndex Message-ID: <20100108105441.25E223B083B3@beta.macosforge.org> Revision: 62444 http://trac.macports.org/changeset/62444 Author: portindex at macports.org Date: 2010-01-08 02:54:35 -0800 (Fri, 08 Jan 2010) Log Message: ----------- Total number of ports parsed: 6477 Ports successfully parsed: 6477 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-08 10:33:38 UTC (rev 62443) +++ trunk/dports/PortIndex 2010-01-08 10:54:35 UTC (rev 62444) @@ -3411,7 +3411,7 @@ libhermes 779 variants universal portdir graphics/libhermes description {Hermes is a pixel conversion library.} homepage http://www.clanlib.org/hermes epoch 0 platforms darwin name libhermes long_description {Hermes is a pixel conversion library. Its only purpose is to take a buffer full of pixels and convert it into a target buffer full of pixels. The two can differ both in size and in format. Hermes is primarily intended for fast graphics display and it is optimized for that. Where this goal can be achieved by dismissing minimal graphic errors, Hermes will do so (minimal means almost not noticeable). But that is likely to be very configurable in the near future to allow for user selection of trade-off.} maintainers nomaintainer categories {graphics devel} version 1.3.3 revision 1 libicns 1157 -variants universal portdir graphics/libicns description {libicns is a library for manipulation of the Mac OS icns resource format and includes the icns2png converter} homepage http://icns.sourceforge.net/ epoch 0 platforms darwin name libicns depends_lib {port:zlib port:libpng port:jasper} long_description {libicns is a library for manipulation of the Mac OS icns resource format, also known as the IconFamily resource type. It can read and write files from the Mac OS X icns format, as well as read from Mac OS resource files and macbinary encoded Mac OS resource forks. As of release 0.5.9, it can fully read and write any 128x128 and all smaller 32-bit icons, and read support for 8-bit, 4-bit, and 1-bit icons. If linked against (a patched version of) Jasper, it also has full support for 256x256 and 512x512 32-bit icons with masks as alpha channels. libicns includes icns2png, a tool for extracting the images contained within icns files, and saving them as png images. It also includes png2icns, a tool for creating icns files from a set of png images.} maintainers {adfernandes openmaintainer} categories {graphics devel} version 0.7.0 revision 1 +variants universal portdir graphics/libicns description {libicns is a library for manipulation of the Mac OS icns resource format and includes the icns2png converter} homepage http://icns.sourceforge.net/ epoch 0 platforms darwin name libicns depends_lib {port:zlib port:libpng port:jasper} long_description {libicns is a library for manipulation of the Mac OS icns resource format, also known as the IconFamily resource type. It can read and write files from the Mac OS X icns format, as well as read from Mac OS resource files and macbinary encoded Mac OS resource forks. As of release 0.5.9, it can fully read and write any 128x128 and all smaller 32-bit icons, and read support for 8-bit, 4-bit, and 1-bit icons. If linked against (a patched version of) Jasper, it also has full support for 256x256 and 512x512 32-bit icons with masks as alpha channels. libicns includes icns2png, a tool for extracting the images contained within icns files, and saving them as png images. It also includes png2icns, a tool for creating icns files from a set of png images.} maintainers {adfernandes openmaintainer} categories {graphics devel} version 0.7.1 revision 0 libiptcdata 655 variants universal portdir graphics/libiptcdata description {IPTC parsing library} homepage http://libiptcdata.sourceforge.net/ epoch 0 platforms darwin name libiptcdata depends_lib port:gettext long_description {libiptcdata is a library for manipulating the International Press Telecommunications Council (IPTC) metadata stored within multimedia files such as images. This metadata can include captions and keywords, often used by popular photo management applications. The libiptcdata package also includes a command-line utility, iptc, for editing IPTC data in JPEG files.} maintainers technokracy.net:grrr categories graphics version 1.0.2 revision 0 liblqr 611 -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Fri Jan 8 03:14:23 2010 From: ryandesign at macports.org (ryandesign at macports.org) Date: Fri, 8 Jan 2010 03:14:23 -0800 (PST) Subject: [62445] trunk/dports/lang/php52 Message-ID: <20100108111423.C06193B088F9@beta.macosforge.org> Revision: 62445 http://trac.macports.org/changeset/62445 Author: ryandesign at macports.org Date: 2010-01-08 03:14:19 -0800 (Fri, 08 Jan 2010) Log Message: ----------- php52: fix build on Leopard; see #23173 Modified Paths: -------------- trunk/dports/lang/php52/Portfile Added Paths: ----------- trunk/dports/lang/php52/files/patch-ext-standard-dns.c.diff Modified: trunk/dports/lang/php52/Portfile =================================================================== --- trunk/dports/lang/php52/Portfile 2010-01-08 10:54:35 UTC (rev 62444) +++ trunk/dports/lang/php52/Portfile 2010-01-08 11:14:19 UTC (rev 62445) @@ -59,6 +59,7 @@ patch.pre_args -p1 patchfiles \ patch-scripts-php-config.in.diff \ + patch-ext-standard-dns.c.diff \ patch-bind.diff use_autoconf yes Added: trunk/dports/lang/php52/files/patch-ext-standard-dns.c.diff =================================================================== --- trunk/dports/lang/php52/files/patch-ext-standard-dns.c.diff (rev 0) +++ trunk/dports/lang/php52/files/patch-ext-standard-dns.c.diff 2010-01-08 11:14:19 UTC (rev 62445) @@ -0,0 +1,35 @@ +--- a/ext/standard/dns.c (revision 292278) ++++ b/ext/standard/dns.c (revision 292467) +@@ -34,14 +34,14 @@ + #endif + /* located in www.php.net/extra/bindlib.zip */ + #if HAVE_ARPA_INET_H +-#include "arpa/inet.h" ++#include + #endif +-#include "netdb.h" ++#include + #if HAVE_ARPA_NAMESERV_H +-#include "arpa/nameser.h" ++#include + #endif + #if HAVE_RESOLV_H +-#include "resolv.h" ++#include + #endif + #endif /* HAVE_LIBBIND */ + #include +@@ -55,10 +55,10 @@ + #undef STATUS + #undef T_UNSPEC + #endif +-#if HAVE_ARPA_NAMESER_COMPAT_H +-#include +-#endif + #if HAVE_ARPA_NAMESER_H ++#ifdef DARWIN ++# define BIND_8_COMPAT 1 ++#endif + #include + #endif + #if HAVE_RESOLV_H -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Fri Jan 8 03:18:54 2010 From: ryandesign at macports.org (ryandesign at macports.org) Date: Fri, 8 Jan 2010 03:18:54 -0800 (PST) Subject: [62446] trunk/dports/science/cgnslib/Portfile Message-ID: <20100108111854.BD9E33B08E6D@beta.macosforge.org> Revision: 62446 http://trac.macports.org/changeset/62446 Author: ryandesign at macports.org Date: 2010-01-08 03:18:53 -0800 (Fri, 08 Jan 2010) Log Message: ----------- cgnslib: register the headers and libraries to the port; fixes #23115 (maintainer timeout) Modified Paths: -------------- trunk/dports/science/cgnslib/Portfile Modified: trunk/dports/science/cgnslib/Portfile =================================================================== --- trunk/dports/science/cgnslib/Portfile 2010-01-08 11:14:19 UTC (rev 62445) +++ trunk/dports/science/cgnslib/Portfile 2010-01-08 11:18:53 UTC (rev 62446) @@ -4,6 +4,7 @@ name cgnslib version 2.5.4 +revision 1 set branch [join [lrange [split ${version} .] 0 1] .] set minor [lindex [split ${version} .] end] categories science @@ -35,7 +36,8 @@ system "cd ${worksrcpath}/tools && make" } -destroot.destdir PREFIX=${destroot}${prefix} +destroot.destdir INCLUDEDIR=${destroot}${prefix}/include \ + LIBDIR=${destroot}${prefix}/lib post-destroot { xinstall -m 755 -W ${worksrcpath}/tools \ @@ -52,3 +54,15 @@ README \ ${docdir} } + +post-install { + # cgnslib 2.5.4_0 installed items directly in ${prefix}; remove them if found + foreach file {include/cgnslib.h include/cgnslib_f.h include/cgnswin_f.h lib/libcgns.a} { + set filepath ${prefix}/${file} + if {[file exists ${filepath}]} { + if {[catch {delete ${filepath}}]} { + ui_warn "Cannot delete ${filepath}; please remove it manually" + } + } + } +} -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Fri Jan 8 03:54:31 2010 From: portindex at macports.org (portindex at macports.org) Date: Fri, 8 Jan 2010 03:54:31 -0800 (PST) Subject: [62447] trunk/dports/PortIndex Message-ID: <20100108115433.652AD3B09AE1@beta.macosforge.org> Revision: 62447 http://trac.macports.org/changeset/62447 Author: portindex at macports.org Date: 2010-01-08 03:54:30 -0800 (Fri, 08 Jan 2010) Log Message: ----------- Total number of ports parsed: 6477 Ports successfully parsed: 6477 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-08 11:18:53 UTC (rev 62446) +++ trunk/dports/PortIndex 2010-01-08 11:54:30 UTC (rev 62447) @@ -10261,7 +10261,7 @@ cfitsio 839 variants {gcc42 gcc43 gcc44 g95 g77 universal} portdir science/cfitsio description {C access to FITS data files with optional Fortran wrappers} homepage http://heasarc.gsfc.nasa.gov/fitsio/ epoch 0 platforms darwin name cfitsio long_description {CFITSIO is a library of C and Fortran subroutines for reading and writing data files in FITS (Flexible Image Transport System) data format. CFITSIO simplifies the task of writing software that deals with FITS files by providing an easy to use set of high-level routines that insulate the programmer from the internal complexities of the FITS file format. At the same time, CFITSIO provides many advanced features that have made it the most widely used FITS file programming interface in the astronomical community.} maintainers {ram openmaintainer} categories science version 3.210 revision 0 cgnslib 671 -variants universal portdir science/cgnslib description {Computational fluid dynamics data container.} homepage http://cgns.sourceforge.net/ epoch 0 platforms darwin name cgnslib long_description {The CFD General Notation System (CGNS) provides a general, portable, and extensible standard for the storage and retrieval of computational fluid dynamics (CFD) analysis data. It consists of a collection of conventions, and free and open software implementing those conventions. It is self-descriptive, machine-independent, well-documented, and administered by an international steering committee.} maintainers cerfacs.fr:dechaume categories science version 2.5.4 revision 0 +variants universal portdir science/cgnslib description {Computational fluid dynamics data container.} homepage http://cgns.sourceforge.net/ epoch 0 platforms darwin name cgnslib long_description {The CFD General Notation System (CGNS) provides a general, portable, and extensible standard for the storage and retrieval of computational fluid dynamics (CFD) analysis data. It consists of a collection of conventions, and free and open software implementing those conventions. It is self-descriptive, machine-independent, well-documented, and administered by an international steering committee.} maintainers cerfacs.fr:dechaume categories science version 2.5.4 revision 1 chemtool 446 variants universal portdir science/chemtool description {Chemtool is a small program for drawing chemical structures} homepage http://ruby.chemie.uni-freiburg.de/~martin/chemtool/chemtool.html epoch 0 platforms darwin name chemtool depends_lib {port:gtk2 port:openbabel port:transfig} long_description {{Chemtool is a small program for drawing chemical structures}} maintainers {simon openmaintainer} categories science version 1.6.11 revision 0 clustalx 771 -------------- next part -------------- An HTML attachment was scrubbed... URL: From breskeby at macports.org Fri Jan 8 04:02:21 2010 From: breskeby at macports.org (breskeby at macports.org) Date: Fri, 8 Jan 2010 04:02:21 -0800 (PST) Subject: [62448] trunk/dports/devel/griffon-devel/ Message-ID: <20100108120221.A98183B09D92@beta.macosforge.org> Revision: 62448 http://trac.macports.org/changeset/62448 Author: breskeby at macports.org Date: 2010-01-08 04:02:19 -0800 (Fri, 08 Jan 2010) Log Message: ----------- Share project "griffon-devel" into "http://svn.macports.org/repository/macports" Added Paths: ----------- trunk/dports/devel/griffon-devel/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From breskeby at macports.org Fri Jan 8 04:03:51 2010 From: breskeby at macports.org (breskeby at macports.org) Date: Fri, 8 Jan 2010 04:03:51 -0800 (PST) Subject: [62449] trunk/dports/devel/griffon-devel/Portfile Message-ID: <20100108120351.203293B09EF5@beta.macosforge.org> Revision: 62449 http://trac.macports.org/changeset/62449 Author: breskeby at macports.org Date: 2010-01-08 04:03:49 -0800 (Fri, 08 Jan 2010) Log Message: ----------- ##23185 initial commit of beta release 0.3-BETA-1 Added Paths: ----------- trunk/dports/devel/griffon-devel/Portfile Added: trunk/dports/devel/griffon-devel/Portfile =================================================================== --- trunk/dports/devel/griffon-devel/Portfile (rev 0) +++ trunk/dports/devel/griffon-devel/Portfile 2010-01-08 12:03:49 UTC (rev 62449) @@ -0,0 +1,70 @@ +# $Id: Portfile 62436 2010-01-08 02:37:00Z ryandesign at macports.org $ + +PortSystem 1.0 + +name griffon-devel +version 0.3-BETA-1 +set branch [lindex [split ${version} -] 0] +categories devel java +maintainers breskeby +platforms darwin + +description Griffon is a Grails like application framework for developing desktop applications in Groovy. +long_description Griffon aims to bring the "coding by convention" paradigm to Groovy. \ + It is an open-source application framework that leverages the Groovy \ + language and complements Java desktop development. \ + You can use Griffon as a standalone development environment that hides all \ + configuration details or integrate your Java business logic. \ + Griffon aims to make development as simple as possible and hence \ + should appeal to a wide range of developers not just those from the Java community. + +homepage http://griffon.codehaus.org/ +conflicts griffon + +distname griffon-bin-${version} +master_sites http://dist.codehaus.org/griffon/griffon/${branch}.x/BETA + +checksums md5 2a2596eae0774a701ef8334c3d0ff9d1 \ + sha1 4c9d00e4b509364740a1202b04e128c51d3dc91c \ + rmd160 75032837aca6b0c2ea41ca1bb7b036e3bc3f1337 + +worksrcdir griffon-${version} +set workTarget "" + +use_configure no + +build.cmd true + +pre-destroot { + # Remove extraneous bat files + foreach f [glob -directory ${worksrcpath}${workTarget}/bin *.bat] { + file delete $f + } +} + +destroot { + # Create the target java directory + xinstall -m 755 -d ${destroot}${prefix}/share/java/${name} + + # Copy over the needed elements of our directory tree + file copy ${worksrcpath}/bin \ + ${worksrcpath}/dist \ + ${worksrcpath}/conf \ + ${worksrcpath}/lib \ + ${worksrcpath}/media \ + ${worksrcpath}/scripts \ + ${worksrcpath}/src \ + ${worksrcpath}/build.properties \ + ${destroot}${prefix}/share/java/${name} + + # Symlink programs into the bin directory + ln -s ${prefix}/share/java/${name}/bin/griffon ${destroot}${prefix}/bin + ln -s ${prefix}/share/java/${name}/bin/startGriffon ${destroot}${prefix}/bin +} + +post-activate { + ui_msg "****************************************************************************" + ui_msg "* Remember to set the environment variable GRIFFON_HOME to the path to" + ui_msg "* the griffon distribution: ${prefix}/share/java/${name}" + ui_msg "****************************************************************************" + } -------------- next part -------------- An HTML attachment was scrubbed... URL: From breskeby at macports.org Fri Jan 8 04:04:29 2010 From: breskeby at macports.org (breskeby at macports.org) Date: Fri, 8 Jan 2010 04:04:29 -0800 (PST) Subject: [62450] trunk/dports/devel/griffon/Portfile Message-ID: <20100108120429.E51AB3B09F3B@beta.macosforge.org> Revision: 62450 http://trac.macports.org/changeset/62450 Author: breskeby at macports.org Date: 2010-01-08 04:04:28 -0800 (Fri, 08 Jan 2010) Log Message: ----------- ##23185 add conflict parameter (conflicts with griffon-devel) Modified Paths: -------------- trunk/dports/devel/griffon/Portfile Modified: trunk/dports/devel/griffon/Portfile =================================================================== --- trunk/dports/devel/griffon/Portfile 2010-01-08 12:03:49 UTC (rev 62449) +++ trunk/dports/devel/griffon/Portfile 2010-01-08 12:04:28 UTC (rev 62450) @@ -19,6 +19,7 @@ should appeal to a wide range of developers not just those from the Java community. homepage http://griffon.codehaus.org/ +conflicts griffon-devel distname ${name}-bin-${version} master_sites http://dist.codehaus.org/griffon/griffon/${branch}.x -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Fri Jan 8 04:06:22 2010 From: ryandesign at macports.org (ryandesign at macports.org) Date: Fri, 8 Jan 2010 04:06:22 -0800 (PST) Subject: [62451] trunk/dports/graphics/dcraw/Portfile Message-ID: <20100108120622.A922F3B09FB2@beta.macosforge.org> Revision: 62451 http://trac.macports.org/changeset/62451 Author: ryandesign at macports.org Date: 2010-01-08 04:06:21 -0800 (Fri, 08 Jan 2010) Log Message: ----------- dcraw: ease upgrade from ufraw < 0.16; see #16525 Modified Paths: -------------- trunk/dports/graphics/dcraw/Portfile Modified: trunk/dports/graphics/dcraw/Portfile =================================================================== --- trunk/dports/graphics/dcraw/Portfile 2010-01-08 12:04:28 UTC (rev 62450) +++ trunk/dports/graphics/dcraw/Portfile 2010-01-08 12:06:21 UTC (rev 62451) @@ -50,6 +50,20 @@ configure.ldflags-append ${configure.universal_ldflags} } +pre-configure { + # ufraw 0.15 and earlier provided its own copy of dcraw, but 0.16 now + # depends on the dcraw port instead. To prevent activation conflicts + # when upgrading to ufraw 0.16, ensure an old dcraw-providing ufraw + # is not active. + if {[file exists ${prefix}/bin/ufraw]} { + set ufraw_minimum_version 0.16 + set ufraw_installed_version [exec ufraw --version 2>&1 | awk "/^ufraw/ {print \$2}"] + if {[rpm-vercomp ${ufraw_installed_version} ${ufraw_minimum_version}] < 0} { + return -code error "Please deactivate your currently-installed ufraw port, then try again" + } + } +} + pre-build { build.args CC=${configure.cc} \ CFLAGS="[join ${configure.cflags}]" \ -------------- next part -------------- An HTML attachment was scrubbed... URL: From raimue at macports.org Fri Jan 8 04:35:52 2010 From: raimue at macports.org (raimue at macports.org) Date: Fri, 8 Jan 2010 04:35:52 -0800 (PST) Subject: [62452] trunk/dports/devel/bzr/Portfile Message-ID: <20100108123553.5ADF23B0A608@beta.macosforge.org> Revision: 62452 http://trac.macports.org/changeset/62452 Author: raimue at macports.org Date: 2010-01-08 04:35:49 -0800 (Fri, 08 Jan 2010) Log Message: ----------- devel/bzr: Fix livecheck as it missed last update. Modified Paths: -------------- trunk/dports/devel/bzr/Portfile Modified: trunk/dports/devel/bzr/Portfile =================================================================== --- trunk/dports/devel/bzr/Portfile 2010-01-08 12:06:21 UTC (rev 62451) +++ trunk/dports/devel/bzr/Portfile 2010-01-08 12:35:49 UTC (rev 62452) @@ -51,4 +51,4 @@ livecheck.type regex livecheck.url http://feeds.launchpad.net/bzr/announcements.atom # Pre-releases end with b[0-9]+ or rc[0-9]+ -livecheck.regex {(?:bzr |bzr-|Bazaar |bazaar )(\d+(?:\.\d+)*) [rR]eleased} +livecheck.regex {(?:bzr |bzr-|Bazaar |bazaar )(\d+(?:\.\d+)*) .*[rR]eleased} -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Fri Jan 8 04:55:16 2010 From: portindex at macports.org (portindex at macports.org) Date: Fri, 8 Jan 2010 04:55:16 -0800 (PST) Subject: [62453] trunk/dports Message-ID: <20100108125518.068B43B0ABAF@beta.macosforge.org> Revision: 62453 http://trac.macports.org/changeset/62453 Author: portindex at macports.org Date: 2010-01-08 04:55:15 -0800 (Fri, 08 Jan 2010) Log Message: ----------- Total number of ports parsed: 6478 Ports successfully parsed: 6478 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex trunk/dports/PortIndex.quick Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-08 12:35:49 UTC (rev 62452) +++ trunk/dports/PortIndex 2010-01-08 12:55:15 UTC (rev 62453) @@ -1403,7 +1403,9 @@ grails-devel 803 variants darwin portdir devel/grails-devel description {An open-source web application framework that leverages the Groovy language} homepage http://www.grails.org/ epoch 0 platforms darwin name grails-devel long_description {Grails aims to bring the {coding by convention} paradigm to Groovy. It's an open-source web application framework that leverages the Groovy language and complements Java Web development. You can use Grails as a standalone development environment that hides all configuration details or integrate your Java business logic. Grails aims to make development as simple as possible and hence should appeal to a wide range of developers not just those from the Java community.} maintainers breskeby depends_extract bin:unzip:unzip categories {devel java} version 1.2.0.RC2 revision 0 griffon 769 -portdir devel/griffon description {Griffon is a Grails like application framework for developing desktop applications in Groovy.} homepage http://griffon.codehaus.org/ epoch 0 platforms darwin name griffon maintainers breskeby long_description {Griffon aims to bring the {coding by convention} paradigm to Groovy. It is an open-source application framework that leverages the Groovy language and complements Java desktop development. You can use Griffon as a standalone development environment that hides all configuration details or integrate your Java business logic. Griffon aims to make development as simple as possible and hence should appeal to a wide range of developers not just those from the Java community.} version 0.2.1 categories {devel java} revision 0 +portdir devel/griffon description {Griffon is a Grails like application framework for developing desktop applications in Groovy.} homepage http://griffon.codehaus.org/ epoch 0 platforms darwin name griffon maintainers breskeby long_description {Griffon aims to bring the {coding by convention} paradigm to Groovy. It is an open-source application framework that leverages the Groovy language and complements Java desktop development. You can use Griffon as a standalone development environment that hides all configuration details or integrate your Java business logic. Griffon aims to make development as simple as possible and hence should appeal to a wide range of developers not just those from the Java community.} categories {devel java} version 0.2.1 revision 0 +griffon-devel 786 +portdir devel/griffon-devel description {Griffon is a Grails like application framework for developing desktop applications in Groovy.} homepage http://griffon.codehaus.org/ epoch 0 platforms darwin name griffon-devel maintainers breskeby long_description {Griffon aims to bring the {coding by convention} paradigm to Groovy. It is an open-source application framework that leverages the Groovy language and complements Java desktop development. You can use Griffon as a standalone development environment that hides all configuration details or integrate your Java business logic. Griffon aims to make development as simple as possible and hence should appeal to a wide range of developers not just those from the Java community.} categories {devel java} version 0.3-BETA-1 revision 0 gsoap 576 variants universal portdir devel/gsoap description {offers an XML to C/C++ language binding to ease the development of SOAP/XML Web services in C and C/C++} homepage http://www.cs.fsu.edu/~engelen/soap.html epoch 0 platforms darwin name gsoap long_description {The gSOAP toolkit is a cross-platform development environment for C and C++ SOAP/XML Web services (SOAP 1.1/1.2, WSDL 1.1). gSOAP supports XML serialization of native C/C++ data types. Includes stub/skeleton compiler, HTTP Web server, and much more.} maintainers stechert categories devel version 2.7.13 revision 0 gtgt 837 Modified: trunk/dports/PortIndex.quick =================================================================== (Binary files differ) -------------- next part -------------- An HTML attachment was scrubbed... URL: From raimue at macports.org Fri Jan 8 05:11:11 2010 From: raimue at macports.org (raimue at macports.org) Date: Fri, 8 Jan 2010 05:11:11 -0800 (PST) Subject: [62454] trunk/dports/devel/bzr Message-ID: <20100108131112.6F1E93B0AF02@beta.macosforge.org> Revision: 62454 http://trac.macports.org/changeset/62454 Author: raimue at macports.org Date: 2010-01-08 05:11:10 -0800 (Fri, 08 Jan 2010) Log Message: ----------- devel/bzr: Update to version 2.0.3 Modified Paths: -------------- trunk/dports/devel/bzr/Portfile trunk/dports/devel/bzr/files/patch-setup.py.diff Modified: trunk/dports/devel/bzr/Portfile =================================================================== --- trunk/dports/devel/bzr/Portfile 2010-01-08 12:55:15 UTC (rev 62453) +++ trunk/dports/devel/bzr/Portfile 2010-01-08 13:11:10 UTC (rev 62454) @@ -4,7 +4,7 @@ PortGroup python26 1.0 name bzr -version 2.0.1 +version 2.0.3 set branch [join [lrange [split ${version} .] 0 1] .] categories devel python platforms darwin @@ -22,9 +22,9 @@ homepage http://bazaar-vcs.org/ master_sites https://launchpad.net/${name}/${branch}/${version}/+download/ -checksums md5 8b4d977e70efefeb7ba75d2b20900376 \ - sha1 e19c05e052290746de54f65254e056e39ba5e018 \ - rmd160 a48492a27942f1001c1270fc8bb974135328c4b5 +checksums md5 60758e61b3fd3686966d7ab0ea17fa64 \ + sha1 178fe6546d32a1752a9e9abca57db128463bb1e6 \ + rmd160 3b33e5148ff47e66b0315e964d2b8e565d056675 patchfiles patch-setup.py.diff Modified: trunk/dports/devel/bzr/files/patch-setup.py.diff =================================================================== --- trunk/dports/devel/bzr/files/patch-setup.py.diff 2010-01-08 12:55:15 UTC (rev 62453) +++ trunk/dports/devel/bzr/files/patch-setup.py.diff 2010-01-08 13:11:10 UTC (rev 62454) @@ -1,6 +1,6 @@ --- setup.py 2009-07-24 09:59:28.000000000 +0800 +++ setup.py 2009-07-24 10:00:00.000000000 +0800 -@@ -659,7 +659,7 @@ +@@ -682,7 +682,7 @@ if not 'bdist_egg' in sys.argv: # generate and install bzr.1 only with plain install, not the # easy_install one -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Fri Jan 8 05:55:21 2010 From: portindex at macports.org (portindex at macports.org) Date: Fri, 8 Jan 2010 05:55:21 -0800 (PST) Subject: [62455] trunk/dports/PortIndex Message-ID: <20100108135523.C8C6F3B0B74E@beta.macosforge.org> Revision: 62455 http://trac.macports.org/changeset/62455 Author: portindex at macports.org Date: 2010-01-08 05:55:17 -0800 (Fri, 08 Jan 2010) Log Message: ----------- Total number of ports parsed: 6478 Ports successfully parsed: 6478 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-08 13:11:10 UTC (rev 62454) +++ trunk/dports/PortIndex 2010-01-08 13:55:17 UTC (rev 62455) @@ -1019,7 +1019,7 @@ byaccj 418 portdir devel/byaccj description {yacc compatible parser generator with Java extension} homepage http://byaccj.sourceforge.net/ epoch 0 platforms darwin name byaccj maintainers mww long_description {byacc/j is an extension to the Berkeley v1.8 yacc compatible parser generator. byacc/j not only can produce C/C++ source for a LALR-grammar parser, but also Java source.} version 1.15 categories {devel java} revision 0 bzr 808 -portdir devel/bzr description {The next-generation distributed version control system} homepage http://bazaar-vcs.org/ epoch 0 platforms darwin depends_lib {port:python26 port:py26-paramiko port:py26-crypto port:py26-curl port:py26-docutils port:py26-pyrex} name bzr maintainers raimue long_description {Bazaar is an open source distributed version control system that is powerful, friendly, and scalable. It manages trees of files and subdirectories, In particular, it records revisions of trees, representing their state at a particular point in time, and information about those revisions and their relationships. Recording and retrieving tree revisions is useful in several ways if you are writing software or documents or doing similar creative work.} version 2.0.1 categories {devel python} revision 0 +portdir devel/bzr description {The next-generation distributed version control system} homepage http://bazaar-vcs.org/ epoch 0 platforms darwin depends_lib {port:python26 port:py26-paramiko port:py26-crypto port:py26-curl port:py26-docutils port:py26-pyrex} name bzr maintainers raimue long_description {Bazaar is an open source distributed version control system that is powerful, friendly, and scalable. It manages trees of files and subdirectories, In particular, it records revisions of trees, representing their state at a particular point in time, and information about those revisions and their relationships. Recording and retrieving tree revisions is useful in several ways if you are writing software or documents or doing similar creative work.} version 2.0.3 categories {devel python} revision 0 bzr-gtk 362 portdir devel/bzr-gtk description {Various GTK+ frontends for bzr} homepage http://bazaar-vcs.org/bzr-gtk epoch 0 platforms darwin depends_lib {port:python26 port:bzr port:py26-gtk} name bzr-gtk maintainers raimue long_description {A bzr plugin that contains various GTK+ frontends to different bzr commands.} version 0.97.0 categories {devel python} revision 1 bzr-pager 303 -------------- next part -------------- An HTML attachment was scrubbed... URL: From macsforever2000 at macports.org Fri Jan 8 08:36:21 2010 From: macsforever2000 at macports.org (macsforever2000 at macports.org) Date: Fri, 8 Jan 2010 08:36:21 -0800 (PST) Subject: [62456] trunk/dports/lang/erlang/Portfile Message-ID: <20100108163621.E13D63B0D62F@beta.macosforge.org> Revision: 62456 http://trac.macports.org/changeset/62456 Author: macsforever2000 at macports.org Date: 2010-01-08 08:36:17 -0800 (Fri, 08 Jan 2010) Log Message: ----------- Move wxwidgets dependency to a variant. Maintainer timeout. Also moved variants down some to be more organized. (#20006) Modified Paths: -------------- trunk/dports/lang/erlang/Portfile Modified: trunk/dports/lang/erlang/Portfile =================================================================== --- trunk/dports/lang/erlang/Portfile 2010-01-08 13:55:17 UTC (rev 62455) +++ trunk/dports/lang/erlang/Portfile 2010-01-08 16:36:17 UTC (rev 62456) @@ -71,6 +71,26 @@ --enable-hipe \ --disable-ssl +depends_build port:gawk + +post-destroot { + system "tar -C ${destroot}${prefix}/lib/erlang -zxvf ${distpath}/otp_doc_html_${version}${extract.suffix}" + system "tar -C ${destroot}${prefix}/lib/erlang -zxvf ${distpath}/otp_doc_man_${version}${extract.suffix}" + + set erts_dir erts-5.7.4 + + reinplace s|${destroot}|| ${destroot}${prefix}/lib/erlang/bin/erl + reinplace s|${destroot}|| ${destroot}${prefix}/lib/erlang/bin/start + reinplace s|${destroot}|| ${destroot}${prefix}/lib/erlang/${erts_dir}/bin/erl + reinplace s|${destroot}|| ${destroot}${prefix}/lib/erlang/${erts_dir}/bin/start + + foreach x {dialyzer ear ecc elink epmd erl erlc escript run_erl start to_erl typer} { file delete -force ${destroot}${prefix}/bin/${x} } + foreach x {dialyzer erl erlc escript run_erl start to_erl typer} { system "ln -s ../lib/erlang/bin/${x} ${destroot}${prefix}/bin/${x}" } + + file delete -force ${destroot}${prefix}/lib/erlang/bin/epmd + system "ln -s ../${erts_dir}/bin/epmd ${destroot}${prefix}/lib/erlang/bin/epmd" +} + platform darwin 10 { # 10.6 comes with wxWidgets and since it requires libsdl, which # current doesn't compile (bug #20235), we can avoid it here. @@ -85,6 +105,11 @@ configure.ldflags-append -framework CoreFoundation } +variant wxwidgets description {Build wxWidgets support} { + depends_build-append port:wxWidgets + depends_run-append port:tk +} + variant ssl description {Build SSL support} { configure.args-delete --disable-ssl configure.args-append --with-ssl=${prefix} @@ -97,28 +122,6 @@ configure.args-delete --enable-hipe } -depends_build port:gawk \ - port:wxWidgets -depends_run port:tk - -post-destroot { - system "tar -C ${destroot}${prefix}/lib/erlang -zxvf ${distpath}/otp_doc_html_${version}${extract.suffix}" - system "tar -C ${destroot}${prefix}/lib/erlang -zxvf ${distpath}/otp_doc_man_${version}${extract.suffix}" - - set erts_dir erts-5.7.4 - - reinplace s|${destroot}|| ${destroot}${prefix}/lib/erlang/bin/erl - reinplace s|${destroot}|| ${destroot}${prefix}/lib/erlang/bin/start - reinplace s|${destroot}|| ${destroot}${prefix}/lib/erlang/${erts_dir}/bin/erl - reinplace s|${destroot}|| ${destroot}${prefix}/lib/erlang/${erts_dir}/bin/start - - foreach x {dialyzer ear ecc elink epmd erl erlc escript run_erl start to_erl typer} { file delete -force ${destroot}${prefix}/bin/${x} } - foreach x {dialyzer erl erlc escript run_erl start to_erl typer} { system "ln -s ../lib/erlang/bin/${x} ${destroot}${prefix}/bin/${x}" } - - file delete -force ${destroot}${prefix}/lib/erlang/bin/epmd - system "ln -s ../${erts_dir}/bin/epmd ${destroot}${prefix}/lib/erlang/bin/epmd" -} - # Livecheck livecheck.type regex livecheck.version ${version} -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Fri Jan 8 08:54:27 2010 From: portindex at macports.org (portindex at macports.org) Date: Fri, 8 Jan 2010 08:54:27 -0800 (PST) Subject: [62457] trunk/dports Message-ID: <20100108165430.ECC333B0DBE0@beta.macosforge.org> Revision: 62457 http://trac.macports.org/changeset/62457 Author: portindex at macports.org Date: 2010-01-08 08:54:25 -0800 (Fri, 08 Jan 2010) Log Message: ----------- Total number of ports parsed: 6478 Ports successfully parsed: 6478 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex trunk/dports/PortIndex.quick Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-08 16:36:17 UTC (rev 62456) +++ trunk/dports/PortIndex 2010-01-08 16:54:25 UTC (rev 62457) @@ -4336,8 +4336,8 @@ variants {i386 powerpc precompile} depends_build bin:bzip2:bzip2 portdir lang/eiffelstudio65 description {The ISE Eiffel Compiler and IDE} homepage http://www.eiffel.com epoch 0 platforms darwin name eiffelstudio65 depends_lib port:gtk2 long_description {EiffelStudio is a development environment for the Eiffel programming language developed by Eiffel Software. EiffelStudio includes a combination of tools integrated under a single user interface: compiler, interpreter, debugger, browser, metrics tool, profiler, diagram tool. The user interface rests on a number of specific UI paradigms, in particular pick-and-drop for effective browsing.} maintainers {student.ethz.ch:roederja ethz.ch:dfurrer} categories lang version 6.5.81777 revision 0 elk 496 variants {x11 universal} portdir lang/elk description {Scheme Extension Language Kit} homepage http://sam.zoy.org/elk epoch 0 platforms darwin name elk long_description {Elk (the Extension Language Kit) is an implementation of the Scheme programming language. It can be used as a standalone Scheme interpreter, or as an embeddable, reusable extension language subsystem for applications written in C or C++ through the libelk library.} maintainers waqar categories lang version 3.99.7 revision 0 -erlang 830 -variants {darwin_10 ssl nohipe universal} depends_build {port:gawk port:wxWidgets} portdir lang/erlang description {The Erlang Programming Language} homepage http://www.erlang.org/ depends_run port:tk epoch 0 platforms darwin name erlang long_description {Erlang is a programming language designed at the Ericsson Computer Science Laboratory. Open-source Erlang is being released to help encourage the spread of Erlang outside Ericsson. We are releasing free of charge: The entire source code of the current Erlang system. Extensive libraries of code for building robust fault-tolerant distributed applications. All with documentation. All the above software has been battle tested in a number of Ericsson products, for example the new Ericsson ATM switch.} maintainers bfulgham categories {lang erlang} version R13B03 revision 0 +erlang 803 +variants {darwin_10 wxwidgets ssl nohipe universal} depends_build port:gawk portdir lang/erlang description {The Erlang Programming Language} homepage http://www.erlang.org/ epoch 0 platforms darwin name erlang long_description {Erlang is a programming language designed at the Ericsson Computer Science Laboratory. Open-source Erlang is being released to help encourage the spread of Erlang outside Ericsson. We are releasing free of charge: The entire source code of the current Erlang system. Extensive libraries of code for building robust fault-tolerant distributed applications. All with documentation. All the above software has been battle tested in a number of Ericsson products, for example the new Ericsson ATM switch.} maintainers bfulgham categories {lang erlang} version R13B03 revision 0 ferite 431 variants universal portdir lang/ferite description {embeddable scripting language} homepage http://www.ferite.org/ epoch 0 platforms darwin name ferite depends_lib {port:pcre port:libxml2} long_description {A scripting language designed to be embedded in other applications, that aims to provide a powerful object oriented syntax with low memory and cpu overhead.} maintainers nomaintainer categories lang version 1.0.2 revision 0 ficl 391 Modified: trunk/dports/PortIndex.quick =================================================================== (Binary files differ) -------------- next part -------------- An HTML attachment was scrubbed... URL: From noreply at macports.org Fri Jan 8 09:10:43 2010 From: noreply at macports.org (MacPorts) Date: Fri, 08 Jan 2010 17:10:43 -0000 Subject: [MacPorts] MacPortsDevelopers modified Message-ID: <20100108171043.6A9E4859458F@mail-out4.apple.com> Changed page "MacPortsDevelopers" by jabronson at gmail.com from 67.221.177.15* Page URL: Diff URL: Revision 166 -------8<------8<------8<------8<------8<------8<------8<------8<-------- Index: MacPortsDevelopers ========================================================================= --- MacPortsDevelopers (version: 165) +++ MacPortsDevelopers (version: 166) @@ -186,6 +186,6 @@ ||nomaintainer || If a port has no maintainer, the maintainer address is set to [http://guide.macports.org/#project.update-policies.nonmaintainer nomaintainer] || ||openmaintainer || If the maintainer allows others to change the port as well, [http://guide.macports.org/#project.update-policies.nonmaintainer openmaintainer] is added ||portindex || A cronjob generating and committing the PortIndex || -||portmgr || An alias for the [http://lists.macosforge.org/mailman/listinfo.cgi/macports-mgr project management mailing-list] || +||portmgr || An alias for the [http://lists.macosforge.org/mailman/listinfo.cgi/macports-mgr project management mailing-list] (macports-mgr at lists.macosforge.org) || See also SpecialMaintainerAddresses. -------8<------8<------8<------8<------8<------8<------8<------8<-------- * The IP shown here might not mean anything if the user or the server is behind a proxy. -- MacPorts Ports system for Mac OS This is an automated message. Someone at http://www.macports.org/ added your email address to be notified of changes on MacPortsDevelopers. If it was not you, please report to . From sharky at macports.org Fri Jan 8 09:20:23 2010 From: sharky at macports.org (sharky at macports.org) Date: Fri, 8 Jan 2010 09:20:23 -0800 (PST) Subject: [62458] trunk/dports/aqua/qt4-mac Message-ID: <20100108172023.9A4C33B0E3E9@beta.macosforge.org> Revision: 62458 http://trac.macports.org/changeset/62458 Author: sharky at macports.org Date: 2010-01-08 09:20:20 -0800 (Fri, 08 Jan 2010) Log Message: ----------- qt4-mac: update to version 4.6.0 (#22743) Modified Paths: -------------- trunk/dports/aqua/qt4-mac/Portfile Added Paths: ----------- trunk/dports/aqua/qt4-mac/files/patch-configure.diff Removed Paths: ------------- trunk/dports/aqua/qt4-mac/files/patch-qt3support-for-cocoa.diff Modified: trunk/dports/aqua/qt4-mac/Portfile =================================================================== --- trunk/dports/aqua/qt4-mac/Portfile 2010-01-08 16:54:25 UTC (rev 62457) +++ trunk/dports/aqua/qt4-mac/Portfile 2010-01-08 17:20:20 UTC (rev 62458) @@ -5,8 +5,7 @@ name qt4-mac conflicts qt4-mac-devel kdelibs3 libevent -version 4.5.3 -revision 1 +version 4.6.0 categories aqua platforms macosx maintainers nomaintainer @@ -16,55 +15,48 @@ long_description This is Qt, TrollTech's C++ toolkit for writing cross-platform GUI applications. \ This version uses the native Aqua UI. For a X11 version, see qt4-x11. master_sites trolltech -distname qt-mac-opensource-src-${version} +distname qt-everywhere-opensource-src-${version} -checksums \ - md5 484e3739fdc51540218ed92f4b732881 \ - sha1 566a9c45b261447c07c784b9317c9b5aae1ccbd8 \ - rmd160 290fecbe8698ead4f884617ae4dd20b37663545e +checksums md5 2a7b5126f2450d8525af355fc4c12ad6 \ + sha1 c2cbbde83f1ebac3b8dd13a112fcad757d395041 \ + rmd160 7842b9f4a5364016677fc2162dfd31f1440bb05d depends_build port:pkgconfig -depends_lib \ - port:zlib \ - port:tiff \ - port:libpng \ - port:libmng \ - port:jpeg \ - port:dbus \ - port:openssl \ - port:sqlite3 +depends_lib port:zlib port:dbus port:openssl port:sqlite3 \ + port:tiff port:libpng port:libmng port:jpeg # Build plugins as bundle files instead of dylib files. # Test for Precompiled-headers support requires a C++ compiler, but configure calls it, by default, with a C compiler. -# Use unixODBC provided by MacPorts instead of iODBC provided my Mac OS. # Ensure that securesocketclient demo is built even with configure option -openssl-linked. -patchfiles \ - patch-mac.conf.diff \ - patch-precomp.test.diff \ - patch-odbc.diff \ - patch-network.pro.diff \ - patch-qt3support-for-cocoa.diff +patchfiles patch-mac.conf.diff \ + patch-configure.diff \ + patch-precomp.test.diff \ + patch-network.pro.diff # The build process uses -fconstant-cfstrings. # configure.compiler should therefore not be one of the MacPorts compilers. # --prefix is not recognized. configure.pre_args-delete --prefix=${prefix} -# -I${prefix}/include and -L${prefix}/lib must be set in ${configure.args} -# or else some generated Makefiles will not see them. -configure.cppflags -configure.ldflags ################################################################################ # We do not want flags of any kind -- QT is smart enough to set up its own. # ################################################################################ +configure.cflags +configure.cppflags +configure.cxxflags +configure.ldflags + configure.universal_cflags configure.universal_cppflags configure.universal_cxxflags configure.universal_ldflags +configure.cc_archflags +configure.cxx_archflags + set dirname qt4-mac set qt_dir ${prefix}/libexec/${dirname} @@ -182,7 +174,7 @@ post-destroot { # Install documentation. - foreach doc { FAQ.txt INSTALL LGPL_EXCEPTION.txt LICENSE.GPL3 LICENSE.LGPL README } { + foreach doc { INSTALL LGPL_EXCEPTION.txt LICENSE.GPL3 LICENSE.LGPL README } { xinstall -c -m 644 ${worksrcpath}/$doc ${destroot}${prefix}/share/doc/${name} } Added: trunk/dports/aqua/qt4-mac/files/patch-configure.diff =================================================================== --- trunk/dports/aqua/qt4-mac/files/patch-configure.diff (rev 0) +++ trunk/dports/aqua/qt4-mac/files/patch-configure.diff 2010-01-08 17:20:20 UTC (rev 62458) @@ -0,0 +1,11 @@ +--- configure.orig 2009-10-13 17:34:09.000000000 +0200 ++++ configure 2009-11-03 17:46:54.000000000 +0100 +@@ -131,7 +131,7 @@ + cat >conftest.cpp < -Date: Thu, 10 Sep 2009 11:53:31 +0200 -Subject: [PATCH] Enable Qt3Support for Qt/Cocoa on Mac OS X. - -Qt on Mac OS X should not be the only desktop platform -without Qt3Support once the Carpon port is dropped. This -will also make the switch from Carbon to Cocoa-based Qt -as smooth as possible. - -This is a minimal port, with some code removed: -Q3FileDialog is gone. -Q3MainWindow won't get the "hide toolbar" button. -Q3ScrollView might to more updates than structly neccesary. - -The rest is there, including the QT3_SUPPORT functions -in QtCore and QtGui. ---- - configure | 1 - - src/qt3support/dialogs/q3filedialog.cpp | 5 ++++- - src/qt3support/dialogs/q3filedialog.h | 4 ++++ - src/qt3support/dialogs/q3filedialog_mac.cpp | 4 ++++ - src/qt3support/widgets/q3mainwindow.cpp | 4 ++-- - src/qt3support/widgets/q3scrollview.cpp | 4 ++++ - 6 files changed, 18 insertions(+), 4 deletions(-) - -diff --git configure configure -index 719db32..43aa739 100755 ---- configure -+++ configure -@@ -5859,7 +5859,6 @@ case "$PLATFORM,$CFG_MAC_COCOA" in - macx*,yes) - # Cocoa - QMakeVar set QMAKE_MACOSX_DEPLOYMENT_TARGET 10.5 -- CFG_QT3SUPPORT="no" - ;; - macx*,no) - # gcc, Carbon -diff --git src/qt3support/dialogs/q3filedialog.cpp src/qt3support/dialogs/q3filedialog.cpp -index 66ace5d..c14ff5c 100644 ---- src/qt3support/dialogs/q3filedialog.cpp -+++ src/qt3support/dialogs/q3filedialog.cpp -@@ -116,6 +116,8 @@ - - QT_BEGIN_NAMESPACE - -+#ifndef QT_MAC_USE_COCOA -+ - /* XPM */ - static const char * const start_xpm[]={ - "16 15 8 1", -@@ -6051,7 +6053,8 @@ Q3FilePreview::Q3FilePreview() - function to provide file previewing. - */ - -- -+#endif // QT_MAC_USE_COCOA -+ - QT_END_NAMESPACE - - #include "moc_q3filedialog.cpp" -diff --git src/qt3support/dialogs/q3filedialog.h src/qt3support/dialogs/q3filedialog.h -index f6a7950..8644b4c 100644 ---- src/qt3support/dialogs/q3filedialog.h -+++ src/qt3support/dialogs/q3filedialog.h -@@ -69,6 +69,8 @@ class QUrlInfo; - - #ifndef QT_NO_FILEDIALOG - -+#ifndef QT_MAC_USE_COCOA -+ - class Q_COMPAT_EXPORT Q3FileIconProvider : public QObject - { - Q_OBJECT -@@ -337,6 +339,8 @@ private: - #endif - }; - -+#endif // QT_MAC_USE_COCOA -+ - #endif // QT_NO_FILEDIALOG - - QT_END_NAMESPACE -diff --git src/qt3support/dialogs/q3filedialog_mac.cpp src/qt3support/dialogs/q3filedialog_mac.cpp -index a36274d..585fa8f 100644 ---- src/qt3support/dialogs/q3filedialog_mac.cpp -+++ src/qt3support/dialogs/q3filedialog_mac.cpp -@@ -60,6 +60,8 @@ - - QT_BEGIN_NAMESPACE - -+#ifndef QT_MAC_USE_COCOA -+ - /***************************************************************************** - Externals - *****************************************************************************/ -@@ -564,6 +566,8 @@ QString Q3FileDialog::macGetSaveFileName(const QString &start, const QString &fi - return retstr; - } - -+#endif // QT_MAC_USE_COCOA -+ - QT_END_NAMESPACE - - #endif -diff --git src/qt3support/widgets/q3mainwindow.cpp src/qt3support/widgets/q3mainwindow.cpp -index b7fc486..e02d890 100644 ---- src/qt3support/widgets/q3mainwindow.cpp -+++ src/qt3support/widgets/q3mainwindow.cpp -@@ -1042,7 +1042,7 @@ void Q3MainWindow::addDockWindow(Q3DockWindow *dockWindow, - Qt::Dock edge, bool newLine) - { - Q_D(Q3MainWindow); --#ifdef Q_WS_MAC -+#if defined (Q_WS_MAC) && !defined(QT_MAC_USE_COCOA) - extern WindowPtr qt_mac_window_for(const QWidget*); //qwidget_mac.cpp - if(isWindow() && edge == Qt::DockTop) { - d->createWinId(); -@@ -1217,7 +1217,7 @@ void Q3MainWindow::removeDockWindow(Q3DockWindow * dockWindow) - { - Q_D(Q3MainWindow); - --#ifdef Q_WS_MAC -+#if defined (Q_WS_MAC) && !defined (QT_MAC_USE_COCOA) - extern WindowPtr qt_mac_window_for(const QWidget*); //qwidget_mac.cpp - if(isWindow() && dockWindow->area() == topDock() && !dockWindows(Qt::DockTop).count()) - ChangeWindowAttributes(qt_mac_window_for(this), 0, kWindowToolbarButtonAttribute); -diff --git src/qt3support/widgets/q3scrollview.cpp src/qt3support/widgets/q3scrollview.cpp -index 1178047..3be0145 100644 ---- src/qt3support/widgets/q3scrollview.cpp -+++ src/qt3support/widgets/q3scrollview.cpp -@@ -870,15 +870,19 @@ void Q3ScrollView::updateScrollBars() - mac_need_scroll = true; - } else { - QWidget *tlw = window(); -+#ifndef QT_MAC_USE_COCOA - QPoint tlw_br = QPoint(tlw->width(), tlw->height()), - my_br = qt_mac_posInWindow(this) + QPoint(w, h); - if(my_br.x() >= tlw_br.x() - 3 && my_br.y() >= tlw_br.y() - 3) -+#endif - mac_need_scroll = true; - } - if(mac_need_scroll) { -+#ifndef QT_MAC_USE_COCOA - WindowAttributes attr; - GetWindowAttributes((WindowPtr)handle(), &attr); - mac_need_scroll = (attr & kWindowResizableAttribute); -+#endif - } - if(mac_need_scroll) { - showc = true; --- -1.6.1 - -------------- next part -------------- An HTML attachment was scrubbed... URL: From noreply at macports.org Fri Jan 8 09:29:23 2010 From: noreply at macports.org (MacPorts) Date: Fri, 08 Jan 2010 17:29:23 -0000 Subject: [MacPorts] snc/snowleopard modified Message-ID: <20100108172923.B27A97F6B8B4@mail-out3.apple.com> Changed page "snc/snowleopard" by sharky at macports.org from 81.57.0.22* Page URL: Diff URL: Revision 175 Comment: qt3support works with latest qt4-mac -------8<------8<------8<------8<------8<------8<------8<------8<-------- Index: snc/snowleopard ========================================================================= --- snc/snowleopard (version: 174) +++ snc/snowleopard (version: 175) @@ -76,7 +76,7 @@ pxsl-tools ghc py25-llvm python25 python25 ? (+universal fails) -qt4-mac ? (no qt3support if 64bit/cocoa) +qt4-mac ? scriptix sshfs macfuse sshfs-gui sshfs -------8<------8<------8<------8<------8<------8<------8<------8<-------- * The IP shown here might not mean anything if the user or the server is behind a proxy. -- MacPorts Ports system for Mac OS This is an automated message. Someone at http://www.macports.org/ added your email address to be notified of changes on snc/snowleopard. If it was not you, please report to . From portindex at macports.org Fri Jan 8 09:54:32 2010 From: portindex at macports.org (portindex at macports.org) Date: Fri, 8 Jan 2010 09:54:32 -0800 (PST) Subject: [62459] trunk/dports/PortIndex Message-ID: <20100108175434.35F963B0EF6F@beta.macosforge.org> Revision: 62459 http://trac.macports.org/changeset/62459 Author: portindex at macports.org Date: 2010-01-08 09:54:31 -0800 (Fri, 08 Jan 2010) Log Message: ----------- Total number of ports parsed: 6478 Ports successfully parsed: 6478 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-08 17:20:20 UTC (rev 62458) +++ trunk/dports/PortIndex 2010-01-08 17:54:31 UTC (rev 62459) @@ -149,7 +149,7 @@ qt4-kde 601 variants {noframework webkit universal} depends_build port:pkgconfig portdir aqua/qt4-kde description {Qt Tool Kit (Native Aqua Version)} homepage http://qt.nokia.com/ epoch 0 platforms macosx depends_lib {port:zlib port:tiff port:libpng port:libmng port:jpeg port:dbus port:unixODBC path:lib/mysql5:mysql5 port:postgresql83 port:openssl port:sqlite3} name qt4-kde long_description {This is Qt, TrollTech's C++ toolkit for writing cross-platform GUI applications. This version uses the native Aqua UI. For a X11 version, see qt4-x11.} maintainers nomaintainer categories aqua version 4.5.2 revision 1 qt4-mac 586 -variants {darwin_10 mysql odbc psql sqlite2 cocoa noframework raster universal} depends_build port:pkgconfig portdir aqua/qt4-mac description {Qt Tool Kit (Native Aqua Version)} homepage http://qt.nokia.com/ epoch 0 platforms macosx depends_lib {port:zlib port:tiff port:libpng port:libmng port:jpeg port:dbus port:openssl port:sqlite3} name qt4-mac long_description {This is Qt, TrollTech's C++ toolkit for writing cross-platform GUI applications. This version uses the native Aqua UI. For a X11 version, see qt4-x11.} maintainers nomaintainer categories aqua version 4.5.3 revision 1 +variants {darwin_10 mysql odbc psql sqlite2 cocoa noframework raster universal} depends_build port:pkgconfig portdir aqua/qt4-mac description {Qt Tool Kit (Native Aqua Version)} homepage http://qt.nokia.com/ epoch 0 platforms macosx depends_lib {port:zlib port:dbus port:openssl port:sqlite3 port:tiff port:libpng port:libmng port:jpeg} name qt4-mac long_description {This is Qt, TrollTech's C++ toolkit for writing cross-platform GUI applications. This version uses the native Aqua UI. For a X11 version, see qt4-x11.} maintainers nomaintainer categories aqua version 4.6.0 revision 0 qt4-mac-devel 598 variants {darwin_10 mysql odbc psql sqlite2 cocoa noframework raster universal} depends_build port:pkgconfig portdir aqua/qt4-mac-devel description {Qt Tool Kit (Native Aqua Version)} homepage http://qt.nokia.com/ epoch 1 platforms macosx depends_lib {port:zlib port:dbus port:openssl port:sqlite3 port:tiff port:libpng port:libmng port:jpeg} name qt4-mac-devel long_description {This is Qt, TrollTech's C++ toolkit for writing cross-platform GUI applications. This version uses the native Aqua UI. For a X11 version, see qt4-x11.} maintainers nomaintainer categories aqua version 4.6.0 revision 1 qtiplot 741 -------------- next part -------------- An HTML attachment was scrubbed... URL: From jmr at macports.org Fri Jan 8 10:09:19 2010 From: jmr at macports.org (jmr at macports.org) Date: Fri, 8 Jan 2010 10:09:19 -0800 (PST) Subject: [62460] trunk/base/portmgr/dmg Message-ID: <20100108180920.267073B0F35A@beta.macosforge.org> Revision: 62460 http://trac.macports.org/changeset/62460 Author: jmr at macports.org Date: 2010-01-08 10:09:16 -0800 (Fri, 08 Jan 2010) Log Message: ----------- better error message from InstallationCheck if uname or sed is missing (#23175) Modified Paths: -------------- trunk/base/portmgr/dmg/InstallationCheck trunk/base/portmgr/dmg/InstallationCheck.strings Modified: trunk/base/portmgr/dmg/InstallationCheck =================================================================== --- trunk/base/portmgr/dmg/InstallationCheck 2010-01-08 17:54:31 UTC (rev 62459) +++ trunk/base/portmgr/dmg/InstallationCheck 2010-01-08 18:09:16 UTC (rev 62460) @@ -6,18 +6,23 @@ # MacPorts port which replaces __DARWINVERS__ with the version of Darwin # needed). +# error out if uname or sed can't be found +if ! which uname > /dev/null || ! which sed > /dev/null; then + # message 16 in InstallationCheck.strings + exit 112 +fi + base_version=`uname -r | sed 's/\..*//'` if [[ ${base_version} != __DARWINVERS__ ]]; then - # This maps to message 16 in InstallationCheck.strings (Apple allows + # This maps to message 17 in InstallationCheck.strings (Apple allows # 16-31 for custom messages); that message should also be customized # like this script - exit 112 + exit 113 fi if [[ -f /opt/local/etc/ports/dp_version ]]; then - # message 17 in InstallationCheck.strings - exit 113 + # message 18 in InstallationCheck.strings + exit 114 fi exit 0 - Modified: trunk/base/portmgr/dmg/InstallationCheck.strings =================================================================== --- trunk/base/portmgr/dmg/InstallationCheck.strings 2010-01-08 17:54:31 UTC (rev 62459) +++ trunk/base/portmgr/dmg/InstallationCheck.strings 2010-01-08 18:09:16 UTC (rev 62460) @@ -1,2 +1,3 @@ -"16" = "This package is meant to be installed on Mac OS X __XVERS__."; -"17" = "Your existing MacPorts or DarwinPorts installation is too old to be upgraded by this installer. Please install MacPorts 1.7.1 first."; +"16" = "Either uname or sed could not be found in PATH. Your system appears to be incomplete or misconfigured."; +"17" = "This package is meant to be installed on Mac OS X __XVERS__."; +"18" = "Your existing MacPorts or DarwinPorts installation is too old to be upgraded by this installer. Please install MacPorts 1.7.1 first."; -------------- next part -------------- An HTML attachment was scrubbed... URL: From jmr at macports.org Fri Jan 8 10:51:38 2010 From: jmr at macports.org (jmr at macports.org) Date: Fri, 8 Jan 2010 10:51:38 -0800 (PST) Subject: [62461] trunk/dports/graphics/libwmf/Portfile Message-ID: <20100108185138.AD8123B0FCEF@beta.macosforge.org> Revision: 62461 http://trac.macports.org/changeset/62461 Author: jmr at macports.org Date: 2010-01-08 10:51:35 -0800 (Fri, 08 Jan 2010) Log Message: ----------- libwmf: fix dependencies, disable gdk-pixbuf properly (#23183) Modified Paths: -------------- trunk/dports/graphics/libwmf/Portfile Modified: trunk/dports/graphics/libwmf/Portfile =================================================================== --- trunk/dports/graphics/libwmf/Portfile 2010-01-08 18:09:16 UTC (rev 62460) +++ trunk/dports/graphics/libwmf/Portfile 2010-01-08 18:51:35 UTC (rev 62461) @@ -20,38 +20,35 @@ homepage http://wvware.sourceforge.net/libwmf.html master_sites sourceforge:wvware -checksums md5 d1177739bf1ceb07f57421f0cee191e0 +checksums md5 d1177739bf1ceb07f57421f0cee191e0 \ + sha1 822ab3bd0f5e8f39ad732f2774a8e9f18fc91e89 depends_build \ - port:autoconf \ - port:automake \ - port:libtool + port:pkgconfig depends_lib \ port:zlib \ port:libpng \ port:jpeg \ - port:freetype + port:freetype \ + port:expat -post-patch { - system "cd ${worksrcpath} && autoreconf -fvi" - reinplace "s|@LIBWMF_GDK_PIXBUF_TRUE@|#|g" ${worksrcpath}/src/Makefile.in - reinplace "s|@LIBWMF_GDK_PIXBUF_FALSE@||g" ${worksrcpath}/src/Makefile.in -} +patchfiles configure.ac.diff -configure.args --with-jpeg --without-x --with-fontdir=${prefix}/share/fonts/${name} +use_autoreconf yes +autoreconf.args -fvi +configure.args --with-jpeg \ + --with-expat \ + --without-x \ + --with-fontdir=${prefix}/share/fonts/${name} + post-destroot { xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name} xinstall -m 644 -W ${worksrcpath} AUTHORS COPYING CREDITS ChangeLog \ NEWS README TODO ${destroot}${prefix}/share/doc/${name} } -variant expat conflicts xml2 description {Use expat not libxml2} { - depends_lib-append port:expat - configure.args-append --with-expat -} - variant x11 description {Enable X11 support} { depends_lib-append port:xorg-libX11 depends_build-append bin:mkfontdir:mkfontdir bin:mkfontscale:mkfontscale @@ -65,7 +62,9 @@ } variant xml2 conflicts expat description {Use libxml2 not expat} { + depends_lib-delete port:expat depends_lib-append port:libxml2 + configure.args-delete --with-expat configure.args-append --with-libxml2 } -------------- next part -------------- An HTML attachment was scrubbed... URL: From jmr at macports.org Fri Jan 8 10:52:33 2010 From: jmr at macports.org (jmr at macports.org) Date: Fri, 8 Jan 2010 10:52:33 -0800 (PST) Subject: [62462] trunk/dports/graphics/libwmf Message-ID: <20100108185233.73AE03B0FD23@beta.macosforge.org> Revision: 62462 http://trac.macports.org/changeset/62462 Author: jmr at macports.org Date: 2010-01-08 10:52:32 -0800 (Fri, 08 Jan 2010) Log Message: ----------- libwmf: patchfile Added Paths: ----------- trunk/dports/graphics/libwmf/files/ trunk/dports/graphics/libwmf/files/configure.ac.diff Added: trunk/dports/graphics/libwmf/files/configure.ac.diff =================================================================== --- trunk/dports/graphics/libwmf/files/configure.ac.diff (rev 0) +++ trunk/dports/graphics/libwmf/files/configure.ac.diff 2010-01-08 18:52:32 UTC (rev 62462) @@ -0,0 +1,17 @@ +--- configure.ac.orig 2005-07-28 06:48:39.000000000 +1000 ++++ configure.ac 2010-01-09 05:46:40.000000000 +1100 +@@ -742,14 +742,6 @@ + GDK_PIXBUF_LIBS="" + GDK_PIXBUF_DIR="" + +-if test $LIBWMF_BUILDSTYLE != lite; then +- PKG_CHECK_MODULES(GDK_PIXBUF,gdk-pixbuf-2.0 >= 2.1.2,[ +- GTK_VERSION=`$PKG_CONFIG --variable=gtk_binary_version gtk+-2.0` +- GDK_PIXBUF_DIR="gtk-2.0/$GTK_VERSION/loaders" +- wmf_gdk_pixbuf=yes +- ],[ wmf_gdk_pixbuf=no +- ]) +-fi + AM_CONDITIONAL(LIBWMF_GDK_PIXBUF,[test $wmf_gdk_pixbuf = yes]) + + AC_SUBST(GDK_PIXBUF_CFLAGS) -------------- next part -------------- An HTML attachment was scrubbed... URL: From jmr at macports.org Fri Jan 8 10:54:47 2010 From: jmr at macports.org (jmr at macports.org) Date: Fri, 8 Jan 2010 10:54:47 -0800 (PST) Subject: [62463] trunk/dports/graphics/libwmf/Portfile Message-ID: <20100108185447.DF9643B0FDDE@beta.macosforge.org> Revision: 62463 http://trac.macports.org/changeset/62463 Author: jmr at macports.org Date: 2010-01-08 10:54:46 -0800 (Fri, 08 Jan 2010) Log Message: ----------- libwmf: whitespace Modified Paths: -------------- trunk/dports/graphics/libwmf/Portfile Modified: trunk/dports/graphics/libwmf/Portfile =================================================================== --- trunk/dports/graphics/libwmf/Portfile 2010-01-08 18:52:32 UTC (rev 62462) +++ trunk/dports/graphics/libwmf/Portfile 2010-01-08 18:54:46 UTC (rev 62463) @@ -1,71 +1,71 @@ # -*- 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 +PortSystem 1.0 -name libwmf -version 0.2.8.4 -revision 3 -categories graphics fonts -maintainers nomaintainer -description Library for converting WMF (Window Metafile Format) files +name libwmf +version 0.2.8.4 +revision 3 +categories graphics fonts +maintainers nomaintainer +description Library for converting WMF (Window Metafile Format) files long_description \ - libwmf is a library for reading vector images in Microsoft's native \ - Windows Metafile Format (WMF) and for either (a) displaying them in, \ - e.g., an X window, or (b) converting them to more standard/open file \ - formats. + libwmf is a library for reading vector images in Microsoft's native \ + Windows Metafile Format (WMF) and for either (a) displaying them in, \ + e.g., an X window, or (b) converting them to more standard/open file \ + formats. -platforms darwin +platforms darwin -homepage http://wvware.sourceforge.net/libwmf.html -master_sites sourceforge:wvware +homepage http://wvware.sourceforge.net/libwmf.html +master_sites sourceforge:wvware -checksums md5 d1177739bf1ceb07f57421f0cee191e0 \ - sha1 822ab3bd0f5e8f39ad732f2774a8e9f18fc91e89 +checksums md5 d1177739bf1ceb07f57421f0cee191e0 \ + sha1 822ab3bd0f5e8f39ad732f2774a8e9f18fc91e89 depends_build \ - port:pkgconfig + port:pkgconfig depends_lib \ - port:zlib \ - port:libpng \ - port:jpeg \ - port:freetype \ - port:expat + port:zlib \ + port:libpng \ + port:jpeg \ + port:freetype \ + port:expat -patchfiles configure.ac.diff +patchfiles configure.ac.diff -use_autoreconf yes -autoreconf.args -fvi +use_autoreconf yes +autoreconf.args -fvi -configure.args --with-jpeg \ - --with-expat \ - --without-x \ - --with-fontdir=${prefix}/share/fonts/${name} +configure.args --with-jpeg \ + --with-expat \ + --without-x \ + --with-fontdir=${prefix}/share/fonts/${name} post-destroot { - xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name} - xinstall -m 644 -W ${worksrcpath} AUTHORS COPYING CREDITS ChangeLog \ - NEWS README TODO ${destroot}${prefix}/share/doc/${name} + xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name} + xinstall -m 644 -W ${worksrcpath} AUTHORS COPYING CREDITS ChangeLog \ + NEWS README TODO ${destroot}${prefix}/share/doc/${name} } variant x11 description {Enable X11 support} { - depends_lib-append port:xorg-libX11 - depends_build-append bin:mkfontdir:mkfontdir bin:mkfontscale:mkfontscale + depends_lib-append port:xorg-libX11 + depends_build-append bin:mkfontdir:mkfontdir bin:mkfontscale:mkfontscale - configure.args-delete --without-x - configure.args-append --with-x + configure.args-delete --without-x + configure.args-append --with-x - post-destroot { - system "mkfontscale ${destroot}${prefix}/share/fonts/${name} && mkfontdir ${destroot}${prefix}/share/fonts/${name}" - } + post-destroot { + system "mkfontscale ${destroot}${prefix}/share/fonts/${name} && mkfontdir ${destroot}${prefix}/share/fonts/${name}" + } } -variant xml2 conflicts expat description {Use libxml2 not expat} { - depends_lib-delete port:expat - depends_lib-append port:libxml2 - configure.args-delete --with-expat - configure.args-append --with-libxml2 +variant xml2 description {Use libxml2 not expat} { + depends_lib-delete port:expat + depends_lib-append port:libxml2 + configure.args-delete --with-expat + configure.args-append --with-libxml2 } livecheck.regex "${name} (.*) released.*" -------------- next part -------------- An HTML attachment was scrubbed... URL: From blair at macports.org Fri Jan 8 11:37:29 2010 From: blair at macports.org (blair at macports.org) Date: Fri, 8 Jan 2010 11:37:29 -0800 (PST) Subject: [62464] trunk/dports/lang/scala-devel/Portfile Message-ID: <20100108193729.7C4D33B1083C@beta.macosforge.org> Revision: 62464 http://trac.macports.org/changeset/62464 Author: blair at macports.org Date: 2010-01-08 11:37:27 -0800 (Fri, 08 Jan 2010) Log Message: ----------- New upstream 2.8.0.Beta1-RC7 release. Modified Paths: -------------- trunk/dports/lang/scala-devel/Portfile Modified: trunk/dports/lang/scala-devel/Portfile =================================================================== --- trunk/dports/lang/scala-devel/Portfile 2010-01-08 18:54:46 UTC (rev 62463) +++ trunk/dports/lang/scala-devel/Portfile 2010-01-08 19:37:27 UTC (rev 62464) @@ -4,7 +4,7 @@ name scala-devel conflicts scala -version 2.8.0.Beta1-RC6 +version 2.8.0.Beta1-RC7 categories lang java maintainers openmaintainer brett description The Scala Programming Language @@ -21,9 +21,9 @@ master_sites ${homepage}downloads/distrib/files/ distname scala-${version} extract.suffix .tgz -checksums md5 f2f4a6885d967658a30a38c55fa127f4 \ - sha1 fd94ddf07cf25db173069afad6495a28b98e3a5e\ - rmd160 29110395313aaab640cff9813721a8ea1616f317 +checksums md5 504e5e82d1ed0b22e77be580d0c50323 \ + sha1 5641764c8cbee9af7af7910cb893ae777fe8148c\ + rmd160 5e1bbcc7cc509ad165f48b72120c72300d4673b1 use_configure no build {} -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Fri Jan 8 11:54:43 2010 From: portindex at macports.org (portindex at macports.org) Date: Fri, 8 Jan 2010 11:54:43 -0800 (PST) Subject: [62465] trunk/dports Message-ID: <20100108195446.6BE173B10DF7@beta.macosforge.org> Revision: 62465 http://trac.macports.org/changeset/62465 Author: portindex at macports.org Date: 2010-01-08 11:54:41 -0800 (Fri, 08 Jan 2010) Log Message: ----------- Total number of ports parsed: 6478 Ports successfully parsed: 6478 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex trunk/dports/PortIndex.quick Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-08 19:37:27 UTC (rev 62464) +++ trunk/dports/PortIndex 2010-01-08 19:54:41 UTC (rev 62465) @@ -3440,8 +3440,8 @@ depends_build port:pkgconfig portdir graphics/libsvg-cairo description {SVG Rendering library using cairo} homepage http://cairographics.org/ epoch 0 platforms darwin name libsvg-cairo depends_lib {path:lib/pkgconfig/cairo.pc:cairo port:jpeg port:libsvg} maintainers nomaintainer long_description {{SVG Rendering library using cairo}} categories graphics version 0.1.6 revision 1 libungif 416 variants {doc x11 universal} portdir graphics/libungif description {Tools and library routines for working with GIF images} homepage http://sourceforge.net/projects/giflib/ epoch 0 platforms darwin name libungif long_description {GIF loading and saving shared library (Saving uses an uncompressed gif algorithm that does not use LZW compression.)} maintainers ryandesign categories graphics version 4.1.4 revision 4 -libwmf 651 -variants {expat x11 xml2 universal} depends_build {port:autoconf port:automake port:libtool} portdir graphics/libwmf description {Library for converting WMF (Window Metafile Format) files} homepage http://wvware.sourceforge.net/libwmf.html epoch 0 platforms darwin depends_lib {port:zlib port:libpng port:jpeg port:freetype} name libwmf long_description {libwmf is a library for reading vector images in Microsoft's native Windows Metafile Format (WMF) and for either (a) displaying them in, e.g., an X window, or (b) converting them to more standard/open file formats.} maintainers nomaintainer categories {graphics fonts} version 0.2.8.4 revision 3 +libwmf 671 +variants {x11 xml2 universal} depends_build {port:pkgconfig port:autoconf port:automake port:libtool} portdir graphics/libwmf description {Library for converting WMF (Window Metafile Format) files} homepage http://wvware.sourceforge.net/libwmf.html epoch 0 platforms darwin depends_lib {port:zlib port:libpng port:jpeg port:freetype port:expat} name libwmf long_description {libwmf is a library for reading vector images in Microsoft's native Windows Metafile Format (WMF) and for either (a) displaying them in, e.g., an X window, or (b) converting them to more standard/open file formats.} maintainers nomaintainer categories {graphics fonts} version 0.2.8.4 revision 3 libwpg 656 variants universal depends_build port:pkgconfig portdir graphics/libwpg description {C++ library for reading and parsing graphics in WPG (Word Perfect Graphics) format.} homepage http://libwpg.sourceforge.net/ epoch 0 platforms darwin depends_lib port:libwpd name libwpg long_description {Libwpg is a C++ library for reading and parsing graphics in WPG (Word Perfect Graphics) format. WPG is the format used among others in Corel software such as WordPerfect(tm) and Presentations(tm). Distributed under the LGPL license, libwpg can be used in free and commercial software.} maintainers {devans openmaintainer} categories graphics version 0.1.3 revision 0 libxmi 326 @@ -4597,7 +4597,7 @@ scala 518 portdir lang/scala description {The Scala Programming Language} homepage http://www.scala-lang.org/ epoch 0 platforms darwin name scala maintainers blair long_description {Scala is a modern multi-paradigm programming language designed to express common programming patterns in a concise, elegant, and type-safe way. It smoothly integrates features of object-oriented and functional languages. It runs inside a Java Virtual Machine and is fully interoperable with Java.} version 2.7.7 categories {lang java} revision 0 scala-devel 557 -portdir lang/scala-devel description {The Scala Programming Language} homepage http://www.scala-lang.org/ epoch 0 platforms darwin name scala-devel maintainers {openmaintainer brett} long_description {Scala is a modern multi-paradigm programming language designed to express common programming patterns in a concise, elegant, and type-safe way. It smoothly integrates features of object-oriented and functional languages. It runs inside a Java Virtual Machine and is fully interoperable with Java.} categories {lang java} version 2.8.0.Beta1-RC6 revision 0 +portdir lang/scala-devel description {The Scala Programming Language} homepage http://www.scala-lang.org/ epoch 0 platforms darwin name scala-devel maintainers {openmaintainer brett} long_description {Scala is a modern multi-paradigm programming language designed to express common programming patterns in a concise, elegant, and type-safe way. It smoothly integrates features of object-oriented and functional languages. It runs inside a Java Virtual Machine and is fully interoperable with Java.} categories {lang java} version 2.8.0.Beta1-RC7 revision 0 scheme48 468 variants universal portdir lang/scheme48 description {Scheme byte-code interpreter} homepage http://s48.org/ epoch 0 platforms darwin name scheme48 long_description {Scheme 48 is an implementation of Scheme written by Richard Kelsey and Jonathan Rees. It is based on a byte-code interpreter and is designed to be used as a testbed for experiments in implementation techniques and as an expository tool.} maintainers mww categories {lang scheme} version 1.8 revision 0 scsh 599 Modified: trunk/dports/PortIndex.quick =================================================================== (Binary files differ) -------------- next part -------------- An HTML attachment was scrubbed... URL: From stromnov at macports.org Fri Jan 8 12:07:14 2010 From: stromnov at macports.org (stromnov at macports.org) Date: Fri, 8 Jan 2010 12:07:14 -0800 (PST) Subject: [62466] trunk/dports/python/py26-networkx/Portfile Message-ID: <20100108200714.F3DBF3B11009@beta.macosforge.org> Revision: 62466 http://trac.macports.org/changeset/62466 Author: stromnov at macports.org Date: 2010-01-08 12:07:12 -0800 (Fri, 08 Jan 2010) Log Message: ----------- py26-networkx: add livecheck Modified Paths: -------------- trunk/dports/python/py26-networkx/Portfile Modified: trunk/dports/python/py26-networkx/Portfile =================================================================== --- trunk/dports/python/py26-networkx/Portfile 2010-01-08 19:54:41 UTC (rev 62465) +++ trunk/dports/python/py26-networkx/Portfile 2010-01-08 20:07:12 UTC (rev 62466) @@ -24,3 +24,7 @@ rmd160 5ba7cd1b4ddb1b9ee0453f56a1f0322f777872fa depends_lib-append port:py26-setuptools + +livecheck.type regex +livecheck.url ${master_sites} +livecheck.regex "networkx-(\\d+(?:\\.\\d+)*)${extract.suffix}" -------------- next part -------------- An HTML attachment was scrubbed... URL: From snc at macports.org Fri Jan 8 13:28:53 2010 From: snc at macports.org (snc at macports.org) Date: Fri, 8 Jan 2010 13:28:53 -0800 (PST) Subject: [62467] trunk/dports/python/py-sqlite/Portfile Message-ID: <20100108212853.DD1F73B1266A@beta.macosforge.org> Revision: 62467 http://trac.macports.org/changeset/62467 Author: snc at macports.org Date: 2010-01-08 13:28:52 -0800 (Fri, 08 Jan 2010) Log Message: ----------- whitespace Modified Paths: -------------- trunk/dports/python/py-sqlite/Portfile Modified: trunk/dports/python/py-sqlite/Portfile =================================================================== --- trunk/dports/python/py-sqlite/Portfile 2010-01-08 20:07:12 UTC (rev 62466) +++ trunk/dports/python/py-sqlite/Portfile 2010-01-08 21:28:52 UTC (rev 62467) @@ -1,28 +1,28 @@ # $Id$ PortSystem 1.0 -PortGroup python24 1.0 +PortGroup python24 1.0 -name py-sqlite -version 2.4.1 -categories python databases -maintainers nomaintainer -platforms darwin freebsd -description python database extension for sqlite -long_description PySQLite is a Python extension for SQLite that \ - conforms to the Python Database API Specification 2.0. +name py-sqlite +version 2.4.1 +categories python databases +maintainers nomaintainer +platforms darwin freebsd +description python database extension for sqlite +long_description PySQLite is a Python extension for SQLite that \ + conforms to the Python Database API Specification 2.0. -homepage http://www.pysqlite.org/ -master_sites http://www.mirrorservice.org/sites/master.us.finkmirrors.net/distfiles/sha1/03d2c52c65e017e657d852c0583aa39bb6563a73/ -distname pysqlite-${version} -checksums md5 7d9a4875a7107b94eb4aa2dc861a2537 \ - sha1 03d2c52c65e017e657d852c0583aa39bb6563a73 \ - rmd160 693f4d789388ef0456449d01b0d342aaf1990832 +homepage http://www.pysqlite.org/ +master_sites http://www.mirrorservice.org/sites/master.us.finkmirrors.net/distfiles/sha1/03d2c52c65e017e657d852c0583aa39bb6563a73/ +distname pysqlite-${version} +checksums md5 7d9a4875a7107b94eb4aa2dc861a2537 \ + sha1 03d2c52c65e017e657d852c0583aa39bb6563a73 \ + rmd160 693f4d789388ef0456449d01b0d342aaf1990832 -depends_lib-append port:sqlite3 +depends_lib-append port:sqlite3 -patchfiles patch-setup.py +patchfiles patch-setup.py -test.dir "${worksrcpath}/build/lib.macosx-10.3-${os.arch}-2.4" -test.run yes -test.cmd ${python.bin} -c "'from pysqlite2.test import test; test()'" +test.dir "${worksrcpath}/build/lib.macosx-10.3-${os.arch}-2.4" +test.run yes +test.cmd ${python.bin} -c "'from pysqlite2.test import test; test()'" -------------- next part -------------- An HTML attachment was scrubbed... URL: From snc at macports.org Fri Jan 8 13:59:21 2010 From: snc at macports.org (snc at macports.org) Date: Fri, 8 Jan 2010 13:59:21 -0800 (PST) Subject: [62468] trunk/dports/python Message-ID: <20100108215922.C79DB3B131D9@beta.macosforge.org> Revision: 62468 http://trac.macports.org/changeset/62468 Author: snc at macports.org Date: 2010-01-08 13:59:19 -0800 (Fri, 08 Jan 2010) Log Message: ----------- create py26-sqlite, openmaintainer Modified Paths: -------------- trunk/dports/python/py26-sqlite/Portfile Added Paths: ----------- trunk/dports/python/py26-sqlite/ Modified: trunk/dports/python/py26-sqlite/Portfile =================================================================== --- trunk/dports/python/py-sqlite/Portfile 2010-01-08 21:28:52 UTC (rev 62467) +++ trunk/dports/python/py26-sqlite/Portfile 2010-01-08 21:59:19 UTC (rev 62468) @@ -1,28 +1,35 @@ +# -*- coding: utf-8; mode: tcl; tab-width: 4; truncate-lines: t; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:et:sw=4:ts=4:sts=4 # $Id$ PortSystem 1.0 -PortGroup python24 1.0 +PortGroup python26 1.0 name py-sqlite -version 2.4.1 +version 2.5.6 categories python databases -maintainers nomaintainer +maintainers snc openmaintainer platforms darwin freebsd description python database extension for sqlite long_description PySQLite is a Python extension for SQLite that \ conforms to the Python Database API Specification 2.0. -homepage http://www.pysqlite.org/ -master_sites http://www.mirrorservice.org/sites/master.us.finkmirrors.net/distfiles/sha1/03d2c52c65e017e657d852c0583aa39bb6563a73/ +homepage http://pysqlite.googlecode.com/ +master_sites googlecode:pysqlite distname pysqlite-${version} -checksums md5 7d9a4875a7107b94eb4aa2dc861a2537 \ - sha1 03d2c52c65e017e657d852c0583aa39bb6563a73 \ - rmd160 693f4d789388ef0456449d01b0d342aaf1990832 +checksums md5 1b2f338c8d6db971e34edb799a92e2ee \ + sha1 79b5c4067c0ca237240eb32e6fde7ed84636d13d \ + rmd160 8174ecfbee2f9526f7a1100b1afa78f3786916dd depends_lib-append port:sqlite3 patchfiles patch-setup.py -test.dir "${worksrcpath}/build/lib.macosx-10.3-${os.arch}-2.4" +if { ${os.major} == 10} { + set os.my_version 10.6 +} +if { ${os.major} == 9} { + set os.my_version 10.5 +} +test.dir "${worksrcpath}/build/lib.macosx-${os.my_version}-${os.arch}-${python.branch}" test.run yes test.cmd ${python.bin} -c "'from pysqlite2.test import test; test()'" -------------- next part -------------- An HTML attachment was scrubbed... URL: From snc at macports.org Fri Jan 8 14:01:12 2010 From: snc at macports.org (snc at macports.org) Date: Fri, 8 Jan 2010 14:01:12 -0800 (PST) Subject: [62469] trunk/dports/python/py26-sqlite/Portfile Message-ID: <20100108220112.53CC93B13445@beta.macosforge.org> Revision: 62469 http://trac.macports.org/changeset/62469 Author: snc at macports.org Date: 2010-01-08 14:01:10 -0800 (Fri, 08 Jan 2010) Log Message: ----------- fix name Modified Paths: -------------- trunk/dports/python/py26-sqlite/Portfile Modified: trunk/dports/python/py26-sqlite/Portfile =================================================================== --- trunk/dports/python/py26-sqlite/Portfile 2010-01-08 21:59:19 UTC (rev 62468) +++ trunk/dports/python/py26-sqlite/Portfile 2010-01-08 22:01:10 UTC (rev 62469) @@ -4,7 +4,7 @@ PortSystem 1.0 PortGroup python26 1.0 -name py-sqlite +name py26-sqlite version 2.5.6 categories python databases maintainers snc openmaintainer -------------- next part -------------- An HTML attachment was scrubbed... URL: From snc at macports.org Fri Jan 8 14:32:56 2010 From: snc at macports.org (snc at macports.org) Date: Fri, 8 Jan 2010 14:32:56 -0800 (PST) Subject: [62470] trunk/dports/aqua/mumble/Portfile Message-ID: <20100108223256.427353B14E87@beta.macosforge.org> Revision: 62470 http://trac.macports.org/changeset/62470 Author: snc at macports.org Date: 2010-01-08 14:32:54 -0800 (Fri, 08 Jan 2010) Log Message: ----------- updated version Modified Paths: -------------- trunk/dports/aqua/mumble/Portfile Modified: trunk/dports/aqua/mumble/Portfile =================================================================== --- trunk/dports/aqua/mumble/Portfile 2010-01-08 22:01:10 UTC (rev 62469) +++ trunk/dports/aqua/mumble/Portfile 2010-01-08 22:32:54 UTC (rev 62470) @@ -4,7 +4,7 @@ PortSystem 1.0 name mumble -version 1.2.0 +version 1.2.1 categories aqua audio license GPL maintainers snc openmaintainer @@ -16,9 +16,9 @@ platforms macosx master_sites sourceforge:mumble -checksums md5 25872328c8bbc8282ad7ebdeacc0e8b6 \ - sha1 7f78d4dbc5d2ebe5216225250b647ca219fe780a \ - rmd160 8bab1d82b10949f68f288e684d21024dbad1d5b3 +checksums md5 94b59aef3233b91705fa8cfcdd04d3e1 \ + sha1 af4fdc176727693c351d5ecb80e5c1077d7ae36f \ + rmd160 c9828ece38fbd65fc03cce82591600d8744f152a distname mumble-${version} livecheck.type regex -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Fri Jan 8 14:54:27 2010 From: portindex at macports.org (portindex at macports.org) Date: Fri, 8 Jan 2010 14:54:27 -0800 (PST) Subject: [62471] trunk/dports Message-ID: <20100108225429.6E63F3B15C50@beta.macosforge.org> Revision: 62471 http://trac.macports.org/changeset/62471 Author: portindex at macports.org Date: 2010-01-08 14:54:26 -0800 (Fri, 08 Jan 2010) Log Message: ----------- Total number of ports parsed: 6479 Ports successfully parsed: 6479 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex trunk/dports/PortIndex.quick Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-08 22:32:54 UTC (rev 62470) +++ trunk/dports/PortIndex 2010-01-08 22:54:26 UTC (rev 62471) @@ -133,7 +133,7 @@ mkconsole 1027 variants universal portdir aqua/mkconsole description {application that displays logfiles on your desktop} homepage http://www.mulle-kybernetik.com/software/MkConsole/ epoch 0 platforms macosx name mkconsole long_description {This is a little application that displays logfiles on your desktop. Really useful if you have to monitor servers or you just want to keep an eye on what's going on on your machine. In its standard configuration it displays entries from any number of logfiles interleaved in a single window. Have a look at some screenshots. MkConsole is smart enough to close and reopen files every now and then to deal with rotating files and it transparently works around stale NFS handles which often exist after your Mac wakes up from sleep and tries to read from a logfile mounted via NFS. If you don't mind hacking the user defaults (rather than using the preferences panel) you can also configure multiple windows with multiple logifiles each.} maintainers nomaintainer version 1.10 categories aqua revision 0 mumble 526 -variants {dbus universal} depends_build port:boost portdir aqua/mumble description {low-latency voice chat for gaming} homepage http://mumble.sourceforge.net/ epoch 0 platforms macosx name mumble depends_lib {path:bin/qmake-mac:qt4-mac port:openssl port:portaudio port:ice-cpp port:libsndfile port:protobuf-cpp} long_description {Mumble is an open source, low-latency, high quality voice chat software primarily intended for use while gaming.} maintainers {snc openmaintainer} categories {aqua audio} version 1.2.0 revision 0 +variants {dbus universal} depends_build port:boost portdir aqua/mumble description {low-latency voice chat for gaming} homepage http://mumble.sourceforge.net/ epoch 0 platforms macosx name mumble depends_lib {path:bin/qmake-mac:qt4-mac port:openssl port:portaudio port:ice-cpp port:libsndfile port:protobuf-cpp} long_description {Mumble is an open source, low-latency, high quality voice chat software primarily intended for use while gaming.} maintainers {snc openmaintainer} categories {aqua audio} version 1.2.1 revision 0 openvanilla 807 portdir aqua/openvanilla description {package of popular Chinese input methods} homepage http://openvanilla.org epoch 0 platforms darwin name openvanilla maintainers openvanilla.org:ovadmin long_description {OpenVanilla is a lightweight text entry (input method editor, or IME for short) and output processing platform. It is very popular among Chinese-speaking OS X users as it provides many IMEs not found or not satisfactorily implemented in Apple's built-in modules. This installs the base package, including the Framework, the Loader and a set of popular modules for Traditional and Simplified Chinese. Note this will install bundles into your Library directory, as such is required for any text service (input method) components. RESTART REQUIRED.} version 0.7.2 categories {aqua textproc} revision 0 osx2x 633 @@ -9692,6 +9692,8 @@ portdir python/py26-sqlalchemy description {Python SQL ORM} homepage http://www.sqlalchemy.org/ epoch 0 platforms darwin depends_lib port:py26-setuptools name py26-sqlalchemy maintainers {akitada openmaintainer} long_description {SQLAlchemy is the Python SQL toolkit and Object Relational Mapper that gives application developers the full power and flexibility of SQL.} version 0.5.6 categories {python databases} revision 0 py26-sqlalchemy-migrate 667 portdir python/py26-sqlalchemy-migrate description {Database schema migration for SQLAlchemy} homepage http://sqlalchemy-migrate.googlecode.com/ epoch 0 platforms darwin depends_lib port:py26-setuptools name py26-sqlalchemy-migrate maintainers {akitada openmaintainer} long_description {Inspired by Ruby on Rails' migrations, SQLAlchemy Migrate provides a way to deal with database schema changes in SQLAlchemy projects. SQLAlchemy Migrate extends SQLAlchemy to have database changeset handling. It provides a database change repository mechanism which can be used from the command line as well as from inside python code.} version 0.4.5 categories python revision 0 +py26-sqlite 421 +portdir python/py26-sqlite description {python database extension for sqlite} homepage http://pysqlite.googlecode.com/ epoch 0 platforms {darwin freebsd} depends_lib {port:python26 port:sqlite3} name py26-sqlite maintainers {snc openmaintainer} long_description {PySQLite is a Python extension for SQLite that conforms to the Python Database API Specification 2.0.} version 2.5.6 categories {python databases} revision 0 py26-storm 696 portdir python/py26-storm description {Storm is an object-relational mapper (ORM) for Python developed at Canonical} homepage https://storm.canonical.com/ epoch 0 platforms darwin depends_lib port:python26 name py26-storm maintainers {adfernandes openmaintainer} long_description {Storm is a Python object-relational mapper between a SQL database and Python objects. It has been developed at Canonical Ltd. and is used in the application Launchpad. Storm supports a number of common database backends: included in the actual distribution are MySQL, PostgreSQL and SQLite. The project is released under the GNU Lesser General Public License.} version 0.15 categories {python databases} revision 0 py26-subvertpy 450 Modified: trunk/dports/PortIndex.quick =================================================================== (Binary files differ) -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Fri Jan 8 15:34:39 2010 From: ryandesign at macports.org (ryandesign at macports.org) Date: Fri, 8 Jan 2010 15:34:39 -0800 Subject: propchange - r62449 svn:log Message-ID: <20100108233439.4B0ED85A28C2@mail-out4.apple.com> Author: ryandesign at macports.org (original author: breskeby at macports.org) Revision: 62449 Property Name: svn:log --- /admin/var/tmp/revprops/pre-62449-ryandesign at macports.org 2010-01-08 15:34:35.000000000 -0800 +++ /admin/var/tmp/revprops/post-62449-ryandesign at macports.org 2010-01-08 15:34:38.000000000 -0800 @@ -1 +1 @@ -##23185 initial commit of beta release 0.3-BETA-1 +#23185 initial commit of beta release 0.3-BETA-1 From ryandesign at macports.org Fri Jan 8 15:34:50 2010 From: ryandesign at macports.org (ryandesign at macports.org) Date: Fri, 8 Jan 2010 15:34:50 -0800 Subject: propchange - r62450 svn:log Message-ID: <20100108233450.C7B197F75103@mail-out3.apple.com> Author: ryandesign at macports.org (original author: breskeby at macports.org) Revision: 62450 Property Name: svn:log --- /admin/var/tmp/revprops/pre-62450-ryandesign at macports.org 2010-01-08 15:34:48.000000000 -0800 +++ /admin/var/tmp/revprops/post-62450-ryandesign at macports.org 2010-01-08 15:34:50.000000000 -0800 @@ -1 +1 @@ -##23185 add conflict parameter (conflicts with griffon-devel) +#23185 add conflict parameter (conflicts with griffon-devel) From vinc17 at macports.org Fri Jan 8 16:26:05 2010 From: vinc17 at macports.org (vinc17 at macports.org) Date: Fri, 8 Jan 2010 16:26:05 -0800 (PST) Subject: [62472] trunk/dports/tex/latexmk/Portfile Message-ID: <20100109002605.9B7BC3B18021@beta.macosforge.org> Revision: 62472 http://trac.macports.org/changeset/62472 Author: vinc17 at macports.org Date: 2010-01-08 16:26:03 -0800 (Fri, 08 Jan 2010) Log Message: ----------- latexmk: bump to version 4.11 Modified Paths: -------------- trunk/dports/tex/latexmk/Portfile Modified: trunk/dports/tex/latexmk/Portfile =================================================================== --- trunk/dports/tex/latexmk/Portfile 2010-01-08 22:54:26 UTC (rev 62471) +++ trunk/dports/tex/latexmk/Portfile 2010-01-09 00:26:03 UTC (rev 62472) @@ -3,7 +3,7 @@ PortSystem 1.0 name latexmk -version 4.10 +version 4.11 categories tex print platforms darwin maintainers vinc17 @@ -24,9 +24,9 @@ dist_subdir ${name}/${version} use_zip yes -checksums md5 4d4c1edbccba1632479c34b8b10e1c4b \ - sha1 f13740ddc2ba5162f48b503c407243dcbba5358b \ - rmd160 a744df96f2d20abf32c43dd1e764d05f0d99e444 +checksums md5 0d673b0be58c9c9065c0d36d1d541f42 \ + sha1 115c35410f24aa1db425715d70b59541de906aad \ + rmd160 69efc0828369a58cb25597b1774f18bcac42408d depends_lib bin:latex:texlive -------------- next part -------------- An HTML attachment was scrubbed... URL: From vinc17 at macports.org Fri Jan 8 16:38:10 2010 From: vinc17 at macports.org (vinc17 at macports.org) Date: Fri, 8 Jan 2010 16:38:10 -0800 (PST) Subject: [62473] trunk/dports/tex/latexmk/Portfile Message-ID: <20100109003811.7AE8A3B18490@beta.macosforge.org> Revision: 62473 http://trac.macports.org/changeset/62473 Author: vinc17 at macports.org Date: 2010-01-08 16:38:07 -0800 (Fri, 08 Jan 2010) Log Message: ----------- Updated livecheck to get the version from the Perl script instead of the README file, which is sometimes out-of-date. Modified Paths: -------------- trunk/dports/tex/latexmk/Portfile Modified: trunk/dports/tex/latexmk/Portfile =================================================================== --- trunk/dports/tex/latexmk/Portfile 2010-01-09 00:26:03 UTC (rev 62472) +++ trunk/dports/tex/latexmk/Portfile 2010-01-09 00:38:07 UTC (rev 62473) @@ -47,4 +47,5 @@ } livecheck.type regex -livecheck.regex Version (\[0-9.\]+), +livecheck.url http://mirror.ctan.org/support/latexmk/latexmk.pl +livecheck.regex "version_num = '(\[0-9.\]+)'" -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Fri Jan 8 16:54:27 2010 From: portindex at macports.org (portindex at macports.org) Date: Fri, 8 Jan 2010 16:54:27 -0800 (PST) Subject: [62474] trunk/dports/PortIndex Message-ID: <20100109005428.30B443B197DF@beta.macosforge.org> Revision: 62474 http://trac.macports.org/changeset/62474 Author: portindex at macports.org Date: 2010-01-08 16:54:25 -0800 (Fri, 08 Jan 2010) Log Message: ----------- Total number of ports parsed: 6479 Ports successfully parsed: 6479 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-09 00:38:07 UTC (rev 62473) +++ trunk/dports/PortIndex 2010-01-09 00:54:25 UTC (rev 62474) @@ -11257,7 +11257,7 @@ latexdiff 719 variants universal portdir tex/latexdiff description {determine and mark up significant differences between latex files} homepage http://www.ctan.org/tex-archive/support/latexdiff/ depends_run path:bin/perl:perl5 epoch 0 platforms darwin name latexdiff long_description {latexdiff is a Perl script, which compares two latex files and marks up significant differences between them (i.e. a diff for latex files). Various options are available for visual markup using standard latex packages such as color.sty. Changes not directly affecting visible text, for example in formatting commands, are still marked in the latex source.} maintainers aschenke depends_extract bin:unzip:unzip categories tex version 0.5 revision 0 latexmk 776 -portdir tex/latexmk description {Automates the process of generating a LaTeX document} homepage http://www.ctan.org/tex-archive/support/latexmk/ epoch 0 platforms darwin depends_lib bin:latex:texlive name latexmk maintainers vinc17 long_description {Latexmk completely automates the process of generating a LaTeX document. Essentially, it is a highly specialized cousin of the general make utility. Given the source files for a document, latexmk issues the appropriate sequence of commands to generate a .dvi, .ps, .pdf or hardcopy version of the document. It can also be set to run continuously with a {previewer;} the latex program, etc, are rerun whenever one of the source files is modified.} depends_extract bin:unzip:unzip categories {tex print} version 4.10 revision 0 +portdir tex/latexmk description {Automates the process of generating a LaTeX document} homepage http://www.ctan.org/tex-archive/support/latexmk/ epoch 0 platforms darwin depends_lib bin:latex:texlive name latexmk maintainers vinc17 long_description {Latexmk completely automates the process of generating a LaTeX document. Essentially, it is a highly specialized cousin of the general make utility. Given the source files for a document, latexmk issues the appropriate sequence of commands to generate a .dvi, .ps, .pdf or hardcopy version of the document. It can also be set to run continuously with a {previewer;} the latex program, etc, are rerun whenever one of the source files is modified.} depends_extract bin:unzip:unzip categories {tex print} version 4.11 revision 0 luatex 491 portdir tex/luatex description LuaTeX homepage http://luatex.org epoch 0 platforms darwin name luatex maintainers gundla.ch:patrick long_description {LuaTeX is the successor of PDFTeX, Aleph and Omega. It is a typesetting system based on TeX but full unicode aware and programmable in Lua. This package provides luatex and texlua binaries only. It is not a full featured TeX installation. That means, you have to take care of format generation etc.} version 0.43.0 categories tex revision 1 makejvf 358 -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremyhu at macports.org Fri Jan 8 18:58:22 2010 From: jeremyhu at macports.org (jeremyhu at macports.org) Date: Fri, 8 Jan 2010 18:58:22 -0800 (PST) Subject: [62475] trunk/dports/www/firefox-x11-devel/Portfile Message-ID: <20100109025824.1CB073B1BE81@beta.macosforge.org> Revision: 62475 http://trac.macports.org/changeset/62475 Author: jeremyhu at macports.org Date: 2010-01-08 18:58:20 -0800 (Fri, 08 Jan 2010) Log Message: ----------- firefox-x11-devel: Bump to 3.6rc1 Modified Paths: -------------- trunk/dports/www/firefox-x11-devel/Portfile Modified: trunk/dports/www/firefox-x11-devel/Portfile =================================================================== --- trunk/dports/www/firefox-x11-devel/Portfile 2010-01-09 00:54:25 UTC (rev 62474) +++ trunk/dports/www/firefox-x11-devel/Portfile 2010-01-09 02:58:20 UTC (rev 62475) @@ -6,7 +6,7 @@ name firefox-x11-devel set component firefox categories www x11 -version 3.6b5 +version 3.6rc1 revision 0 platforms darwin maintainers jeremyhu openmaintainer @@ -29,9 +29,9 @@ distname ${component}-${version}.source use_bzip2 yes -checksums md5 381a897e16579a47250dee9342353f37 \ - sha1 96ebe158ec8c25b2d6fbef35284d86bedbf7d99a \ - rmd160 0dfdbe4f7bfb8d26e61311e4ce71c91a0cf03e57 +checksums md5 f4b885c33ccacba27df11e745cf350d3 \ + sha1 907be18b6d7d9dbc286ed86eaf5d337e9dd7f871 \ + rmd160 54ac2c09cda96e10351a586f08f8110d07a9444c worksrcdir mozilla-1.9.2 -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Fri Jan 8 19:40:35 2010 From: ryandesign at macports.org (ryandesign at macports.org) Date: Fri, 8 Jan 2010 19:40:35 -0800 (PST) Subject: [62476] trunk/dports/www Message-ID: <20100109034035.D34CE3B1C887@beta.macosforge.org> Revision: 62476 http://trac.macports.org/changeset/62476 Author: ryandesign at macports.org Date: 2010-01-08 19:40:31 -0800 (Fri, 08 Jan 2010) Log Message: ----------- websvn: new port, version 2.3.0; see #23160 Added Paths: ----------- trunk/dports/www/websvn/ trunk/dports/www/websvn/Portfile trunk/dports/www/websvn/files/ trunk/dports/www/websvn/files/patch-distconfig.php.diff Added: trunk/dports/www/websvn/Portfile =================================================================== --- trunk/dports/www/websvn/Portfile (rev 0) +++ trunk/dports/www/websvn/Portfile 2010-01-09 03:40:31 UTC (rev 62476) @@ -0,0 +1,80 @@ +# $Id$ + +PortSystem 1.0 + +name websvn +version 2.3.0 +set file_id 47175 +categories www +platforms darwin +maintainers ryandesign +license GPLv2 +homepage http://www.websvn.info/ +master_sites http://websvn.tigris.org/files/documents/1380/${file_id} + +description web-based Subversion repository viewer in PHP + +long_description WebSVN offers a view onto your Subversion \ + repositories designed to reflect the Subversion \ + methodology. You can view the log of any file or \ + directory and see a list of all the files changed, \ + added or deleted in any given revision. You can \ + also view the differences between two revisions of \ + a file. + +checksums md5 189176efa18a245751b3b4404e3d8ca6 \ + sha1 0e768ae57aff039f39edf66b713ea0b9c3835be2 \ + rmd160 4f9089e9d84cf2f086f7e5a16f56fa4e52fda697 + +depends_run port:php5-web \ + port:php5-mbstring \ + port:subversion + +patchfiles patch-distconfig.php.diff +post-patch { + reinplace "s|@PREFIX@|${prefix}|g" ${worksrcpath}/include/distconfig.php +} + +use_configure no + +build {} + +destroot.keepdirs ${destroot}${prefix}/www/${name}/cache +destroot { + copy ${worksrcpath} ${destroot}${prefix}/www/${name} + + # Cache + delete ${destroot}${prefix}/www/${name}/cache/tmp + file attributes ${destroot}${prefix}/www/${name}/cache -owner www -group www + xinstall -d ${destroot}${prefix}/var/cache + ln -s ../../www/${name}/cache ${destroot}${prefix}/var/cache/${name} + + # Config + xinstall -d ${destroot}${prefix}/etc/${name} + ln -s ../../www/${name}/include/config.php ${destroot}${prefix}/etc/${name} + ln -s ../../www/${name}/include/distconfig.php ${destroot}${prefix}/etc/${name} + + # Documentation + xinstall -d ${destroot}${prefix}/share/doc + move ${destroot}${prefix}/www/${name}/doc ${destroot}${prefix}/share/doc/${name} + move ${destroot}${prefix}/www/${name}/changes.txt ${destroot}${prefix}/www/${name}/license.txt ${destroot}${prefix}/share/doc/${name} + + # Symlink into docroot + xinstall -d ${destroot}${prefix}/www/htdocs + ln -s ../websvn ${destroot}${prefix}/www/htdocs +} + +post-activate { + if {![file exists ${prefix}/www/${name}/include/config.php]} { + ui_msg "To set up WebSVN, copy" + ui_msg "${prefix}/www/${name}/include/distconfig.php to" + ui_msg "${prefix}/www/${name}/include/config.php and then make changes." + } else { + ui_msg "You may need to update your config.php for any changes that have been made" + ui_msg "in this version of WebSVN. Compare ${prefix}/www/${name}/include/config.php" + ui_msg "with ${prefix}/www/${name}/include/distconfig.php." + } +} + +livecheck.type regex +livecheck.regex {WebSVN ([0-9.]+) released} Property changes on: trunk/dports/www/websvn/Portfile ___________________________________________________________________ Added: svn:keywords + Id Added: svn:eol-style + native Added: trunk/dports/www/websvn/files/patch-distconfig.php.diff =================================================================== --- trunk/dports/www/websvn/files/patch-distconfig.php.diff (rev 0) +++ trunk/dports/www/websvn/files/patch-distconfig.php.diff 2010-01-09 03:40:31 UTC (rev 62476) @@ -0,0 +1,10 @@ +--- include/distconfig.php.orig 2009-12-03 23:53:49.000000000 -0600 ++++ include/distconfig.php 2010-01-08 21:35:44.000000000 -0600 +@@ -34,6 +34,7 @@ + // + // $config->setSVNCommandPath('Path/to/svn/command/'); // e.g. c:\\program files\\subversion\\bin + // $config->setDiffPath('Path/to/diff/command/'); ++$config->setSVNCommandPath('@PREFIX@/bin'); + + // For syntax colouring, if option enabled... + // $config->setEnscriptPath('Path/to/enscript/command/'); -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Fri Jan 8 19:47:06 2010 From: ryandesign at macports.org (ryandesign at macports.org) Date: Fri, 8 Jan 2010 19:47:06 -0800 (PST) Subject: [62477] trunk/dports/www/websvn/Portfile Message-ID: <20100109034706.DA4F03B1CDCD@beta.macosforge.org> Revision: 62477 http://trac.macports.org/changeset/62477 Author: ryandesign at macports.org Date: 2010-01-08 19:47:05 -0800 (Fri, 08 Jan 2010) Log Message: ----------- websvn: for consistency, also use ${name} when making htdocs symlink Modified Paths: -------------- trunk/dports/www/websvn/Portfile Modified: trunk/dports/www/websvn/Portfile =================================================================== --- trunk/dports/www/websvn/Portfile 2010-01-09 03:40:31 UTC (rev 62476) +++ trunk/dports/www/websvn/Portfile 2010-01-09 03:47:05 UTC (rev 62477) @@ -61,7 +61,7 @@ # Symlink into docroot xinstall -d ${destroot}${prefix}/www/htdocs - ln -s ../websvn ${destroot}${prefix}/www/htdocs + ln -s ../${name} ${destroot}${prefix}/www/htdocs } post-activate { -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Fri Jan 8 19:54:20 2010 From: portindex at macports.org (portindex at macports.org) Date: Fri, 8 Jan 2010 19:54:20 -0800 (PST) Subject: [62478] trunk/dports Message-ID: <20100109035421.744E63B1D0C5@beta.macosforge.org> Revision: 62478 http://trac.macports.org/changeset/62478 Author: portindex at macports.org Date: 2010-01-08 19:54:19 -0800 (Fri, 08 Jan 2010) Log Message: ----------- Total number of ports parsed: 6480 Ports successfully parsed: 6480 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex trunk/dports/PortIndex.quick Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-09 03:47:05 UTC (rev 62477) +++ trunk/dports/PortIndex 2010-01-09 03:54:19 UTC (rev 62478) @@ -11874,8 +11874,8 @@ variants universal depends_build {port:autoconf port:automake port:libtool} portdir www/fcgi description {The FastCGI development kit in C} homepage http://www.fastcgi.com/ epoch 0 platforms darwin name fcgi long_description {FastCGI is a language independent, scalable, open extension to CGI that provides high performance without the limitations of server specific APIs. This is the C development kit.} maintainers nomaintainer categories www version 2.4.0 revision 3 firefox-x11 553 variants {debug gnome official_branding internal_dependencies} depends_build {port:findutils port:pkgconfig port:autoconf213} portdir www/firefox-x11 description {Mozilla.org's popular stand-alone web browser, Beta and Release Candidates} homepage http://www.mozilla.com/firefox/ epoch 0 platforms darwin depends_lib port:xulrunner name firefox-x11 long_description {Firefox empowers you to browse faster, more safely and more efficiently than with any other browser.} maintainers {jeremyhu openmaintainer} version 3.5.6 categories {www x11} revision 0 -firefox-x11-devel 571 -variants {debug gnome official_branding internal_dependencies} depends_build {port:findutils port:pkgconfig port:autoconf213} portdir www/firefox-x11-devel description {Mozilla.org's popular stand-alone web browser, Beta and Release Candidates} homepage http://www.mozilla.com/firefox/ epoch 0 platforms darwin depends_lib port:xulrunner-devel name firefox-x11-devel long_description {Firefox empowers you to browse faster, more safely and more efficiently than with any other browser.} maintainers {jeremyhu openmaintainer} version 3.6b5 categories {www x11} revision 0 +firefox-x11-devel 572 +variants {debug gnome official_branding internal_dependencies} depends_build {port:findutils port:pkgconfig port:autoconf213} portdir www/firefox-x11-devel description {Mozilla.org's popular stand-alone web browser, Beta and Release Candidates} homepage http://www.mozilla.com/firefox/ epoch 0 platforms darwin depends_lib port:xulrunner-devel name firefox-x11-devel long_description {Firefox empowers you to browse faster, more safely and more efficiently than with any other browser.} maintainers {jeremyhu openmaintainer} version 3.6rc1 categories {www x11} revision 0 flood 483 variants universal depends_build {port:autoconf port:automake port:libtool} portdir www/flood description {profile-driven HTTP load tester} homepage http://httpd.apache.org/test/flood/ epoch 0 platforms {darwin freebsd} name flood depends_lib {port:apr port:apr-util port:expat} long_description {Flood is a profile-driven HTTP load tester. It can be used to gather important performance metrics for your website.} maintainers nomaintainer categories www version 20041105 revision 0 furl 379 @@ -12068,6 +12068,8 @@ variants universal portdir www/webpublish description {web file publishing tool} homepage http://www.gnu.org/software/webpublish/ epoch 0 platforms darwin name webpublish long_description {WebPublish can be used to manage all of the details that are associated with publishing a local copy of a website to one or more remote servers using File Transfer Protocol (FTP). Using WebPublish to manage the transfer of a website to one or more servers allows the website developer to concentrate on a website's content.} maintainers nomaintainer categories www version 0.1.1 revision 0 webredirect 370 portdir www/webredirect description {small webserver which redirects all requests} homepage http://www.stacken.kth.se/~kaj/hack/webredirect epoch 0 platforms darwin name webredirect maintainers nomaintainer long_description {webredirect is a small web server serving 301 Moved Permanently or 302 Moved Temporarily to all requests.} version 0.3 categories www revision 0 +websvn 591 +portdir www/websvn description {web-based Subversion repository viewer in PHP} homepage http://www.websvn.info/ epoch 0 depends_run {port:php5-web port:php5-mbstring port:subversion} platforms darwin name websvn maintainers ryandesign long_description {WebSVN offers a view onto your Subversion repositories designed to reflect the Subversion methodology. You can view the log of any file or directory and see a list of all the files changed, added or deleted in any given revision. You can also view the differences between two revisions of a file.} categories www version 2.3.0 revision 0 wikkawiki 647 variants {php5 mysql5 nodeps use_osx_docroot} portdir www/wikkawiki description {WikkaWiki is a flexible, standards-compliant and lightweight wiki engine.} homepage http://www.wikkawiki.org epoch 0 platforms {darwin freebsd} name wikkawiki depends_lib {port:php4 port:mysql4} long_description {WikkaWiki is a flexible, standards-compliant and lightweight wiki engine written in PHP, which uses MySQL to store pages. Forked from WakkaWiki. Designed for speed, extensibility, and security. For installation instructions, visit http://docs.wikkawiki.org/MacportInstall} maintainers wikkawiki.org:brian categories {www php} version 1.1.6.5 revision 0 wml 385 Modified: trunk/dports/PortIndex.quick =================================================================== (Binary files differ) -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Fri Jan 8 20:18:45 2010 From: ryandesign at macports.org (ryandesign at macports.org) Date: Fri, 8 Jan 2010 20:18:45 -0800 (PST) Subject: [62479] trunk/base/ChangeLog Message-ID: <20100109041845.3F7733B1E4CB@beta.macosforge.org> Revision: 62479 http://trac.macports.org/changeset/62479 Author: ryandesign at macports.org Date: 2010-01-08 20:18:43 -0800 (Fri, 08 Jan 2010) Log Message: ----------- ChangeLog: relevant build_arch flags are now in LDFLAGS as well Modified Paths: -------------- trunk/base/ChangeLog Modified: trunk/base/ChangeLog =================================================================== --- trunk/base/ChangeLog 2010-01-09 03:54:19 UTC (rev 62478) +++ trunk/base/ChangeLog 2010-01-09 04:18:43 UTC (rev 62479) @@ -42,6 +42,10 @@ Release 1.8.3 (unreleased): + - Some of the build_arch flags now appear in LDFLAGS as well, fixing + several ports when building for a different architecture (jeremyhu in + r60662, jmr in r60680) + - Fixed 'merge' proc for paths with spaces, and for symlinks on Snow Leopard, and added an error message for when 'merge' is not called correctly (ryandesign in r58776, r58777, r58778) -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Fri Jan 8 20:25:16 2010 From: ryandesign at macports.org (ryandesign at macports.org) Date: Fri, 8 Jan 2010 20:25:16 -0800 (PST) Subject: [62480] branches/release_1_8/base Message-ID: <20100109042517.8C6353B1E5A0@beta.macosforge.org> Revision: 62480 http://trac.macports.org/changeset/62480 Author: ryandesign at macports.org Date: 2010-01-08 20:25:14 -0800 (Fri, 08 Jan 2010) Log Message: ----------- merge r60662, r60680, r62479 from trunk: put relevant build_arch flags in LDFLAGS too Revision Links: -------------- http://trac.macports.org/changeset/60662 http://trac.macports.org/changeset/60680 http://trac.macports.org/changeset/62479 Modified Paths: -------------- branches/release_1_8/base/ChangeLog branches/release_1_8/base/src/port1.0/portconfigure.tcl Property Changed: ---------------- branches/release_1_8/base/ Property changes on: branches/release_1_8/base ___________________________________________________________________ Modified: svn:mergeinfo - /branches/gsoc08-privileges/base:37343-46937 /branches/universal-sanity/base:51872-52323 /branches/variant-descs-14482/base:34469-34855,34900-37508,37511-37512,41040-41463,42575-42626,42640-42659 /trunk/base:55268,55279,55281,55285,55317,55385,55417,55591,55594,55679,55767,55793,55825,56147,56160,56162,56435,56448,56472-56474,56666,56889,57026,57048,57055,57131,57255,57436,57441,57784,57801,57820,57871,57974,57979,57982,58093,58445,58776-58777,58788,59318,59585,59597,59654,60259-60260,60774,60798,61302,61385,61770,62172,62194,62220,62230 /users/perry/base-bugs_and_notes:45682-46060 /users/perry/base-select:44044-44692 + /branches/gsoc08-privileges/base:37343-46937 /branches/universal-sanity/base:51872-52323 /branches/variant-descs-14482/base:34469-34855,34900-37508,37511-37512,41040-41463,42575-42626,42640-42659 /trunk/base:55268,55279,55281,55285,55317,55385,55417,55591,55594,55679,55767,55793,55825,56147,56160,56162,56435,56448,56472-56474,56666,56889,57026,57048,57055,57131,57255,57436,57441,57784,57801,57820,57871,57974,57979,57982,58093,58445,58776-58777,58788,59318,59585,59597,59654,60259-60260,60662,60680,60774,60798,61302,61385,61770,62172,62194,62220,62230,62479 /users/perry/base-bugs_and_notes:45682-46060 /users/perry/base-select:44044-44692 Modified: branches/release_1_8/base/ChangeLog =================================================================== --- branches/release_1_8/base/ChangeLog 2010-01-09 04:18:43 UTC (rev 62479) +++ branches/release_1_8/base/ChangeLog 2010-01-09 04:25:14 UTC (rev 62480) @@ -5,6 +5,10 @@ Release 1.8.3 (unreleased): + - Some of the build_arch flags now appear in LDFLAGS as well, fixing + several ports when building for a different architecture (jeremyhu in + r60662, jmr in r60680) + - Fixed 'merge' proc for paths with spaces, and for symlinks on Snow Leopard, and added an error message for when 'merge' is not called correctly (ryandesign in r58776, r58777, r58778) Modified: branches/release_1_8/base/src/port1.0/portconfigure.tcl =================================================================== --- branches/release_1_8/base/src/port1.0/portconfigure.tcl 2010-01-09 04:18:43 UTC (rev 62479) +++ branches/release_1_8/base/src/port1.0/portconfigure.tcl 2010-01-09 04:25:14 UTC (rev 62480) @@ -153,6 +153,8 @@ options configure.build_arch default configure.build_arch {${build_arch}} +options configure.ld_archflags +default configure.ld_archflags {[portconfigure::configure_get_ld_archflags]} foreach tool {cc cxx objc f77 f90 fc} { options configure.${tool}_archflags default configure.${tool}_archflags "\[portconfigure::configure_get_archflags $tool\]" @@ -231,6 +233,19 @@ return $flags } +# internal function to determine the ld flags to select an arch +# Unfortunately there's no consistent way to do this when the compiler +# doesn't support -arch, because it could be used to link rather than using +# ld directly. So we punt and let portfiles deal with that case. +proc portconfigure::configure_get_ld_archflags {args} { + global configure.build_arch + if {${configure.build_arch} != "" && [arch_flag_supported]} { + set flags "-arch ${configure.build_arch}" + } else { + return "" + } +} + # internal function to determine the "-arch xy" flags for the compiler proc portconfigure::configure_get_universal_archflags {args} { global configure.universal_archs @@ -459,7 +474,7 @@ global configure.env configure.pipe configure.libs configure.classpath configure.universal_args global configure.perl configure.python configure.ruby configure.install configure.awk configure.bison configure.pkg_config configure.pkg_config_path global configure.ccache configure.distcc configure.cpp configure.javac configure.march configure.mtune - foreach tool {cc cxx objc f77 f90 fc} { + foreach tool {cc cxx objc f77 f90 fc ld} { global configure.${tool} configure.${tool}_archflags } foreach flags {cflags cppflags cxxflags objcflags ldflags fflags f90flags fcflags} { @@ -552,7 +567,7 @@ append_list_to_environment_value configure "LDFLAGS" ${configure.universal_ldflags} eval configure.pre_args-append ${configure.universal_args} } else { - foreach {tool flags} {cc CFLAGS cxx CXXFLAGS objc OBJCFLAGS f77 FFLAGS f90 F90FLAGS fc FCFLAGS} { + foreach {tool flags} {cc CFLAGS cxx CXXFLAGS objc OBJCFLAGS f77 FFLAGS f90 F90FLAGS fc FCFLAGS ld LDFLAGS} { append_list_to_environment_value configure $flags [set configure.${tool}_archflags] if {${configure.march} != {}} { append_list_to_environment_value configure $flags "-march=${configure.march}" -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Fri Jan 8 20:34:00 2010 From: ryandesign at macports.org (ryandesign at macports.org) Date: Fri, 8 Jan 2010 20:34:00 -0800 (PST) Subject: [62481] trunk/dports/python/py25-sqlite3/Portfile Message-ID: <20100109043400.E384E3B1E765@beta.macosforge.org> Revision: 62481 http://trac.macports.org/changeset/62481 Author: ryandesign at macports.org Date: 2010-01-08 20:33:56 -0800 (Fri, 08 Jan 2010) Log Message: ----------- py25-sqlite3: fix typo in description Modified Paths: -------------- trunk/dports/python/py25-sqlite3/Portfile Modified: trunk/dports/python/py25-sqlite3/Portfile =================================================================== --- trunk/dports/python/py25-sqlite3/Portfile 2010-01-09 04:25:14 UTC (rev 62480) +++ trunk/dports/python/py25-sqlite3/Portfile 2010-01-09 04:33:56 UTC (rev 62481) @@ -9,7 +9,7 @@ categories python databases platforms darwin maintainers nomaintainer -description This is a stub. sqlite3 is now build with python25 +description This is a stub. sqlite3 is now built with python25 long_description ${description} homepage http://www.python.org/doc/current/lib/module-sqlite3.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Fri Jan 8 20:36:34 2010 From: ryandesign at macports.org (ryandesign at macports.org) Date: Fri, 8 Jan 2010 20:36:34 -0800 (PST) Subject: [62482] trunk/dports/python Message-ID: <20100109043634.5905F3B1E7D2@beta.macosforge.org> Revision: 62482 http://trac.macports.org/changeset/62482 Author: ryandesign at macports.org Date: 2010-01-08 20:36:32 -0800 (Fri, 08 Jan 2010) Log Message: ----------- fix typo in description Modified Paths: -------------- trunk/dports/python/py25-bsddb/Portfile trunk/dports/python/py25-bz2/Portfile trunk/dports/python/py25-gdbm/Portfile trunk/dports/python/py25-hashlib/Portfile trunk/dports/python/py25-readline/Portfile trunk/dports/python/py25-socket-ssl/Portfile trunk/dports/python/py25-tkinter/Portfile Modified: trunk/dports/python/py25-bsddb/Portfile =================================================================== --- trunk/dports/python/py25-bsddb/Portfile 2010-01-09 04:33:56 UTC (rev 62481) +++ trunk/dports/python/py25-bsddb/Portfile 2010-01-09 04:36:32 UTC (rev 62482) @@ -9,7 +9,7 @@ categories python databases platforms darwin maintainers nomaintainer -description This is a stub. bsddb is now build with python25 +description This is a stub. bsddb is now built with python25 long_description ${description} homepage http://www.python.org/doc/current/lib/module-dbm.html Modified: trunk/dports/python/py25-bz2/Portfile =================================================================== --- trunk/dports/python/py25-bz2/Portfile 2010-01-09 04:33:56 UTC (rev 62481) +++ trunk/dports/python/py25-bz2/Portfile 2010-01-09 04:36:32 UTC (rev 62482) @@ -9,7 +9,7 @@ categories python platforms darwin maintainers nomaintainer -description This is a stub. bz2 is now build with python25 +description This is a stub. bz2 is now built with python25 long_description ${description} homepage http://www.python.org/doc/current/lib/module-bz2.html Modified: trunk/dports/python/py25-gdbm/Portfile =================================================================== --- trunk/dports/python/py25-gdbm/Portfile 2010-01-09 04:33:56 UTC (rev 62481) +++ trunk/dports/python/py25-gdbm/Portfile 2010-01-09 04:36:32 UTC (rev 62482) @@ -9,7 +9,7 @@ categories python databases platforms darwin maintainers nomaintainer -description This is a stub. gdbm is now build with python25 +description This is a stub. gdbm is now built with python25 long_description ${description} homepage http://www.python.org/doc/current/lib/module-gdbm.html Modified: trunk/dports/python/py25-hashlib/Portfile =================================================================== --- trunk/dports/python/py25-hashlib/Portfile 2010-01-09 04:33:56 UTC (rev 62481) +++ trunk/dports/python/py25-hashlib/Portfile 2010-01-09 04:36:32 UTC (rev 62482) @@ -8,7 +8,7 @@ revision 1 platforms darwin maintainers nomaintainer -description This is a stub. hashlib is now build with python25 +description This is a stub. hashlib is now built with python25 long_description ${description} homepage http://www.python.org/doc/current/lib/module-hashlib.html Modified: trunk/dports/python/py25-readline/Portfile =================================================================== --- trunk/dports/python/py25-readline/Portfile 2010-01-09 04:33:56 UTC (rev 62481) +++ trunk/dports/python/py25-readline/Portfile 2010-01-09 04:36:32 UTC (rev 62482) @@ -9,7 +9,7 @@ categories python platforms darwin maintainers nomaintainer -description This is a stub. readline is now build with python25 +description This is a stub. readline is now built with python25 long_description ${description} homepage http://www.python.org/ Modified: trunk/dports/python/py25-socket-ssl/Portfile =================================================================== --- trunk/dports/python/py25-socket-ssl/Portfile 2010-01-09 04:33:56 UTC (rev 62481) +++ trunk/dports/python/py25-socket-ssl/Portfile 2010-01-09 04:36:32 UTC (rev 62482) @@ -9,7 +9,7 @@ categories python platforms darwin maintainers nomaintainer -description This is a stub. socket-ssl is now build with python25 +description This is a stub. socket-ssl is now built with python25 long_description ${description} homepage http://www.python.org/doc/current/lib/ssl-objects.html Modified: trunk/dports/python/py25-tkinter/Portfile =================================================================== --- trunk/dports/python/py25-tkinter/Portfile 2010-01-09 04:33:56 UTC (rev 62481) +++ trunk/dports/python/py25-tkinter/Portfile 2010-01-09 04:36:32 UTC (rev 62482) @@ -9,7 +9,7 @@ categories python graphics platforms darwin maintainers nomaintainer -description This is a stub. tkinter is now build with python25 +description This is a stub. tkinter is now built with python25 long_description ${description} homepage http://www.python.org/doc/current/lib/module-Tkinter.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Fri Jan 8 20:38:09 2010 From: ryandesign at macports.org (ryandesign at macports.org) Date: Fri, 8 Jan 2010 20:38:09 -0800 (PST) Subject: [62483] trunk/dports/x11 Message-ID: <20100109043809.490733B1E8BB@beta.macosforge.org> Revision: 62483 http://trac.macports.org/changeset/62483 Author: ryandesign at macports.org Date: 2010-01-08 20:38:07 -0800 (Fri, 08 Jan 2010) Log Message: ----------- fix typo in long_description Modified Paths: -------------- trunk/dports/x11/gtkglarea/Portfile trunk/dports/x11/gtkglarea2/Portfile Modified: trunk/dports/x11/gtkglarea/Portfile =================================================================== --- trunk/dports/x11/gtkglarea/Portfile 2010-01-09 04:36:32 UTC (rev 62482) +++ trunk/dports/x11/gtkglarea/Portfile 2010-01-09 04:38:07 UTC (rev 62483) @@ -7,7 +7,7 @@ description OpenGL widget to GTK+ homepage http://www.student.oulu.fi/~jlof/gtkglarea/ platforms darwin -long_description Just as GTK+ is build on top of GDK, GtkGLArea is built on top of \ +long_description Just as GTK+ is built on top of GDK, GtkGLArea is built on top of \ gdkgl which is basically wrapper around GLX functions. The widget \ itself is very similar to GtkDrawinigArea widget and adds only three \ extra functions. Lower level gdkgl functions make it easy to render \ Modified: trunk/dports/x11/gtkglarea2/Portfile =================================================================== --- trunk/dports/x11/gtkglarea2/Portfile 2010-01-09 04:36:32 UTC (rev 62482) +++ trunk/dports/x11/gtkglarea2/Portfile 2010-01-09 04:38:07 UTC (rev 62483) @@ -9,7 +9,7 @@ description OpenGL widget to GTK+ homepage ftp://ftp.gnome.org/mirror/gnome.org/sources/gtkglarea/ platforms darwin -long_description Just as GTK+ is build on top of GDK, GtkGLArea is built on top of \ +long_description Just as GTK+ is built on top of GDK, GtkGLArea is built on top of \ gdkgl which is basically wrapper around GLX functions. The widget \ itself is very similar to GtkDrawinigArea widget and adds only three \ extra functions. Lower level gdkgl functions make it easy to render \ -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Fri Jan 8 20:54:36 2010 From: portindex at macports.org (portindex at macports.org) Date: Fri, 8 Jan 2010 20:54:36 -0800 (PST) Subject: [62484] trunk/dports/PortIndex Message-ID: <20100109045437.E96CD3B1ED2A@beta.macosforge.org> Revision: 62484 http://trac.macports.org/changeset/62484 Author: portindex at macports.org Date: 2010-01-08 20:54:35 -0800 (Fri, 08 Jan 2010) Log Message: ----------- Total number of ports parsed: 6480 Ports successfully parsed: 6480 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-09 04:38:07 UTC (rev 62483) +++ trunk/dports/PortIndex 2010-01-09 04:54:35 UTC (rev 62484) @@ -8657,11 +8657,11 @@ py25-boto 380 portdir python/py25-boto description {python interface to Amazon Web Services} homepage http://code.google.com/p/boto/ epoch 0 platforms darwin depends_lib port:python25 name py25-boto maintainers nomaintainer long_description {An integrated interface to current and future infrastructural services offered by Amazon Web Services.} version 1.8d categories {python net} revision 0 py25-bsddb 369 -portdir python/py25-bsddb description {This is a stub. bsddb is now build with python25} homepage http://www.python.org/doc/current/lib/module-dbm.html epoch 0 platforms darwin depends_lib port:python25 name py25-bsddb maintainers nomaintainer long_description {{This is a stub. bsddb is now build with python25}} version 2.5.4 categories {python databases} revision 1 +portdir python/py25-bsddb description {This is a stub. bsddb is now built with python25} homepage http://www.python.org/doc/current/lib/module-dbm.html epoch 0 platforms darwin depends_lib port:python25 name py25-bsddb maintainers nomaintainer long_description {{This is a stub. bsddb is now built with python25}} version 2.5.4 categories {python databases} revision 1 py25-buzhug 631 portdir python/py25-buzhug description {Pure-python database engine} homepage http://buzhug.sourceforge.net/ epoch 0 platforms darwin depends_lib port:python25 name py25-buzhug maintainers nomaintainer long_description {buzhug is a fast, pure-Python database engine, using a syntax that Python programmers should find very intuitive. The data is stored and accessed on disk (it is not an in-memory database). The implementation has been designed to make all operations, and especially selection, as fast as possible with an interpreted language} depends_extract bin:unzip:unzip version 1.5 categories {python databases} revision 0 py25-bz2 349 -portdir python/py25-bz2 description {This is a stub. bz2 is now build with python25} homepage http://www.python.org/doc/current/lib/module-bz2.html epoch 0 platforms darwin depends_lib port:python25 name py25-bz2 maintainers nomaintainer long_description {{This is a stub. bz2 is now build with python25}} version 2.5.4 categories python revision 1 +portdir python/py25-bz2 description {This is a stub. bz2 is now built with python25} homepage http://www.python.org/doc/current/lib/module-bz2.html epoch 0 platforms darwin depends_lib port:python25 name py25-bz2 maintainers nomaintainer long_description {{This is a stub. bz2 is now built with python25}} version 2.5.4 categories python revision 1 py25-cairo 482 variants {darwin_9 universal} depends_build port:pkgconfig portdir python/py25-cairo description {Pycairo is set of Python bindings for the cairo graphics library} homepage http://cairographics.org/pycairo/ epoch 0 platforms darwin depends_lib {port:python25 path:lib/pkgconfig/cairo.pc:cairo port:py25-numpy} name py25-cairo long_description {{Pycairo is set of Python bindings for the cairo graphics library}} maintainers mcalhoun categories {python x11} version 1.8.2 revision 0 py25-celementtree 574 @@ -8777,7 +8777,7 @@ py25-gdata 520 portdir python/py25-gdata description {Google Data API Python Client Library} homepage http://code.google.com/p/gdata-python-client/ epoch 0 platforms darwin depends_lib port:py25-setuptools name py25-gdata maintainers aecollins1 long_description {The Google Data Python Client Library provides a library that makes it easy to access data through the Google Data APIs. Many Google services (such as Google Calendar and Documents) support the Google Data API protocol.} version 2.0.5 categories {python devel} revision 0 py25-gdbm 366 -portdir python/py25-gdbm description {This is a stub. gdbm is now build with python25} homepage http://www.python.org/doc/current/lib/module-gdbm.html epoch 0 platforms darwin depends_lib port:python25 name py25-gdbm maintainers nomaintainer long_description {{This is a stub. gdbm is now build with python25}} version 2.5.4 categories {python databases} revision 1 +portdir python/py25-gdbm description {This is a stub. gdbm is now built with python25} homepage http://www.python.org/doc/current/lib/module-gdbm.html epoch 0 platforms darwin depends_lib port:python25 name py25-gdbm maintainers nomaintainer long_description {{This is a stub. gdbm is now built with python25}} version 2.5.4 categories {python databases} revision 1 py25-genshi 463 portdir python/py25-genshi description {Python toolkit for generation of output for the web} homepage http://genshi.edgewall.org/ epoch 0 platforms darwin depends_lib port:python25 name py25-genshi maintainers stechert long_description {Genshi is a Python library that provides an integrated set of components for parsing, generating, and processing HTML, XML or other textual content for output generation on the web.} version 0.5.1 categories python revision 0 py25-geoip 357 @@ -8805,7 +8805,7 @@ py25-h5py 694 variants universal portdir python/py25-h5py description {Python Module for working with HDF5 files} homepage http://code.google.com/p/h5py/ epoch 0 platforms darwin depends_lib {port:python25 port:py25-numpy port:hdf5-18} name py25-h5py long_description {The h5py package provides a simple, Pythonic interface to HDF5. A straightforward high-level interface allows the manipulation of HDF5 files, groups and datasets using established Python and NumPy metaphors. Additionally, the library offers a low-level interface which exposes the majority of the HDF5 C API in a Pythonic, object-oriented fashion.} maintainers {ieee.org:eborisch openmaintainer} version 1.2.1 categories python revision 0 py25-hashlib 369 -portdir python/py25-hashlib description {This is a stub. hashlib is now build with python25} homepage http://www.python.org/doc/current/lib/module-hashlib.html epoch 0 platforms darwin depends_lib port:python25 name py25-hashlib maintainers nomaintainer long_description {{This is a stub. hashlib is now build with python25}} version 2.5.4 categories python revision 1 +portdir python/py25-hashlib description {This is a stub. hashlib is now built with python25} homepage http://www.python.org/doc/current/lib/module-hashlib.html epoch 0 platforms darwin depends_lib port:python25 name py25-hashlib maintainers nomaintainer long_description {{This is a stub. hashlib is now built with python25}} version 2.5.4 categories python revision 1 py25-hcluster 588 portdir python/py25-hcluster description {This library provides Python functions for agglomerative clustering.} homepage http://code.google.com/p/scipy-cluster/ epoch 0 platforms darwin depends_lib {port:python25 port:py25-numpy} name py25-hcluster maintainers jameskyle long_description {This library provides Python functions for agglomerative clustering. The interface is very similar to MATLAB's Statistics Toolbox API to make code easier to port from MATLAB to Python/Numpy. The core implementation of this library is in C for efficiency.} version 0.2.0 categories python revision 0 py25-hgsvn 447 @@ -9075,7 +9075,7 @@ py25-rdflib 558 portdir python/py25-rdflib description {Python library for working with RDF} homepage http://rdflib.net/ epoch 0 platforms darwin depends_lib {port:python25 port:py25-setuptools} name py25-rdflib maintainers nomaintainer long_description {RDFLib is a Python library for working with RDF, a simple yet powerful language for representing information. The library contains an RDF/XML parser/serializer, a TripleStore, an InformationStore and various store backends (InMemory, SleepyCat BTree, ZODB BTree).} version 2.4.0 categories {python textproc} revision 0 py25-readline 338 -portdir python/py25-readline description {This is a stub. readline is now build with python25} homepage http://www.python.org/ epoch 0 platforms darwin depends_lib port:python25 name py25-readline maintainers nomaintainer long_description {{This is a stub. readline is now build with python25}} version 2.5.4 categories python revision 1 +portdir python/py25-readline description {This is a stub. readline is now built with python25} homepage http://www.python.org/ epoch 0 platforms darwin depends_lib port:python25 name py25-readline maintainers nomaintainer long_description {{This is a stub. readline is now built with python25}} version 2.5.4 categories python revision 1 py25-recaptcha 787 portdir python/py25-recaptcha description {Python recaptcha client} homepage http://pypi.python.org/pypi/recaptcha-client epoch 0 platforms {darwin freebsd} depends_lib {port:python25 port:py25-crypto} name py25-recaptcha maintainers {alakazam stechert} long_description {Provides a CAPTCHA for Python using the reCAPTCHA service. Does not require any imaging libraries because the CAPTCHA is served directly from reCAPTCHA. Also allows you to securely obfuscate emails with Mailhide. This functionality requires pycrypto. This library requires two types of API keys. If you'd like to use the CAPTCHA, you'll need a key from http://recaptcha.net/api/getkey. For Mailhide, you'll need a key from http://mailhide.recaptcha.net/apikey} version 1.0.5 categories {python graphics} revision 0 py25-reportlab 485 @@ -9113,7 +9113,7 @@ py25-soaplib 727 portdir python/py25-soaplib description {A simple library for writing soap web services.} homepage http://wiki.github.com/jkp/soaplib/ epoch 0 platforms darwin depends_lib {port:py25-lxml port:py25-tz port:py25-setuptools} name py25-soaplib maintainers lightnin long_description {This is a simple, easily extendible soap library that provides several useful tools for creating and publishing soap web services in python. This package features on-demand WSDL generation for the published services, a WSGI-compliant web application, support for complex class structures, binary attachments, simple framework for creating additional serialization mechanisms and a client library.} version 0.8.1 categories {python www} revision 0 py25-socket-ssl 378 -portdir python/py25-socket-ssl description {This is a stub. socket-ssl is now build with python25} homepage http://www.python.org/doc/current/lib/ssl-objects.html epoch 0 platforms darwin depends_lib port:python25 name py25-socket-ssl maintainers nomaintainer long_description {{This is a stub. socket-ssl is now build with python25}} version 2.5.4 categories python revision 1 +portdir python/py25-socket-ssl description {This is a stub. socket-ssl is now built with python25} homepage http://www.python.org/doc/current/lib/ssl-objects.html epoch 0 platforms darwin depends_lib port:python25 name py25-socket-ssl maintainers nomaintainer long_description {{This is a stub. socket-ssl is now built with python25}} version 2.5.4 categories python revision 1 py25-sphinx 713 portdir python/py25-sphinx description {Python documentation generator} homepage http://sphinx.pocoo.org/ depends_run {port:py25-pygments port:py25-jinja2 port:py25-setuptools} epoch 0 platforms darwin depends_lib port:py25-docutils name py25-sphinx maintainers gmail.com:michel.sylvan long_description {Sphinx is a tool that makes it easy to create intelligent and beautiful documentation for Python projects (or other documents consisting of multiple reStructuredText sources), written by Georg Brandl. It was originally created to translate the new Python documentation, but has now been cleaned up in the hope that it will be useful to many other projects.} version 0.6.2 categories {python devel} revision 0 py25-sqlalchemy 421 @@ -9121,7 +9121,7 @@ py25-sqlalchemy-migrate 667 portdir python/py25-sqlalchemy-migrate description {Database schema migration for SQLAlchemy} homepage http://sqlalchemy-migrate.googlecode.com/ epoch 0 platforms darwin depends_lib port:py25-setuptools name py25-sqlalchemy-migrate maintainers {akitada openmaintainer} long_description {Inspired by Ruby on Rails' migrations, SQLAlchemy Migrate provides a way to deal with database schema changes in SQLAlchemy projects. SQLAlchemy Migrate extends SQLAlchemy to have database changeset handling. It provides a database change repository mechanism which can be used from the command line as well as from inside python code.} version 0.4.5 categories python revision 0 py25-sqlite3 381 -portdir python/py25-sqlite3 description {This is a stub. sqlite3 is now build with python25} homepage http://www.python.org/doc/current/lib/module-sqlite3.html epoch 0 platforms darwin depends_lib port:python25 name py25-sqlite3 maintainers nomaintainer long_description {{This is a stub. sqlite3 is now build with python25}} version 2.5.4 categories {python databases} revision 1 +portdir python/py25-sqlite3 description {This is a stub. sqlite3 is now built with python25} homepage http://www.python.org/doc/current/lib/module-sqlite3.html epoch 0 platforms darwin depends_lib port:python25 name py25-sqlite3 maintainers nomaintainer long_description {{This is a stub. sqlite3 is now built with python25}} version 2.5.4 categories {python databases} revision 1 py25-sqlobject 1065 portdir python/py25-sqlobject description {object-relational mapper for python} homepage http://www.sqlobject.org/ epoch 0 platforms darwin depends_lib {port:python25 port:py25-formencode} name py25-sqlobject maintainers {openmaintainer akitada} long_description {SQLObject is an object-relational mapper. It allows you to translate RDBMS table rows into Python objects, and manipulate those objects to transparently manipulate the database. In using SQLObject, you will create a class definition that will describe how the object connects to the database (in addition to any other methods you may wish to add to the class). SQLObject will produce the code to access the database, and update the database with your changes. The interface to the database is meant to be indistinguishable from other interfaces you may add to the object. SQLObject also includes a novel feature to generate WHERE clauses using Python syntax and objects (instead of generating SQL using string substitution, as is traditional).} version 0.10.2 categories {python databases} revision 0 py25-stomper 658 @@ -9143,7 +9143,7 @@ py25-textile 427 portdir python/py25-textile description {This is Textile. A Humane Web Text Generator.} homepage http://loopcore.com/python-textile/ epoch 0 platforms darwin depends_lib {port:python25 port:py25-setuptools} name py25-textile maintainers {openmaintainer arthurkoziel.com:arthur} long_description {Textile is a XHTML generator using a simple markup developed by Dean Allen.} version 2.1.3 categories {python textproc} revision 0 py25-tkinter 380 -portdir python/py25-tkinter description {This is a stub. tkinter is now build with python25} homepage http://www.python.org/doc/current/lib/module-Tkinter.html epoch 0 platforms darwin depends_lib port:python25 name py25-tkinter maintainers nomaintainer long_description {{This is a stub. tkinter is now build with python25}} version 2.5.4 categories {python graphics} revision 1 +portdir python/py25-tkinter description {This is a stub. tkinter is now built with python25} homepage http://www.python.org/doc/current/lib/module-Tkinter.html epoch 0 platforms darwin depends_lib port:python25 name py25-tkinter maintainers nomaintainer long_description {{This is a stub. tkinter is now built with python25}} version 2.5.4 categories {python graphics} revision 1 py25-toscawidgets 464 portdir python/py25-toscawidgets depends_fetch port:subversion description {Web widget toolkit based on Turbogears Widgets} homepage http://toscawidgets.org/ epoch 0 platforms darwin depends_lib port:python25 name py25-toscawidgets maintainers stechert long_description {ToscaWidgets is a web widget toolkit for Python to aid in the creation, packaging and distribution of common view elements normally used in the web.} version 0.1a2 categories python revision 0 py25-traits 522 @@ -12299,9 +12299,9 @@ gtk2-murrine-configurator 644 portdir x11/gtk2-murrine-configurator description {The definitive tool for the Murrine lovers} homepage http://gnome-look.org/content/show.php/?content=53951 epoch 0 depends_run {port:python25 port:py25-gtk port:gtk2-murrine} platforms macosx name gtk2-murrine-configurator maintainers {nox openmaintainer} long_description {This is absolutely the first Configurator for a Gtk Engine. New Murrine Configurator give users the opportunity to configure all the Murrine Engine style options, like glaze style, roundness, menu bar and items styles, and many other aspects to reach their desired effects.} categories {x11 gtk} version 1.4 revision 1 gtkglarea 651 -portdir x11/gtkglarea description {OpenGL widget to GTK+} homepage http://www.student.oulu.fi/~jlof/gtkglarea/ epoch 0 platforms darwin name gtkglarea depends_lib {port:glib1 port:gettext port:gtk1} maintainers digdog long_description {Just as GTK+ is build on top of GDK, GtkGLArea is built on top of gdkgl which is basically wrapper around GLX functions. The widget itself is very similar to GtkDrawinigArea widget and adds only three extra functions. Lower level gdkgl functions make it easy to render on any widget that has OpenGL capable visual, rendering to off-screen pixmaps is also supported.} categories {x11 devel} version 1.2.3 revision 0 +portdir x11/gtkglarea description {OpenGL widget to GTK+} homepage http://www.student.oulu.fi/~jlof/gtkglarea/ epoch 0 platforms darwin name gtkglarea depends_lib {port:glib1 port:gettext port:gtk1} maintainers digdog long_description {Just as GTK+ is built on top of GDK, GtkGLArea is built on top of gdkgl which is basically wrapper around GLX functions. The widget itself is very similar to GtkDrawinigArea widget and adds only three extra functions. Lower level gdkgl functions make it easy to render on any widget that has OpenGL capable visual, rendering to off-screen pixmaps is also supported.} categories {x11 devel} version 1.2.3 revision 0 gtkglarea2 734 -variants universal depends_build {port:autoconf port:automake port:libtool} portdir x11/gtkglarea2 description {OpenGL widget to GTK+} homepage ftp://ftp.gnome.org/mirror/gnome.org/sources/gtkglarea/ epoch 0 platforms darwin name gtkglarea2 depends_lib {port:mesa port:gtk2} long_description {Just as GTK+ is build on top of GDK, GtkGLArea is built on top of gdkgl which is basically wrapper around GLX functions. The widget itself is very similar to GtkDrawinigArea widget and adds only three extra functions. Lower level gdkgl functions make it easy to render on any widget that has OpenGL capable visual, rendering to off-screen pixmaps is also supported.} maintainers nomaintainer categories {x11 devel} version 1.99.0 revision 0 +variants universal depends_build {port:autoconf port:automake port:libtool} portdir x11/gtkglarea2 description {OpenGL widget to GTK+} homepage ftp://ftp.gnome.org/mirror/gnome.org/sources/gtkglarea/ epoch 0 platforms darwin name gtkglarea2 depends_lib {port:mesa port:gtk2} long_description {Just as GTK+ is built on top of GDK, GtkGLArea is built on top of gdkgl which is basically wrapper around GLX functions. The widget itself is very similar to GtkDrawinigArea widget and adds only three extra functions. Lower level gdkgl functions make it easy to render on any widget that has OpenGL capable visual, rendering to off-screen pixmaps is also supported.} maintainers nomaintainer categories {x11 devel} version 1.99.0 revision 0 gtkmm 434 variants universal portdir x11/gtkmm description {C++ interface to GTK+.} homepage http://www.gtkmm.org/ epoch 0 platforms darwin name gtkmm depends_lib {port:gtk2 port:glibmm path:lib/pkgconfig/cairomm-1.0.pc:cairomm port:pangomm} maintainers {devans openmaintainer} long_description {gtkmm (previously known as Gtk--) is the official C++ interface for the popular GUI library GTK+.} categories {x11 devel} version 2.18.2 revision 0 gtkspell2 568 -------------- next part -------------- An HTML attachment was scrubbed... URL: From takeshi at macports.org Sat Jan 9 00:12:22 2010 From: takeshi at macports.org (takeshi at macports.org) Date: Sat, 9 Jan 2010 00:12:22 -0800 (PST) Subject: [62485] trunk/dports/science/nco/Portfile Message-ID: <20100109081223.5655E3B2C4E7@beta.macosforge.org> Revision: 62485 http://trac.macports.org/changeset/62485 Author: takeshi at macports.org Date: 2010-01-09 00:12:18 -0800 (Sat, 09 Jan 2010) Log Message: ----------- nco: updated to 4.0.0 Modified Paths: -------------- trunk/dports/science/nco/Portfile Modified: trunk/dports/science/nco/Portfile =================================================================== --- trunk/dports/science/nco/Portfile 2010-01-09 04:54:35 UTC (rev 62484) +++ trunk/dports/science/nco/Portfile 2010-01-09 08:12:18 UTC (rev 62485) @@ -4,16 +4,15 @@ PortSystem 1.0 name nco -version 3.9.9 +version 4.0.0 platforms darwin -revision 1 maintainers takeshi categories science description The netCDF Operators master_sites http://${name}.sourceforge.net/src/ -checksums md5 0340b2adc2fc189c3766160b1c96ef7c \ - sha1 f8e62993423cdf3c444637a8c280a8a62e725651 \ - rmd160 e1721bf3f9ad1473dc0120651b6130830cd7c77c +checksums md5 e849b66166b7df2ff24eccd6c8e02f9f \ + sha1 3e51a61e93f75666d02a81702c9fa74e896435bb \ + rmd160 de7eddf392bdb5ed82ab2f3009237064f6e00a30 homepage http://nco.sourceforge.net/ long_description \ Each NCO operator (e.g., ncks) takes netCDF or HDF input file(s), \ -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Sat Jan 9 00:54:29 2010 From: portindex at macports.org (portindex at macports.org) Date: Sat, 9 Jan 2010 00:54:29 -0800 (PST) Subject: [62486] trunk/dports/PortIndex Message-ID: <20100109085431.285DB3B2D1D2@beta.macosforge.org> Revision: 62486 http://trac.macports.org/changeset/62486 Author: portindex at macports.org Date: 2010-01-09 00:54:25 -0800 (Sat, 09 Jan 2010) Log Message: ----------- Total number of ports parsed: 6480 Ports successfully parsed: 6480 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-09 08:12:18 UTC (rev 62485) +++ trunk/dports/PortIndex 2010-01-09 08:54:25 UTC (rev 62486) @@ -10461,7 +10461,7 @@ ncbi_tools 358 portdir science/ncbi_tools description {blast is a set of tools for doing nucleotide and protein searches} homepage http://www.ncbi.nlm.nih.gov/blast/ epoch 0 platforms darwin name ncbi_tools maintainers gmail.com:mike.thon long_description {{blast is a set of tools for doing nucleotide and protein searches}} version 20080302 categories science revision 0 nco 930 -variants {mpich2 openmpi udunits2 netcdf4 universal} depends_build {port:bison port:m4} portdir science/nco description {The netCDF Operators} homepage http://nco.sourceforge.net/ depends_run port:wget epoch 0 platforms darwin name nco depends_lib {port:curl port:gettext port:libdap port:libiconv port:libxml2 port:netcdf port:openssl port:udunits port:zlib port:antlr port:gsl} long_description {Each NCO operator (e.g., ncks) takes netCDF or HDF input file(s), performs an operation (e.g., averaging, hyperslabbing, or renaming), and outputs a processed netCDF file. Although most users of netCDF and HDF data are involved in scientific research, these data formats, and thus NCO, are generic and are equally useful in fields like finance. This version is OPeNDAP/DODS enabled, so it can be given URLs to read remote datasets as if they were local netCDF files.} maintainers takeshi categories science version 3.9.9 revision 1 +variants {mpich2 openmpi udunits2 netcdf4 universal} depends_build {port:bison port:m4} portdir science/nco description {The netCDF Operators} homepage http://nco.sourceforge.net/ depends_run port:wget epoch 0 platforms darwin name nco depends_lib {port:curl port:gettext port:libdap port:libiconv port:libxml2 port:netcdf port:openssl port:udunits port:zlib port:antlr port:gsl} long_description {Each NCO operator (e.g., ncks) takes netCDF or HDF input file(s), performs an operation (e.g., averaging, hyperslabbing, or renaming), and outputs a processed netCDF file. Although most users of netCDF and HDF data are involved in scientific research, these data formats, and thus NCO, are generic and are equally useful in fields like finance. This version is OPeNDAP/DODS enabled, so it can be given URLs to read remote datasets as if they were local netCDF files.} maintainers takeshi categories science version 4.0.0 revision 0 ncview 682 variants universal portdir science/ncview description {X windows point'n'click NetCDF viewer.} homepage http://meteora.ucsd.edu/~pierce/ncview_home_page.html epoch 0 platforms darwin name ncview depends_lib {port:netcdf port:udunits port:netpbm port:xorg-libXaw port:xorg-libXt port:xorg-libice} long_description {Ncview is a visual browser for NetCDF format files. Typically you would use ncview to get a quick and easy, push-button look at your NetCDF files. You can view simple movies of the data, view along various dimensions, take a look at the actual data values, change color maps, invert the data, etc.} maintainers nomaintainer categories science version 1.93g revision 0 netcdf 734 -------------- next part -------------- An HTML attachment was scrubbed... URL: From stromnov at macports.org Sat Jan 9 01:24:40 2010 From: stromnov at macports.org (stromnov at macports.org) Date: Sat, 9 Jan 2010 01:24:40 -0800 (PST) Subject: [62487] trunk/dports/python Message-ID: <20100109092441.208A43B2E01B@beta.macosforge.org> Revision: 62487 http://trac.macports.org/changeset/62487 Author: stromnov at macports.org Date: 2010-01-09 01:24:37 -0800 (Sat, 09 Jan 2010) Log Message: ----------- py26-pyproj: New port (from existing py25-pyproj) Modified Paths: -------------- trunk/dports/python/py26-pyproj/Portfile Added Paths: ----------- trunk/dports/python/py26-pyproj/ Modified: trunk/dports/python/py26-pyproj/Portfile =================================================================== --- trunk/dports/python/py25-pyproj/Portfile 2010-01-09 08:12:18 UTC (rev 62485) +++ trunk/dports/python/py26-pyproj/Portfile 2010-01-09 09:24:37 UTC (rev 62487) @@ -1,25 +1,34 @@ +# -*- 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 -PortGroup python25 1.0 +PortSystem 1.0 +PortGroup python26 1.0 -name py25-pyproj -version 1.8.5 -categories python graphics -platforms darwin -maintainers landonf openmaintainer -description Python interfaces to PROJ.4 (http://proj.maptools.org) functions. +name py26-pyproj +version 1.8.6 +categories python +maintainers stromnov openmaintainer -long_description \ - Pyrex wrapper to provide python interfaces to \ - PROJ.4 (http://proj.maptools.org) functions. \ - Performs cartographic transformations and geodetic computations. +description Python interfaces to PROJ.4 functions. +long_description Pyrex wrapper to provide python interfaces to PROJ.4 \ + (http://proj.maptools.org) functions. Performs \ + cartographic transformations and geodetic computations. -homepage http://code.google.com/p/pyproj/ -master_sites http://pyproj.googlecode.com/files/ -distname pyproj-${version} +homepage http://code.google.com/p/pyproj/ +platforms darwin +master_sites googlecode:pyproj -depends_lib port:proj \ - port:py25-pyrex +distname pyproj-${version} -checksums md5 60483160456ca9298a5148a50cf656cc +checksums md5 dbaeb97d88ed7eaa6ec1b3e2d29916b3 \ + sha1 1e9b4e6bb02e3fb81a4a3c8469e9f88b6c0f5e84 \ + rmd160 acdc04bd218b9bbb0d96163dd6b3a50b257d07a3 + +depends_lib-append port:proj \ + port:py26-pyrex + +post-destroot { + xinstall -m 644 -W ${worksrcpath} \ + README README.html PKG-INFO \ + ${destroot}${prefix}/share/doc/${name} +} -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Sat Jan 9 01:32:20 2010 From: ryandesign at macports.org (ryandesign at macports.org) Date: Sat, 9 Jan 2010 01:32:20 -0800 (PST) Subject: [62488] trunk/dports/devel/qscintilla/Portfile Message-ID: <20100109093220.C19BD3B2E3CF@beta.macosforge.org> Revision: 62488 http://trac.macports.org/changeset/62488 Author: ryandesign at macports.org Date: 2010-01-09 01:32:17 -0800 (Sat, 09 Jan 2010) Log Message: ----------- qscintilla: remove unnecessary distfiles and worksrcdir lines Modified Paths: -------------- trunk/dports/devel/qscintilla/Portfile Modified: trunk/dports/devel/qscintilla/Portfile =================================================================== --- trunk/dports/devel/qscintilla/Portfile 2010-01-09 09:24:37 UTC (rev 62487) +++ trunk/dports/devel/qscintilla/Portfile 2010-01-09 09:32:17 UTC (rev 62488) @@ -22,7 +22,6 @@ multiple fonts. distname QScintilla-gpl-${version} -distfiles ${distname}.tar.gz master_sites http://www.riverbankcomputing.com/static/Downloads/QScintilla2/ checksums md5 dd69520ec91f1acb97a4eb74ddde37c9 \ @@ -32,8 +31,6 @@ depends_lib path:bin/qmake-mac:qt4-mac \ path:bin/python:python25 -worksrcdir ${distname} - set qt_dir ${prefix}/libexec/qt4-mac configure.dir ${worksrcpath}/Qt4 -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Sat Jan 9 01:36:59 2010 From: ryandesign at macports.org (ryandesign at macports.org) Date: Sat, 9 Jan 2010 01:36:59 -0800 (PST) Subject: [62489] trunk/dports/devel/qscintilla/Portfile Message-ID: <20100109093659.DBC1A3B2E53A@beta.macosforge.org> Revision: 62489 http://trac.macports.org/changeset/62489 Author: ryandesign at macports.org Date: 2010-01-09 01:36:58 -0800 (Sat, 09 Jan 2010) Log Message: ----------- qscintilla: universal variant does not function Modified Paths: -------------- trunk/dports/devel/qscintilla/Portfile Modified: trunk/dports/devel/qscintilla/Portfile =================================================================== --- trunk/dports/devel/qscintilla/Portfile 2010-01-09 09:32:17 UTC (rev 62488) +++ trunk/dports/devel/qscintilla/Portfile 2010-01-09 09:36:58 UTC (rev 62489) @@ -31,6 +31,8 @@ depends_lib path:bin/qmake-mac:qt4-mac \ path:bin/python:python25 +universal_variant no + set qt_dir ${prefix}/libexec/qt4-mac configure.dir ${worksrcpath}/Qt4 -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Sat Jan 9 01:50:39 2010 From: ryandesign at macports.org (ryandesign at macports.org) Date: Sat, 9 Jan 2010 01:50:39 -0800 (PST) Subject: [62490] trunk/dports/databases/sqliteman/Portfile Message-ID: <20100109095039.E93323B2EAEE@beta.macosforge.org> Revision: 62490 http://trac.macports.org/changeset/62490 Author: ryandesign at macports.org Date: 2010-01-09 01:50:36 -0800 (Sat, 09 Jan 2010) Log Message: ----------- sqliteman: disable universal because dependency qscintilla is not universal Modified Paths: -------------- trunk/dports/databases/sqliteman/Portfile Modified: trunk/dports/databases/sqliteman/Portfile =================================================================== --- trunk/dports/databases/sqliteman/Portfile 2010-01-09 09:36:58 UTC (rev 62489) +++ trunk/dports/databases/sqliteman/Portfile 2010-01-09 09:50:36 UTC (rev 62490) @@ -28,6 +28,9 @@ path:bin/qmake-mac:qt4-mac \ port:qscintilla +# qscintilla is not universal +universal_variant no + configure.cmd cmake configure.pre_args -DCMAKE_INSTALL_PREFIX=${prefix} configure.args -DQT_QMAKE_EXECUTABLE=${prefix}/libexec/qt4-mac/bin/qmake -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Sat Jan 9 01:54:46 2010 From: portindex at macports.org (portindex at macports.org) Date: Sat, 9 Jan 2010 01:54:46 -0800 (PST) Subject: [62491] trunk/dports Message-ID: <20100109095449.20FA93B2EB62@beta.macosforge.org> Revision: 62491 http://trac.macports.org/changeset/62491 Author: portindex at macports.org Date: 2010-01-09 01:54:44 -0800 (Sat, 09 Jan 2010) Log Message: ----------- Total number of ports parsed: 6481 Ports successfully parsed: 6481 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex trunk/dports/PortIndex.quick Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-09 09:50:36 UTC (rev 62490) +++ trunk/dports/PortIndex 2010-01-09 09:54:44 UTC (rev 62491) @@ -2018,8 +2018,8 @@ variants universal portdir devel/qd description {C++/Fortran-90 double-double and quad-double package} homepage http://crd.lbl.gov/~dhbailey/mpdist/ epoch 0 platforms darwin name qd long_description {This package supports both a double-double datatype (approx. 32 decimal digits) and a quad-double datatype (approx. 64 decimal digits). The computational library is written in C++. Both C++ and Fortran-90 high-level language interfaces are provided to permit one to use convert an existing C++ or Fortran-90 program to use the library with only minor changes to the source code. In most cases only a few type statements and (for Fortran-90 programs) read/write statements need to be changed. PSLQ and numerical quadrature programs are included.} maintainers gmail.com:brad.froehle categories {devel math} version 2.3.8 revision 0 qgit 366 variants universal portdir devel/qgit description {A graphical interface to git repositories} homepage http://sourceforge.net/projects/qgit/ epoch 0 platforms darwin name qgit depends_lib {path:bin/qmake-mac:qt4-mac port:git-core} long_description {A QT graphical interface to git repositories} maintainers free.fr:ocroquette categories devel version 2.2 revision 1 -qscintilla 1005 -variants universal portdir devel/qscintilla description {QScintilla is a port to Qt of Neil Hodgson's Scintilla C++ editor control.} homepage http://www.riverbankcomputing.com/software/qscintilla/ epoch 0 platforms darwin name qscintilla depends_lib {path:bin/qmake-mac:qt4-mac path:bin/python:python25} long_description {QScintilla is a port to Qt of Neil Hodgson's Scintilla C++ editor control. As well as features found in standard text editing components, QScintilla includes features especially useful when editing and debugging source code. These include support for syntax styling, error indicators, code completion and call tips. The selection margin can contain markers like those used in debuggers to indicate breakpoints and the current line. Styling choices are more open than with many editors, allowing the use of proportional fonts, bold and italics, multiple foreground and background colours and multiple fonts.} maintainers {ricci openmaintainer} categories devel version 2.4 revision 0 +qscintilla 986 +portdir devel/qscintilla description {QScintilla is a port to Qt of Neil Hodgson's Scintilla C++ editor control.} homepage http://www.riverbankcomputing.com/software/qscintilla/ epoch 0 platforms darwin name qscintilla depends_lib {path:bin/qmake-mac:qt4-mac path:bin/python:python25} maintainers {ricci openmaintainer} long_description {QScintilla is a port to Qt of Neil Hodgson's Scintilla C++ editor control. As well as features found in standard text editing components, QScintilla includes features especially useful when editing and debugging source code. These include support for syntax styling, error indicators, code completion and call tips. The selection margin can contain markers like those used in debuggers to indicate breakpoints and the current line. Styling choices are more open than with many editors, allowing the use of proportional fonts, bold and italics, multiple foreground and background colours and multiple fonts.} categories devel version 2.4 revision 0 qtc-qtsharp 452 variants universal portdir devel/qtc description {Intermediate C++ glue for Qt C# bindings} homepage http://qtcsharp.sourceforge.net/ epoch 0 depends_run bin:cscc:pnet platforms darwin depends_lib lib:libqt.3.3:qt3-mac name qtc-qtsharp long_description {A cross-platform GUI toolkit for Mono and Portable.Net which provides set of classes that bind any CIL language to the Qt toolkit.} maintainers nomaintainer categories devel version 0.7a revision 0 qtscriptgenerator 511 @@ -9606,6 +9606,8 @@ portdir python/py26-pypdf description {A Pure-Python PDF toolkit.} homepage http://pybrary.net/pyPdf/ epoch 0 platforms darwin depends_lib port:python26 name py26-pypdf maintainers {singingwolfboy openmaintainer} long_description {A Pure-Python PDF toolkit. It is capable of extracting document information (title, author, ...), splitting documents page by page, merging documents page by page, cropping pages, merging multiple pages into a single page, and encrypting and decrypting PDF files.} version 1.12 categories {python devel} revision 0 py26-pyplusplus 525 portdir python/py26-pyplusplus description {Py++ is an framework for creating a code generator for Boost.Python library and ctypes package} homepage http://www.language-binding.net/pyplusplus/pyplusplus.html epoch 0 platforms darwin depends_lib {port:py26-pygccxml port:py26-setuptools} name py26-pyplusplus maintainers mnick long_description {{Py++ is an framework for creating a code generator for Boost.Python library and ctypes package}} depends_extract bin:unzip:unzip version 1.0.0 categories {python devel} revision 0 +py26-pyproj 474 +portdir python/py26-pyproj description {Python interfaces to PROJ.4 functions.} homepage http://code.google.com/p/pyproj/ epoch 0 platforms darwin depends_lib {port:python26 port:proj port:py26-pyrex} name py26-pyproj maintainers {stromnov openmaintainer} long_description {Pyrex wrapper to provide python interfaces to PROJ.4 (http://proj.maptools.org) functions. Performs cartographic transformations and geodetic computations.} version 1.8.6 categories python revision 0 py26-pyprotocols 577 portdir python/py26-pyprotocols description {Protocol Definition, Declaration, and Adaptation} homepage http://www.turbogears.org/ epoch 0 platforms darwin depends_lib port:py26-decoratortools name py26-pyprotocols maintainers nomaintainer long_description {PyProtocols extends the PEP 246 adapt() function with a new {declaration API} that lets you easily define your own interfaces and adapters, and declare what adapters should be used to adapt what types, objects, or interfaces.} depends_extract bin:unzip:unzip version 1.0a0dev-r2302 categories {python devel} revision 0 py26-pyqt4 618 Modified: trunk/dports/PortIndex.quick =================================================================== (Binary files differ) -------------- next part -------------- An HTML attachment was scrubbed... URL: From jwa at macports.org Sat Jan 9 02:06:04 2010 From: jwa at macports.org (jwa at macports.org) Date: Sat, 9 Jan 2010 02:06:04 -0800 (PST) Subject: [62492] trunk/dports/www/midgard-core/Portfile Message-ID: <20100109100605.8A3153B2EDDA@beta.macosforge.org> Revision: 62492 http://trac.macports.org/changeset/62492 Author: jwa at macports.org Date: 2010-01-09 02:06:00 -0800 (Sat, 09 Jan 2010) Log Message: ----------- version bump to 8.09.7 Modified Paths: -------------- trunk/dports/www/midgard-core/Portfile Modified: trunk/dports/www/midgard-core/Portfile =================================================================== --- trunk/dports/www/midgard-core/Portfile 2010-01-09 09:54:44 UTC (rev 62491) +++ trunk/dports/www/midgard-core/Portfile 2010-01-09 10:06:00 UTC (rev 62492) @@ -3,7 +3,7 @@ PortSystem 1.0 name midgard-core -version 8.09.6.1 +version 8.09.7 categories www maintainers jwa description A content management system @@ -12,12 +12,12 @@ platforms darwin homepage http://www.midgard-project.org/ -master_sites http://www.midgard-project.org/midcom-serveattachmentguid-19a2c770ce0811dea4b9233b51a481a081a0/ +master_sites http://www.midgard-project.org/midcom-serveattachmentguid-4b96a22cfac411deb439a7cc561babcaabca/ #use_bzip2 yes -checksums md5 f1e54a3be438ffd576d3ce8957066c60 \ - sha1 f4eb2f52cedcfd4f3d5efee14f6cc265a6f15abc \ - rmd160 ec241efd5246676b7e496bffd1d308509b95deec +checksums md5 3ac7d951ec9cd68f72e68c8532bf0b1b \ + sha1 d3edcb1c3ea899061e01b8fc5794e278859cc3d8 \ + rmd160 1b3a72f3eea52d03e0aae37898bd91833e8ededc depends_lib port:expat \ port:gettext \ -------------- next part -------------- An HTML attachment was scrubbed... URL: From jwa at macports.org Sat Jan 9 02:06:30 2010 From: jwa at macports.org (jwa at macports.org) Date: Sat, 9 Jan 2010 02:06:30 -0800 (PST) Subject: [62493] trunk/dports/www/midgard-apache2/Portfile Message-ID: <20100109100630.EE0483B2EE17@beta.macosforge.org> Revision: 62493 http://trac.macports.org/changeset/62493 Author: jwa at macports.org Date: 2010-01-09 02:06:29 -0800 (Sat, 09 Jan 2010) Log Message: ----------- version bump to 8.09.7 Modified Paths: -------------- trunk/dports/www/midgard-apache2/Portfile Modified: trunk/dports/www/midgard-apache2/Portfile =================================================================== --- trunk/dports/www/midgard-apache2/Portfile 2010-01-09 10:06:00 UTC (rev 62492) +++ trunk/dports/www/midgard-apache2/Portfile 2010-01-09 10:06:29 UTC (rev 62493) @@ -3,7 +3,7 @@ PortSystem 1.0 name midgard-apache2 -version 8.09.6 +version 8.09.7 categories www maintainers jwa description A content management system @@ -12,12 +12,12 @@ platforms darwin homepage http://www.midgard-project.org/ -master_sites http://www.midgard-project.org/midcom-serveattachmentguid-24c596b2bd5c11dea70c8902ea51e954e954/ +master_sites http://www.midgard-project.org/midcom-serveattachmentguid-5367b20cfac411dea338b14ba5cc6f186f18/ #use_bzip2 yes -checksums md5 fd00e1351e8e9eedb4fe06931fd65205 \ - sha1 bda7ba85871cfb68ad72d20acc3980b9cc607dee \ - rmd160 14502c604281e92c961b1c72f090c1be5638e55d +checksums md5 5545c20661425c82bd9d0c17393ebf69 \ + sha1 d47c5e53e7015cb16930e2921659f463fb2cb416 \ + rmd160 2f02363a8ba11e490bd27c49b590c1f6fa7b8851 depends_lib port:midgard-core \ port:apache2 \ -------------- next part -------------- An HTML attachment was scrubbed... URL: From jwa at macports.org Sat Jan 9 02:06:49 2010 From: jwa at macports.org (jwa at macports.org) Date: Sat, 9 Jan 2010 02:06:49 -0800 (PST) Subject: [62494] trunk/dports/www/php5-midgard/Portfile Message-ID: <20100109100649.433B73B2EE44@beta.macosforge.org> Revision: 62494 http://trac.macports.org/changeset/62494 Author: jwa at macports.org Date: 2010-01-09 02:06:47 -0800 (Sat, 09 Jan 2010) Log Message: ----------- version bump to 8.09.7 Modified Paths: -------------- trunk/dports/www/php5-midgard/Portfile Modified: trunk/dports/www/php5-midgard/Portfile =================================================================== --- trunk/dports/www/php5-midgard/Portfile 2010-01-09 10:06:29 UTC (rev 62493) +++ trunk/dports/www/php5-midgard/Portfile 2010-01-09 10:06:47 UTC (rev 62494) @@ -3,7 +3,7 @@ PortSystem 1.0 name php5-midgard -version 8.09.6 +version 8.09.7 categories www maintainers jwa description A content management system @@ -12,12 +12,12 @@ platforms darwin homepage http://www.midgard-project.org/ -master_sites http://www.midgard-project.org/midcom-serveattachmentguid-41f17ba2bd5c11de829d3169c95cb19ab19a/ +master_sites http://www.midgard-project.org/midcom-serveattachmentguid-631b189cfac411dea17083dd1b5bc49ec49e/ #use_bzip2 yes -checksums md5 9a75042484615f1c29e2d488b0733178 \ - sha1 a240d740d163aaaae763a93e1c98cfe938104205 \ - rmd160 452b85d5e1bb0b321f5ffe0ede676baad90cb0e6 +checksums md5 3b9c7a046150b4a72dad13604468e93b \ + sha1 3c5f769d1d28d8d0845d78cc5b24bf47d237719e \ + rmd160 72b7ba1e8988a6a3db3dc484a8f17dcc2b82590f depends_lib port:midgard-core \ port:php52 -------------- next part -------------- An HTML attachment was scrubbed... URL: From jwa at macports.org Sat Jan 9 02:07:11 2010 From: jwa at macports.org (jwa at macports.org) Date: Sat, 9 Jan 2010 02:07:11 -0800 (PST) Subject: [62495] trunk/dports/www/midgard-data/Portfile Message-ID: <20100109100711.433C43B2EE9D@beta.macosforge.org> Revision: 62495 http://trac.macports.org/changeset/62495 Author: jwa at macports.org Date: 2010-01-09 02:07:09 -0800 (Sat, 09 Jan 2010) Log Message: ----------- version bump to 8.09.7 Modified Paths: -------------- trunk/dports/www/midgard-data/Portfile Modified: trunk/dports/www/midgard-data/Portfile =================================================================== --- trunk/dports/www/midgard-data/Portfile 2010-01-09 10:06:47 UTC (rev 62494) +++ trunk/dports/www/midgard-data/Portfile 2010-01-09 10:07:09 UTC (rev 62495) @@ -3,7 +3,7 @@ PortSystem 1.0 name midgard-data -version 8.09.6 +version 8.09.7 categories www @@ -16,12 +16,12 @@ platforms darwin homepage http://www.midgard-project.org/ -master_sites http://www.midgard-project.org/midcom-serveattachmentguid-978877a0bd5c11dea1fa3db7b9da81f481f4/ +master_sites http://www.midgard-project.org/midcom-serveattachmentguid-5b2c5542fac411deb7079f3040455f575f57/ #use_bzip2 yes -checksums md5 69c456031203710e2621f1459863d1cf \ - sha1 6f815c2734132960d5af9e0f3a32a56d0b46d865 \ - rmd160 c613e2ef4b3a071e85960bdda6fcc109ca1b717a +checksums md5 016f54872385e291dac70fcc019aa814 \ + sha1 878394593d9e788fbac842804e08b05226981fff \ + rmd160 d58ae0a43861883b65944bdaeb69a8d76a27bb5c depends_lib port:midgard-core \ port:midgard-apache2 \ -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandesign at macports.org Sat Jan 9 02:13:24 2010 From: ryandesign at macports.org (ryandesign at macports.org) Date: Sat, 9 Jan 2010 02:13:24 -0800 (PST) Subject: [62496] trunk/dports/databases/sqliteman Message-ID: <20100109101324.CBA113B2EF64@beta.macosforge.org> Revision: 62496 http://trac.macports.org/changeset/62496 Author: ryandesign at macports.org Date: 2010-01-09 02:13:21 -0800 (Sat, 09 Jan 2010) Log Message: ----------- sqliteman: update to 1.2.1 and fix crash at exit; closes #19227 (maintainer timeout) Modified Paths: -------------- trunk/dports/databases/sqliteman/Portfile Added Paths: ----------- trunk/dports/databases/sqliteman/files/ trunk/dports/databases/sqliteman/files/patch-litemanwindow.cpp.diff Modified: trunk/dports/databases/sqliteman/Portfile =================================================================== --- trunk/dports/databases/sqliteman/Portfile 2010-01-09 10:07:09 UTC (rev 62495) +++ trunk/dports/databases/sqliteman/Portfile 2010-01-09 10:13:21 UTC (rev 62496) @@ -4,8 +4,7 @@ PortSystem 1.0 name sqliteman -version 1.2.0 -revision 2 +version 1.2.1 description GUI tool for Sqlite3 long_description The best developer's and/or admin's GUI tool for Sqlite3 in the world. \ No joking here (or just a bit only) - it contains the most complete \ @@ -16,10 +15,12 @@ homepage http://www.sqliteman.com/ master_sites sourceforge:sqliteman -checksums md5 903aee0f7eae0d4af6c960ea755b12ac \ - sha1 7304c2f3a846f2345c6fa6f9d64149173e64eaaf \ - rmd160 7d97dad94a0f2eb08b06a04f57d5bcd7a4dd6744 +checksums md5 1ad603d38e4eda63f1386c6ee22a2838 \ + sha1 a0ea03cfa9b95f38d5d1f1db926537d61a0c5c01 \ + rmd160 19f7e82ab49480bf1d45e8506ed71e4da6ce1f47 +patchfiles patch-litemanwindow.cpp.diff + use_bzip2 yes depends_build port:cmake Added: trunk/dports/databases/sqliteman/files/patch-litemanwindow.cpp.diff =================================================================== --- trunk/dports/databases/sqliteman/files/patch-litemanwindow.cpp.diff (rev 0) +++ trunk/dports/databases/sqliteman/files/patch-litemanwindow.cpp.diff 2010-01-09 10:13:21 UTC (rev 62496) @@ -0,0 +1,18 @@ +Index: sqliteman/litemanwindow.cpp +=================================================================== +--- sqliteman/litemanwindow.cpp (revision 490) ++++ sqliteman/litemanwindow.cpp (working copy) +@@ -129,12 +129,9 @@ + i.next(); + QSqlDatabase::database(i.value()).rollback(); + QSqlDatabase::database(i.value()).close(); ++ QSqlDatabase::removeDatabase(i.value()); + } + +- // It has to go after writeSettings()! +- foreach (QWidget *widget, QApplication::topLevelWidgets()) +- widget->close(); +- + e->accept(); + } + -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Sat Jan 9 02:54:41 2010 From: portindex at macports.org (portindex at macports.org) Date: Sat, 9 Jan 2010 02:54:41 -0800 (PST) Subject: [62497] trunk/dports Message-ID: <20100109105444.6DA473B2FF00@beta.macosforge.org> Revision: 62497 http://trac.macports.org/changeset/62497 Author: portindex at macports.org Date: 2010-01-09 02:54:38 -0800 (Sat, 09 Jan 2010) Log Message: ----------- Total number of ports parsed: 6481 Ports successfully parsed: 6481 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex trunk/dports/PortIndex.quick Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-09 10:13:21 UTC (rev 62496) +++ trunk/dports/PortIndex 2010-01-09 10:54:38 UTC (rev 62497) @@ -872,8 +872,8 @@ variants universal portdir databases/sqlite2 description {an embedded SQL database engine} homepage http://www.sqlite.org/ epoch 0 platforms darwin name sqlite2 depends_lib port:readline long_description {SQLite is an SQL database engine in a C library. Programs that link the SQLite library can have SQL database access without running a separate RDBMS process. The distribution comes with a standalone command-line access program (sqlite) that can be used to administer an SQLite database and which serves as an example of how to use the SQLite library.} maintainers nomaintainer categories databases version 2.8.17 revision 0 sqlite3 640 variants universal portdir databases/sqlite3 description {an embedded SQL database engine} homepage http://www.sqlite.org/ epoch 0 platforms darwin name sqlite3 depends_lib {port:readline port:ncurses} long_description {SQLite3 is an SQL database engine in a C library. Programs that link the SQLite3 library can have SQL database access without running a separate RDBMS process. The distribution comes with a standalone command-line access program (sqlite3) that can be used to administer an SQLite3 database and which serves as an example of how to use the SQLite3 library.} maintainers mww categories databases version 3.6.21 revision 0 -sqliteman 527 -variants universal depends_build port:cmake portdir databases/sqliteman description {GUI tool for Sqlite3} homepage http://www.sqliteman.com/ epoch 0 platforms darwin depends_lib {port:sqlite3 path:bin/qmake-mac:qt4-mac port:qscintilla} name sqliteman maintainers {ricci openmaintainer} long_description {The best developer's and/or admin's GUI tool for Sqlite3 in the world. No joking here (or just a bit only) - it contains the most complete feature set of all tools available.} categories databases version 1.2.0 revision 2 +sqliteman 508 +depends_build port:cmake portdir databases/sqliteman description {GUI tool for Sqlite3} homepage http://www.sqliteman.com/ epoch 0 platforms darwin depends_lib {port:sqlite3 path:bin/qmake-mac:qt4-mac port:qscintilla} name sqliteman long_description {The best developer's and/or admin's GUI tool for Sqlite3 in the world. No joking here (or just a bit only) - it contains the most complete feature set of all tools available.} maintainers {ricci openmaintainer} categories databases version 1.2.1 revision 0 sqlitewrapped 568 depends_build port:sqlite3 portdir databases/sqlitewrapped description {a C++ wrapper for the Sqlite database C API} homepage http://www.alhem.net/project/sqlite/index.html epoch 0 platforms darwin name sqlitewrapped maintainers uwe-arzt.de:mail long_description {This is a C++ wrapper for the Sqlite database C application programming interface. The code works for linux/unix, as well as win32. This library supports version 3 of the sqlite database. From version 1.2 the connection pool can be made threadsafe.} categories {databases devel} version 1.3.1 revision 0 tcl-sqlite3 678 @@ -11925,11 +11925,11 @@ mediawiki 776 variants {mysql4 postgresql83 postgresql84 mysql postgresql} portdir www/mediawiki description {The wiki engine used by Wikipedia} homepage http://www.mediawiki.org epoch 0 depends_run {port:libiconv port:jpeg port:jasper port:tiff port:lcms port:libpng port:freetype port:libxml2 port:jbigkit port:expat port:fontconfig port:ghostscript port:ImageMagick port:pkgconfig port:aspell port:php5-web port:php5-mysql} platforms {darwin freebsd} name mediawiki long_description {MediaWiki is the collaborative editing software that runs Wikipedia, the free encyclopedia, and other projects. It's designed to handle a large number of users and pages without imposing too rigid a structure or workflow.} maintainers {blb openmaintainer} categories {www php} version 1.15.1 revision 2 midgard-apache2 397 -variants universal portdir www/midgard-apache2 description {A content management system} homepage http://www.midgard-project.org/ epoch 0 platforms darwin name midgard-apache2 depends_lib {port:midgard-core port:apache2 port:apr port:apr-util} long_description {Midgard is a content management system platform using Apache, PHP and MySQL.} maintainers jwa categories www version 8.09.6 revision 0 -midgard-core 508 -variants {check dbus universal} portdir www/midgard-core description {A content management system} homepage http://www.midgard-project.org/ epoch 0 platforms darwin name midgard-core depends_lib {port:expat port:gettext path:lib/pkgconfig/glib-2.0.pc:glib2 port:dbus-glib port:libiconv port:libxml2 path:bin/mysql_config5:mysql5 port:openssl port:zlib} long_description {Midgard is a content management system platform using Apache, PHP and MySQL.} maintainers jwa categories www version 8.09.6.1 revision 0 +variants universal portdir www/midgard-apache2 description {A content management system} homepage http://www.midgard-project.org/ epoch 0 platforms darwin name midgard-apache2 depends_lib {port:midgard-core port:apache2 port:apr port:apr-util} long_description {Midgard is a content management system platform using Apache, PHP and MySQL.} maintainers jwa categories www version 8.09.7 revision 0 +midgard-core 506 +variants {check dbus universal} portdir www/midgard-core description {A content management system} homepage http://www.midgard-project.org/ epoch 0 platforms darwin name midgard-core depends_lib {port:expat port:gettext path:lib/pkgconfig/glib-2.0.pc:glib2 port:dbus-glib port:libiconv port:libxml2 path:bin/mysql_config5:mysql5 port:openssl port:zlib} long_description {Midgard is a content management system platform using Apache, PHP and MySQL.} maintainers jwa categories www version 8.09.7 revision 0 midgard-data 423 -variants universal portdir www/midgard-data description {A content management system} homepage http://www.midgard-project.org/ epoch 0 platforms darwin name midgard-data depends_lib {port:midgard-core port:midgard-apache2 port:php5-midgard port:dialog port:ImageMagick} long_description {Midgard is a content management system platform using Apache, PHP and MySQL.} maintainers jwa categories www version 8.09.6 revision 0 +variants universal portdir www/midgard-data description {A content management system} homepage http://www.midgard-project.org/ epoch 0 platforms darwin name midgard-data depends_lib {port:midgard-core port:midgard-apache2 port:php5-midgard port:dialog port:ImageMagick} long_description {Midgard is a content management system platform using Apache, PHP and MySQL.} maintainers jwa categories www version 8.09.7 revision 0 midori 441 variants universal portdir www/midori description {Midori is a lightweight web browser} homepage http://www.twotoasts.de/index.php?/pages/midori_summary.html epoch 0 platforms darwin name midori depends_lib {port:gtk2 path:include/gio/gio.h:glib2 port:webkit-gtk lib:libxml2:libxml2 port:libtool port:intltool} maintainers {afb openmaintainer} long_description {{Midori is a lightweight web browser}} categories www version 0.1.2 revision 1 mnogosearch 731 @@ -11995,7 +11995,7 @@ pathalizer 582 variants universal portdir www/pathalizer description {visualize the paths most users take when browsing a website} homepage http://pathalizer.sourceforge.net/ epoch 0 depends_run {bin:gs:ghostscript bin:dot:graphviz port:netpbm} platforms darwin name pathalizer long_description {Pathalizer is a tool to visualize the paths most users take when browsing a website. This information can then be used to decide how to improve the navigation of the site, and which parts are most worth improving and keeping up to date.} maintainers nomaintainer categories www version 0.7 revision 0 php5-midgard 366 -variants universal portdir www/php5-midgard description {A content management system} homepage http://www.midgard-project.org/ epoch 0 platforms darwin name php5-midgard depends_lib {port:midgard-core port:php52} long_description {Midgard is a content management system platform using Apache, PHP and MySQL.} maintainers jwa categories www version 8.09.6 revision 0 +variants universal portdir www/php5-midgard description {A content management system} homepage http://www.midgard-project.org/ epoch 0 platforms darwin name php5-midgard depends_lib {port:midgard-core port:php52} long_description {Midgard is a content management system platform using Apache, PHP and MySQL.} maintainers jwa categories www version 8.09.7 revision 0 phpbb 746 variants {mysql postgresql} portdir www/phpbb description {A PHP-based bulletin board / discussion forum system} homepage http://www.phpbb.com epoch 0 depends_run {port:php5-web port:php5-ftp port:php5-imagick port:php5-gd} platforms {darwin freebsd} name phpbb long_description {phpBB is a high powered, fully scalable, and highly customisable open-source bulletin board package. phpBB has a user-friendly interface, simple and straightforward administration panel, and helpful FAQ. Based on the powerful PHP server language and your choice of MySQL, MS-SQL, PostgreSQL or Access/ODBC database servers, phpBB is the ideal free community solution for all web sites.} maintainers {snc openmaintainer} categories {www php} version 3.0.5 revision 0 phpicalendar 332 Modified: trunk/dports/PortIndex.quick =================================================================== (Binary files differ) -------------- next part -------------- An HTML attachment was scrubbed... URL: From mww at macports.org Sat Jan 9 04:13:48 2010 From: mww at macports.org (mww at macports.org) Date: Sat, 9 Jan 2010 04:13:48 -0800 (PST) Subject: [62498] trunk/dports/lang/gcc45/Portfile Message-ID: <20100109121349.098CD3B38F76@beta.macosforge.org> Revision: 62498 http://trac.macports.org/changeset/62498 Author: mww at macports.org Date: 2010-01-09 04:13:43 -0800 (Sat, 09 Jan 2010) Log Message: ----------- version 4.5-20100107 Modified Paths: -------------- trunk/dports/lang/gcc45/Portfile Modified: trunk/dports/lang/gcc45/Portfile =================================================================== --- trunk/dports/lang/gcc45/Portfile 2010-01-09 10:54:38 UTC (rev 62497) +++ trunk/dports/lang/gcc45/Portfile 2010-01-09 12:13:43 UTC (rev 62498) @@ -3,7 +3,7 @@ PortSystem 1.0 name gcc45 -version 4.5-20091231 +version 4.5-20100107 platforms darwin categories lang maintainers mww @@ -26,26 +26,26 @@ set dobjc gcc-objc-${version}.tar.bz2 distfiles ${dcore} ${dfort} ${dcxx} ${djava} ${dobjc} -checksums gcc-core-4.5-20091231.tar.bz2 \ - md5 36fcb32d8e74e75f02ac2f6ddee49028 \ - sha1 de145f4db426bfe40207aeb5f2680ae250897300 \ - rmd160 6d413d1ce7fd3c9ad7c829f2ea617c60e2128655 \ - gcc-fortran-4.5-20091231.tar.bz2 \ - md5 40a4e11aeff070b6352a042f9ced7f37 \ - sha1 d9963a90adf0683177dbe906980508978158b7b7 \ - rmd160 e2916a22f8136e8e38ea2697b2018cbc1054eb7b \ - gcc-g++-4.5-20091231.tar.bz2 \ - md5 b0c94667fd54d7098179fc2fe6292b1d \ - sha1 82b17ee4c519c535f79f21b69b087b6982b629cb \ - rmd160 b99a9f9c952d3068cfb25ec77b57899024f7a184 \ - gcc-java-4.5-20091231.tar.bz2 \ - md5 6431bda539b2d78783fa596eacf9c11f \ - sha1 3875e6e615e7a7fc81178402b097298ea2e200d2 \ - rmd160 f2ec042ef49e4323d25d3f5d8942b8d06810199c \ - gcc-objc-4.5-20091231.tar.bz2 \ - md5 6df42682b956ed4745f0d077df01ccfb \ - sha1 6a76636b65650411abe2be16acc756a5a63fce49 \ - rmd160 fb5d104144e516c67e28c16fbd9939458fa5d53a +checksums gcc-core-4.5-20100107.tar.bz2 \ + md5 c6049a2655ed9ad5f01fe4c1be305077 \ + sha1 cb69c7d81ae731a6ba75210c504948568025c554 \ + rmd160 0be358b60ecde0589c46171133dafc24dbfc7ed2 \ + gcc-fortran-4.5-20100107.tar.bz2 \ + md5 ddc003762430b4e8b3a8565ba490c15d \ + sha1 8868ec87dd01dd677e27fee5198fc76952712c48 \ + rmd160 d554cf58861797202c35abdbe2845e993f7a1962 \ + gcc-g++-4.5-20100107.tar.bz2 \ + md5 e5f8a42b8d8bf3303d80e8dbbf1a2b08 \ + sha1 5633ec441adeb12c507772cc6f883c7f9b384da0 \ + rmd160 17da24037503553cfa23b96f605732c11cb1b93e \ + gcc-java-4.5-20100107.tar.bz2 \ + md5 e0ae5b412607e12b2bd3d60e4427de58 \ + sha1 21cec84efe3b37d78b2c7e52f0df915b872dc96e \ + rmd160 8783ea8bd0b526eb243511e6d530a79eb5347e02 \ + gcc-objc-4.5-20100107.tar.bz2 \ + md5 c5c1b1175b2fe58aa45e28237d1e4b54 \ + sha1 29da1e6cd283e1fb39c6440c1a9d273409964cf8 \ + rmd160 5ffb0dd411cd0e0d61f7a0825704a9bf0ef48323 use_bzip2 yes -------------- next part -------------- An HTML attachment was scrubbed... URL: From stromnov at macports.org Sat Jan 9 04:17:47 2010 From: stromnov at macports.org (stromnov at macports.org) Date: Sat, 9 Jan 2010 04:17:47 -0800 (PST) Subject: [62499] trunk/dports/python/py26-networkx/Portfile Message-ID: <20100109121747.A0FA53B3919C@beta.macosforge.org> Revision: 62499 http://trac.macports.org/changeset/62499 Author: stromnov at macports.org Date: 2010-01-09 04:17:45 -0800 (Sat, 09 Jan 2010) Log Message: ----------- py26-networkx: Update to 1.0 Modified Paths: -------------- trunk/dports/python/py26-networkx/Portfile Modified: trunk/dports/python/py26-networkx/Portfile =================================================================== --- trunk/dports/python/py26-networkx/Portfile 2010-01-09 12:13:43 UTC (rev 62498) +++ trunk/dports/python/py26-networkx/Portfile 2010-01-09 12:17:45 UTC (rev 62499) @@ -4,7 +4,7 @@ PortGroup python26 1.0 name py26-networkx -version 1.0rc1 +version 1.0 categories-append science maintainers singingwolfboy openmaintainer description NetworkX in a Python package for graph manpulation. @@ -19,9 +19,9 @@ https://networkx.lanl.gov/download/networkx/ distname networkx-${version} -checksums md5 176cf1213bdc6ebe615dc726ebb639c4 \ - sha1 6f9a951a4f88c12075daa497386c3a62c8a2582f \ - rmd160 5ba7cd1b4ddb1b9ee0453f56a1f0322f777872fa +checksums md5 42a2b8579593feb2d38581c547bc43c2 \ + sha1 8d4b4f23e5d862cc200a14cb3ef746b69465e119 \ + rmd160 82955436187f35c50f927c408ad4190a77ffde1c depends_lib-append port:py26-setuptools -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Sat Jan 9 04:54:47 2010 From: portindex at macports.org (portindex at macports.org) Date: Sat, 9 Jan 2010 04:54:47 -0800 (PST) Subject: [62500] trunk/dports Message-ID: <20100109125457.B6DF73B402D0@beta.macosforge.org> Revision: 62500 http://trac.macports.org/changeset/62500 Author: portindex at macports.org Date: 2010-01-09 04:54:41 -0800 (Sat, 09 Jan 2010) Log Message: ----------- Total number of ports parsed: 6481 Ports successfully parsed: 6481 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex trunk/dports/PortIndex.quick Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-09 12:17:45 UTC (rev 62499) +++ trunk/dports/PortIndex 2010-01-09 12:54:41 UTC (rev 62500) @@ -4379,7 +4379,7 @@ gcc44 388 variants {powerpc odcctools} portdir lang/gcc44 description {The GNU compiler collection} homepage http://gcc.gnu.org/ epoch 1 platforms darwin name gcc44 depends_lib {port:gmp port:mpfr port:libiconv} long_description {The GNU compiler collection, including front ends for C, C++, Objective-C, Objective-C++, Java and Fortran95.} maintainers mww categories lang version 4.4.2 revision 0 gcc45 506 -variants {powerpc gfortran java} portdir lang/gcc45 description {The GNU compiler collection, prerelease BETA} homepage http://gcc.gnu.org/ epoch 0 platforms darwin name gcc45 depends_lib {port:gmp port:mpfr port:libiconv port:libmpc} long_description {The GNU compiler collection, including front ends for C, C++, Objective-C and Objective-C++. This is a prerelease BETA version and does not have all available language front ends enabled.} maintainers mww categories lang version 4.5-20091231 revision 0 +variants {powerpc gfortran java} portdir lang/gcc45 description {The GNU compiler collection, prerelease BETA} homepage http://gcc.gnu.org/ epoch 0 platforms darwin name gcc45 depends_lib {port:gmp port:mpfr port:libiconv port:libmpc} long_description {The GNU compiler collection, including front ends for C, C++, Objective-C and Objective-C++. This is a prerelease BETA version and does not have all available language front ends enabled.} maintainers mww categories lang version 4.5-20100107 revision 0 gccxml 351 variants universal depends_build port:cmake portdir lang/gccxml description {generates XML description of C++ code} homepage http://www.gccxml.org/ epoch 0 platforms darwin name gccxml long_description {generates an XML description of a C++ program from GCC's internal representation} maintainers nomaintainer categories lang version 0.6.0 revision 0 gccxml-devel 410 @@ -9478,8 +9478,8 @@ portdir python/py26-mx-base description {eGenix.com mx Extensions for Python - base package} homepage http://www.egenix.com/products/python/mxBase/ epoch 0 platforms darwin depends_lib port:python26 name py26-mx-base maintainers {blb openmaintainer} long_description {Collection of Python software tools which enhance Python's usability in many important areas such as ODBC database connectivity, fast text processing, date/time processing and web site programming.} version 3.1.3 categories python revision 0 py26-mysql 454 variants {mysql4 mysql5} portdir python/py26-mysql description {Python interface to mysql} homepage http://sourceforge.net/projects/mysql-python/ epoch 0 platforms darwin depends_lib {port:python26 port:py26-setuptools path:bin/mysql_config5:mysql5} name py26-mysql long_description {A package containing a Python module that allows you to connect to MySQL databases} maintainers nomaintainer version 1.2.2 categories {python devel databases} revision 0 -py26-networkx 474 -portdir python/py26-networkx description {NetworkX in a Python package for graph manpulation.} homepage http://networkx.lanl.gov/ epoch 0 platforms darwin depends_lib {port:python26 port:py26-setuptools} name py26-networkx maintainers {singingwolfboy openmaintainer} long_description {NetworkX is a Python package for the creation, manipulation, and study of the structure, dynamics, and functions of complex networks.} version 1.0rc1 categories {python science} revision 0 +py26-networkx 471 +portdir python/py26-networkx description {NetworkX in a Python package for graph manpulation.} homepage http://networkx.lanl.gov/ epoch 0 platforms darwin depends_lib {port:python26 port:py26-setuptools} name py26-networkx maintainers {singingwolfboy openmaintainer} long_description {NetworkX is a Python package for the creation, manipulation, and study of the structure, dynamics, and functions of complex networks.} version 1.0 categories {python science} revision 0 py26-nltk 390 portdir python/py26-nltk description {Natural Language Toolkit} homepage http://www.nltk.org/ epoch 0 platforms darwin depends_lib {port:py26-numpy port:py26-matplotlib port:py26-yaml} name py26-nltk maintainers gmail.com:stevenbird1 long_description {NLTK is Python modules for research and development in natural language processing} version 2.0b5 categories {python textproc} revision 0 py26-nose 615 Modified: trunk/dports/PortIndex.quick =================================================================== (Binary files differ) -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremyhu at macports.org Sat Jan 9 05:15:16 2010 From: jeremyhu at macports.org (jeremyhu at macports.org) Date: Sat, 9 Jan 2010 05:15:16 -0800 (PST) Subject: [62501] trunk/dports/x11/xorg-glproto/Portfile Message-ID: <20100109131518.034EA3B426F1@beta.macosforge.org> Revision: 62501 http://trac.macports.org/changeset/62501 Author: jeremyhu at macports.org Date: 2010-01-09 05:15:11 -0800 (Sat, 09 Jan 2010) Log Message: ----------- xorg-glproto: Bump to 1.4.11 Modified Paths: -------------- trunk/dports/x11/xorg-glproto/Portfile Modified: trunk/dports/x11/xorg-glproto/Portfile =================================================================== --- trunk/dports/x11/xorg-glproto/Portfile 2010-01-09 12:54:41 UTC (rev 62500) +++ trunk/dports/x11/xorg-glproto/Portfile 2010-01-09 13:15:11 UTC (rev 62501) @@ -2,7 +2,7 @@ PortSystem 1.0 name xorg-glproto -version 1.4.10 +version 1.4.11 categories x11 devel maintainers jeremyhu openmaintainer description X.org glproto @@ -12,9 +12,9 @@ master_sites http://xorg.freedesktop.org/archive/individual/proto/ distname glproto-${version} -checksums md5 c9f8cebfba72bfab674bc0170551fb8d \ - sha1 30d312863288316da26aa33bfd7d0b303c8b0851 \ - rmd160 8d5cffe095f3cc07c549d550c4fb0bf996afcc09 +checksums md5 78e7c4dc7dcb74b1869fee7897e00f59 \ + sha1 7c2a723d488dc0e09e7e0e28bde838502d774b16 \ + rmd160 718d99815c26d5b810ecf61bd6e67e8f49306ade use_bzip2 yes universal_variant no -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremyhu at macports.org Sat Jan 9 05:16:05 2010 From: jeremyhu at macports.org (jeremyhu at macports.org) Date: Sat, 9 Jan 2010 05:16:05 -0800 (PST) Subject: [62502] trunk/dports/x11/xorg-dri2proto/Portfile Message-ID: <20100109131605.F36AA3B427F2@beta.macosforge.org> Revision: 62502 http://trac.macports.org/changeset/62502 Author: jeremyhu at macports.org Date: 2010-01-09 05:16:03 -0800 (Sat, 09 Jan 2010) Log Message: ----------- xorg-dri2proto: Bump to 2.2 Modified Paths: -------------- trunk/dports/x11/xorg-dri2proto/Portfile Modified: trunk/dports/x11/xorg-dri2proto/Portfile =================================================================== --- trunk/dports/x11/xorg-dri2proto/Portfile 2010-01-09 13:15:11 UTC (rev 62501) +++ trunk/dports/x11/xorg-dri2proto/Portfile 2010-01-09 13:16:03 UTC (rev 62502) @@ -2,7 +2,7 @@ PortSystem 1.0 name xorg-dri2proto -version 2.1 +version 2.2 categories x11 devel maintainers jeremyhu openmaintainer description X.org dri2proto @@ -14,9 +14,9 @@ use_bzip2 yes universal_variant no -checksums md5 5cb7987d29db068153bdc8f23c767c43 \ - sha1 1ba917531ff035287549d576097d7028bd3d037f \ - rmd160 deb31d24fe8cd2be48c1c7640383b1b99a0015b5 +checksums md5 3ca8ddb42cd4ee31b8690031303221af \ + sha1 21e9c0c7e0be5fe971f51589d0573b0273202b7f \ + rmd160 ce967518422fcf328472d4430aa3f2d2e29ec9ae livecheck.type regex livecheck.url [lindex ${master_sites} 0]?C=M&O=D -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremyhu at macports.org Sat Jan 9 05:18:16 2010 From: jeremyhu at macports.org (jeremyhu at macports.org) Date: Sat, 9 Jan 2010 05:18:16 -0800 (PST) Subject: [62503] trunk/dports/x11/xterm/Portfile Message-ID: <20100109131817.F2FED3B42B0B@beta.macosforge.org> Revision: 62503 http://trac.macports.org/changeset/62503 Author: jeremyhu at macports.org Date: 2010-01-09 05:18:13 -0800 (Sat, 09 Jan 2010) Log Message: ----------- xterm: Bump to 254 Modified Paths: -------------- trunk/dports/x11/xterm/Portfile Modified: trunk/dports/x11/xterm/Portfile =================================================================== --- trunk/dports/x11/xterm/Portfile 2010-01-09 13:16:03 UTC (rev 62502) +++ trunk/dports/x11/xterm/Portfile 2010-01-09 13:18:13 UTC (rev 62503) @@ -3,7 +3,7 @@ PortSystem 1.0 name xterm -version 253 +version 254 categories x11 platforms darwin maintainers jeremyhu openmaintainer @@ -14,9 +14,9 @@ homepage http://invisible-island.net/xterm/ master_sites ftp://invisible-island.net/xterm/ -checksums md5 363cc4865b7691bd0ae5eebb42cde9c9 \ - sha1 4234376b43a0c60f2516df0c0abe26037671d50f \ - rmd160 5a932da7e8d5b578aa012a906fd9c08608287fb6 +checksums md5 933bff842e173ecab1e8d668d22711f4 \ + sha1 934811737745b76ca75bf940feb975943bf1084d \ + rmd160 3c4331e7e2754e76adaa12a4e7160f41b89747ec extract.suffix .tgz depends_build \ -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremyhu at macports.org Sat Jan 9 05:22:51 2010 From: jeremyhu at macports.org (jeremyhu at macports.org) Date: Sat, 9 Jan 2010 05:22:51 -0800 (PST) Subject: [62504] trunk/dports/x11/xorg-server/Portfile Message-ID: <20100109132253.11CE63B43418@beta.macosforge.org> Revision: 62504 http://trac.macports.org/changeset/62504 Author: jeremyhu at macports.org Date: 2010-01-09 05:22:48 -0800 (Sat, 09 Jan 2010) Log Message: ----------- xorg-server: Bump to 1.7.4 Modified Paths: -------------- trunk/dports/x11/xorg-server/Portfile Modified: trunk/dports/x11/xorg-server/Portfile =================================================================== --- trunk/dports/x11/xorg-server/Portfile 2010-01-09 13:18:13 UTC (rev 62503) +++ trunk/dports/x11/xorg-server/Portfile 2010-01-09 13:22:48 UTC (rev 62504) @@ -3,7 +3,7 @@ PortSystem 1.0 name xorg-server -version 1.7.2 +version 1.7.4 categories x11 devel maintainers jeremyhu openmaintainer description The X.org / Xquartz X server. @@ -14,9 +14,9 @@ #master_sites http://xquartz.macosforge.org/downloads/src master_sites http://xorg.freedesktop.org/archive/individual/xserver/ -checksums md5 5c087e0f555203065fd90d02ef5f736e \ - sha1 b436d4b40d25c2d3dd638a96bb2cc7ae8b4e2648 \ - rmd160 891df1071dee55a51a02269aa68098b5d00f0160 +checksums md5 75d27c3a1c12293f620a2d6518fcbdfa \ + sha1 26de24d7ced735bd717a21c5110d22d662221a58 \ + rmd160 fe65b14831bda0dd8423df2ffbb3634e0f15bce6 use_bzip2 yes use_parallel_build yes @@ -69,6 +69,8 @@ # GL/internal/dri_interface.h is missing in prefix (provided by libdrm for the xorg DDX... not helpful for us) configure.cppflags-append -I/usr/include -I${filespath}/dri +build.args V=1 + post-destroot { ln -s Xquartz ${destroot}${prefix}/bin/X } -------------- next part -------------- An HTML attachment was scrubbed... URL: From ram at macports.org Sat Jan 9 05:40:37 2010 From: ram at macports.org (ram at macports.org) Date: Sat, 9 Jan 2010 05:40:37 -0800 (PST) Subject: [62505] trunk/dports/science/cfitsio Message-ID: <20100109134040.E98D73B444B8@beta.macosforge.org> Revision: 62505 http://trac.macports.org/changeset/62505 Author: ram at macports.org Date: 2010-01-09 05:40:29 -0800 (Sat, 09 Jan 2010) Log Message: ----------- science/cfitsio: update to 3.230 Modified Paths: -------------- trunk/dports/science/cfitsio/Portfile trunk/dports/science/cfitsio/files/patch-configure.diff Modified: trunk/dports/science/cfitsio/Portfile =================================================================== --- trunk/dports/science/cfitsio/Portfile 2010-01-09 13:22:48 UTC (rev 62504) +++ trunk/dports/science/cfitsio/Portfile 2010-01-09 13:40:29 UTC (rev 62505) @@ -3,7 +3,7 @@ PortSystem 1.0 name cfitsio -version 3.210 +version 3.230 categories science platforms darwin maintainers ram openmaintainer @@ -25,9 +25,9 @@ worksrcdir ${name} #dist_subdir ${name}/${version} -checksums md5 30f7e968983f6f46162f12368b68c42a \ - sha1 d815840e32a4667547cef09bf5874520f06472c4 \ - rmd160 d9d0654e6ab05b6fa5857dc0d020500a8ee27fe5 +checksums md5 e494b826dba1ea80d8f79efb04fe1215 \ + sha1 8e95d06359c68d28cb58ff926e2112f6b43a33b5 \ + rmd160 118856f346ef757f0ed2bf7de112bf75773565a3 patchfiles patch-configure.diff Modified: trunk/dports/science/cfitsio/files/patch-configure.diff =================================================================== --- trunk/dports/science/cfitsio/files/patch-configure.diff 2010-01-09 13:22:48 UTC (rev 62504) +++ trunk/dports/science/cfitsio/files/patch-configure.diff 2010-01-09 13:40:29 UTC (rev 62505) @@ -1,6 +1,6 @@ ---- configure.orig 2009-09-03 15:33:59.000000000 -0500 -+++ configure 2009-12-01 09:49:05.000000000 -0600 -@@ -4001,7 +4001,7 @@ +--- configure 2010-01-08 12:03:29.000000000 -0600 ++++ configure 2010-01-09 07:36:07.000000000 -0600 +@@ -3998,7 +3998,7 @@ case $GCC in yes) @@ -9,7 +9,7 @@ echo "cfitsio: == Using gcc version $GCCVERSION" -@@ -4052,7 +4052,7 @@ +@@ -4049,7 +4049,7 @@ SHLIB_SUFFIX=".dll" ;; darwin) -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Sat Jan 9 05:54:41 2010 From: portindex at macports.org (portindex at macports.org) Date: Sat, 9 Jan 2010 05:54:41 -0800 (PST) Subject: [62506] trunk/dports/PortIndex Message-ID: <20100109135444.414B43B44CE5@beta.macosforge.org> Revision: 62506 http://trac.macports.org/changeset/62506 Author: portindex at macports.org Date: 2010-01-09 05:54:38 -0800 (Sat, 09 Jan 2010) Log Message: ----------- Total number of ports parsed: 6481 Ports successfully parsed: 6481 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-09 13:40:29 UTC (rev 62505) +++ trunk/dports/PortIndex 2010-01-09 13:54:38 UTC (rev 62506) @@ -10265,7 +10265,7 @@ cdo 508 variants {netcdf4 universal} portdir science/cdo description {Climate Data Operators} homepage http://www.mpimet.mpg.de/fileadmin/software/cdo/ epoch 0 platforms darwin name cdo depends_lib {port:netcdf port:grib_api port:proj} long_description {CDO is a collection of command line Operators to manipulate and analyse Climate Data files. Supported file formats are GRIB, netCDF, SERVICE and EXTRA. There are more than 200 operators available.} maintainers takeshi categories science version 1.4.1 revision 0 cfitsio 839 -variants {gcc42 gcc43 gcc44 g95 g77 universal} portdir science/cfitsio description {C access to FITS data files with optional Fortran wrappers} homepage http://heasarc.gsfc.nasa.gov/fitsio/ epoch 0 platforms darwin name cfitsio long_description {CFITSIO is a library of C and Fortran subroutines for reading and writing data files in FITS (Flexible Image Transport System) data format. CFITSIO simplifies the task of writing software that deals with FITS files by providing an easy to use set of high-level routines that insulate the programmer from the internal complexities of the FITS file format. At the same time, CFITSIO provides many advanced features that have made it the most widely used FITS file programming interface in the astronomical community.} maintainers {ram openmaintainer} categories science version 3.210 revision 0 +variants {gcc42 gcc43 gcc44 g95 g77 universal} portdir science/cfitsio description {C access to FITS data files with optional Fortran wrappers} homepage http://heasarc.gsfc.nasa.gov/fitsio/ epoch 0 platforms darwin name cfitsio long_description {CFITSIO is a library of C and Fortran subroutines for reading and writing data files in FITS (Flexible Image Transport System) data format. CFITSIO simplifies the task of writing software that deals with FITS files by providing an easy to use set of high-level routines that insulate the programmer from the internal complexities of the FITS file format. At the same time, CFITSIO provides many advanced features that have made it the most widely used FITS file programming interface in the astronomical community.} maintainers {ram openmaintainer} categories science version 3.230 revision 0 cgnslib 671 variants universal portdir science/cgnslib description {Computational fluid dynamics data container.} homepage http://cgns.sourceforge.net/ epoch 0 platforms darwin name cgnslib long_description {The CFD General Notation System (CGNS) provides a general, portable, and extensible standard for the storage and retrieval of computational fluid dynamics (CFD) analysis data. It consists of a collection of conventions, and free and open software implementing those conventions. It is self-descriptive, machine-independent, well-documented, and administered by an international steering committee.} maintainers cerfacs.fr:dechaume categories science version 2.5.4 revision 1 chemtool 446 @@ -12619,7 +12619,7 @@ xorg-dmxproto 261 portdir x11/xorg-dmxproto description {X.org dmxproto} homepage http://www.x.org epoch 0 platforms darwin name xorg-dmxproto maintainers {jeremyhu openmaintainer} long_description {X.org DMXProto protocol headers.} version 2.3 categories {x11 devel} revision 0 xorg-dri2proto 258 -portdir x11/xorg-dri2proto description {X.org dri2proto} homepage http://www.x.org epoch 0 platforms darwin name xorg-dri2proto maintainers {jeremyhu openmaintainer} long_description {Prototype headers for DRI2} version 2.1 categories {x11 devel} revision 0 +portdir x11/xorg-dri2proto description {X.org dri2proto} homepage http://www.x.org epoch 0 platforms darwin name xorg-dri2proto maintainers {jeremyhu openmaintainer} long_description {Prototype headers for DRI2} version 2.2 categories {x11 devel} revision 0 xorg-encodings 327 variants universal depends_build {port:mkfontscale bin:gzip:gzip} portdir x11/xorg-encodings description {X.org font encodings} homepage http://www.x.org/ epoch 0 platforms darwin name xorg-encodings long_description {{X.org font encodings}} maintainers nomaintainer categories {x11 x11-font graphics} version 1.0.3 revision 0 xorg-evieproto 281 @@ -12635,7 +12635,7 @@ xorg-fontsproto 280 portdir x11/xorg-fontsproto description {X.org fontsproto} homepage http://www.x.org epoch 0 platforms darwin name xorg-fontsproto maintainers {jeremyhu openmaintainer} long_description {Font-related prototype header files for X11} version 2.1.0 categories {x11 devel} revision 0 xorg-glproto 275 -portdir x11/xorg-glproto description {X.org glproto} homepage http://www.x.org epoch 0 platforms darwin name xorg-glproto maintainers {jeremyhu openmaintainer} long_description {Prototype headers for the GLX extension to X11} version 1.4.10 categories {x11 devel} revision 0 +portdir x11/xorg-glproto description {X.org glproto} homepage http://www.x.org epoch 0 platforms darwin name xorg-glproto maintainers {jeremyhu openmaintainer} long_description {Prototype headers for the GLX extension to X11} version 1.4.11 categories {x11 devel} revision 0 xorg-inputproto 284 portdir x11/xorg-inputproto description {X.org inputproto} homepage http://www.x.org epoch 0 platforms darwin name xorg-inputproto maintainers {jeremyhu openmaintainer} long_description {Prototype headers for the XInput extension to X11} version 2.0 categories {x11 devel} revision 0 xorg-kbproto 270 @@ -12733,7 +12733,7 @@ xorg-scrnsaverproto 305 portdir x11/xorg-scrnsaverproto description {X.org scrnsaverproto} homepage http://www.x.org epoch 0 platforms darwin name xorg-scrnsaverproto maintainers {jeremyhu openmaintainer} long_description {Prototype headers for the XScreenSaver extension to X11.} version 1.2.0 categories {x11 devel} revision 0 xorg-server 1043 -variants {macosx universal} depends_build {port:pkgconfig port:mesa port:xorg-applewmproto port:xorg-damageproto port:xorg-fixesproto port:xorg-fontsproto port:xorg-glproto port:xorg-inputproto port:xorg-randrproto port:xorg-recordproto port:xorg-renderproto port:xorg-resourceproto port:xorg-scrnsaverproto port:xorg-videoproto port:xorg-xcmiscproto port:xorg-xproto port:xorg-xextproto port:xorg-xineramaproto port:xorg-xtrans port:autoconf port:automake port:libtool port:xorg-util-macros} portdir x11/xorg-server description {The X.org / Xquartz X server.} homepage http://www.x.org depends_run {port:xinit port:xorg-fonts port:xkeyboard-config} epoch 0 platforms {darwin macosx} depends_lib {path:lib/pkgconfig/pixman-1.pc:libpixman port:xorg-libxkbfile port:xorg-libXfont port:xorg-libXt port:xorg-libAppleWM port:xorg-libXfixes port:openssl} name xorg-server long_description {The X.org X server allows you to run X11 applications on your computer.} maintainers {jeremyhu openmaintainer} categories {x11 devel} version 1.7.2 revision 0 +variants {macosx universal} depends_build {port:pkgconfig port:mesa port:xorg-applewmproto port:xorg-damageproto port:xorg-fixesproto port:xorg-fontsproto port:xorg-glproto port:xorg-inputproto port:xorg-randrproto port:xorg-recordproto port:xorg-renderproto port:xorg-resourceproto port:xorg-scrnsaverproto port:xorg-videoproto port:xorg-xcmiscproto port:xorg-xproto port:xorg-xextproto port:xorg-xineramaproto port:xorg-xtrans port:autoconf port:automake port:libtool port:xorg-util-macros} portdir x11/xorg-server description {The X.org / Xquartz X server.} homepage http://www.x.org depends_run {port:xinit port:xorg-fonts port:xkeyboard-config} epoch 0 platforms {darwin macosx} depends_lib {path:lib/pkgconfig/pixman-1.pc:libpixman port:xorg-libxkbfile port:xorg-libXfont port:xorg-libXt port:xorg-libAppleWM port:xorg-libXfixes port:openssl} name xorg-server long_description {The X.org X server allows you to run X11 applications on your computer.} maintainers {jeremyhu openmaintainer} categories {x11 devel} version 1.7.4 revision 0 xorg-server-devel 1058 variants {macosx universal} depends_build {port:pkgconfig port:mesa port:xorg-applewmproto port:xorg-damageproto port:xorg-fixesproto port:xorg-fontsproto port:xorg-glproto port:xorg-inputproto port:xorg-randrproto port:xorg-recordproto port:xorg-renderproto port:xorg-resourceproto port:xorg-scrnsaverproto port:xorg-videoproto port:xorg-xcmiscproto port:xorg-xproto port:xorg-xextproto port:xorg-xineramaproto port:xorg-xtrans port:autoconf port:automake port:libtool port:xorg-util-macros port:doxygen} portdir x11/xorg-server-devel description {The X.org / Xquartz X server.} homepage http://www.x.org depends_run {port:xinit port:xorg-fonts port:xkeyboard-config} epoch 0 platforms {darwin macosx} depends_lib {path:lib/pkgconfig/pixman-1.pc:libpixman port:xorg-libxkbfile port:xorg-libXfont port:xorg-libXt port:xorg-libAppleWM port:xorg-libXfixes} name xorg-server-devel long_description {The X.org X server allows you to run X11 applications on your computer.} maintainers {jeremyhu openmaintainer} categories {x11 devel} version 1.7.99.2 revision 0 xorg-trapproto 282 @@ -12817,7 +12817,7 @@ xteddy 385 portdir x11/xteddy description {A cuddlesome teddy for the X desktop} homepage http://www.itn.liu.se/~stegu/xteddy/ epoch 0 platforms darwin name xteddy depends_lib {port:xorg-libsm port:imlib port:zlib} maintainers nomaintainer long_description {This is _the_ toy for the X desktop, a must for all plush lovers: a very, very cuddlesome teddy.} categories x11 version 2.0.2 revision 1 xterm 556 -variants {utmp darwin_8 universal} depends_build port:xorg-xproto portdir x11/xterm description {the ubiquitous X terminal emulator, stand-alone} homepage http://invisible-island.net/xterm/ depends_run bin:luit:luit epoch 0 platforms darwin depends_lib {port:ncurses port:expat port:zlib port:xorg-libXaw port:Xft2} name xterm long_description {The xterm program is a terminal emulator for the X Window System. It supports a plethora of features, including colors, Unicode, etc.} maintainers {jeremyhu openmaintainer} categories x11 version 253 revision 0 +variants {utmp darwin_8 universal} depends_build port:xorg-xproto portdir x11/xterm description {the ubiquitous X terminal emulator, stand-alone} homepage http://invisible-island.net/xterm/ depends_run bin:luit:luit epoch 0 platforms darwin depends_lib {port:ncurses port:expat port:zlib port:xorg-libXaw port:Xft2} name xterm long_description {The xterm program is a terminal emulator for the X Window System. It supports a plethora of features, including colors, Unicode, etc.} maintainers {jeremyhu openmaintainer} categories x11 version 254 revision 0 xtide 565 variants universal portdir x11/xtide description {Tide prediction software, with a large database of locations.} homepage http://www.flaterco.com/xtide epoch 0 platforms darwin name xtide depends_lib port:libpng long_description {XTide is a package that provides tide and current predictions in a wide variety of formats. Graphs, text listings, and calendars can be generated, or a tide clock can be provided on your desktop. For x11, plain command line, and as an http server.} maintainers {jberry openmaintainer} categories {x11 science} version 2.8.3 revision 1 xtrap 459 -------------- next part -------------- An HTML attachment was scrubbed... URL: From stromnov at macports.org Sat Jan 9 08:33:53 2010 From: stromnov at macports.org (stromnov at macports.org) Date: Sat, 9 Jan 2010 08:33:53 -0800 (PST) Subject: [62507] trunk/dports/python/py26-numpy Message-ID: <20100109163353.D8DE83B4CC72@beta.macosforge.org> Revision: 62507 http://trac.macports.org/changeset/62507 Author: stromnov at macports.org Date: 2010-01-09 08:33:50 -0800 (Sat, 09 Jan 2010) Log Message: ----------- py26-numpy: Update to 1.4.0 Modified Paths: -------------- trunk/dports/python/py26-numpy/Portfile Removed Paths: ------------- trunk/dports/python/py26-numpy/files/patch-npy_endian.h.diff Modified: trunk/dports/python/py26-numpy/Portfile =================================================================== --- trunk/dports/python/py26-numpy/Portfile 2010-01-09 13:54:38 UTC (rev 62506) +++ trunk/dports/python/py26-numpy/Portfile 2010-01-09 16:33:50 UTC (rev 62507) @@ -5,7 +5,7 @@ PortGroup python26 1.0 name py26-numpy -version 1.3.0 +version 1.4.0 categories python platforms darwin maintainers mcalhoun openmaintainer @@ -16,13 +16,12 @@ master_sites sourceforge:numpy distname numpy-${version} -checksums md5 3f7773ff0971a5ebb8591536d8ec7bd6 \ - sha1 c04998a1fbf7d990c9a2b99a7b62486012c570ac \ - rmd160 a75155d2014204e16c59857b92356353505c39b9 +checksums md5 6d0ea698beda38109796240d08ecb296 \ + sha1 522b789527f280410ab09f10c947ccc3f8086a8f \ + rmd160 313502001e1d30e8b218b5b02f6a1d8387407f3c patchfiles patch-g95_link.diff \ - patch-f2py_setup.py.diff \ - patch-npy_endian.h.diff + patch-f2py_setup.py.diff depends_lib-append port:fftw-3 \ port:py26-nose \ Deleted: trunk/dports/python/py26-numpy/files/patch-npy_endian.h.diff =================================================================== --- trunk/dports/python/py26-numpy/files/patch-npy_endian.h.diff 2010-01-09 13:54:38 UTC (rev 62506) +++ trunk/dports/python/py26-numpy/files/patch-npy_endian.h.diff 2010-01-09 16:33:50 UTC (rev 62507) @@ -1,11 +0,0 @@ ---- numpy/core/include/numpy/npy_endian.h.orig 2009-04-05 04:09:20.000000000 -0400 -+++ numpy/core/include/numpy/npy_endian.h 2009-04-08 18:57:06.000000000 -0400 -@@ -25,7 +25,7 @@ - || defined(NPY_CPU_IA64) - #define NPY_LITTLE_ENDIAN - #define NPY_BYTE_ORDER 1234 -- #elif defined(NPY_CPU_PPC) || defined(NPY_CPU_SPARC)\ -+ #elif defined(NPY_CPU_PPC) || defined(NPY_CPU_PPC64) || defined(NPY_CPU_SPARC)\ - || defined(NPY_CPU_S390) || defined(NPY_CPU_PARISC) - #define NPY_BIG_ENDIAN - #define NPY_BYTE_ORDER 4321 -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Sat Jan 9 08:54:47 2010 From: portindex at macports.org (portindex at macports.org) Date: Sat, 9 Jan 2010 08:54:47 -0800 (PST) Subject: [62508] trunk/dports/PortIndex Message-ID: <20100109165450.E1F3C3B4D8CC@beta.macosforge.org> Revision: 62508 http://trac.macports.org/changeset/62508 Author: portindex at macports.org Date: 2010-01-09 08:54:44 -0800 (Sat, 09 Jan 2010) Log Message: ----------- Total number of ports parsed: 6481 Ports successfully parsed: 6481 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-09 16:33:50 UTC (rev 62507) +++ trunk/dports/PortIndex 2010-01-09 16:54:44 UTC (rev 62508) @@ -9491,7 +9491,7 @@ py26-numexpr 1149 portdir python/py26-numexpr description {Multiple-operator array expression evaluator} homepage http://code.google.com/p/numexpr/ epoch 0 platforms darwin depends_lib {port:python26 port:py26-numpy} name py26-numexpr maintainers {blb openmaintainer} long_description {The numexpr package evaluates multiple-operator array expressions many times faster than NumPy can. It accepts the expression as a string, analyzes it, rewrites it more efficiently, and compiles it to faster Python code on the fly. It's the next best thing to writing the expression in C and compiling it with a specialized just-in-time (JIT) compiler, i.e. it does not require a compiler at runtime. Also, numexpr has support for the Intel VML (Vector Math Library) -- integrated in Intel MKL (Math Kernel Library) --, allowing nice speed-ups when computing transcendental functions (like trigonometrical, exponentials...) on top of Intel-compatible platforms. This support also allows to use multiple cores in your computations. WARNING: numpy 1.2.1, on which py26-numexpr depends, is not yet fully functional under Python 2.6.} version 1.3.1 categories {python math} revision 0 py26-numpy 458 -variants {no_gcc43 no_atlas universal} portdir python/py26-numpy description {The core utilities for the scientific library scipy for Python} homepage http://numpy.scipy.org/ epoch 0 platforms darwin depends_lib {port:python26 port:fftw-3 port:py26-nose port:atlas port:gcc43} name py26-numpy long_description {{The core utilities for the scientific library scipy for Python}} maintainers {mcalhoun openmaintainer} version 1.3.0 categories python revision 0 +variants {no_gcc43 no_atlas universal} portdir python/py26-numpy description {The core utilities for the scientific library scipy for Python} homepage http://numpy.scipy.org/ epoch 0 platforms darwin depends_lib {port:python26 port:fftw-3 port:py26-nose port:atlas port:gcc43} name py26-numpy long_description {{The core utilities for the scientific library scipy for Python}} maintainers {mcalhoun openmaintainer} version 1.4.0 categories python revision 0 py26-ode 330 portdir python/py26-ode description {Python bindings for The Open Dynamics Engine} homepage http://pyode.sourceforge.net/ epoch 0 platforms darwin depends_lib {port:python26 port:ode} name py26-ode maintainers jameskyle long_description {{Python bindings for The Open Dynamics Engine.}} version 1.2.0 categories python revision 0 py26-omniORBpy 437 -------------- next part -------------- An HTML attachment was scrubbed... URL: From blair at macports.org Sat Jan 9 09:34:22 2010 From: blair at macports.org (blair at macports.org) Date: Sat, 9 Jan 2010 09:34:22 -0800 (PST) Subject: [62509] trunk/dports/devel Message-ID: <20100109173423.ADF0E3B50953@beta.macosforge.org> Revision: 62509 http://trac.macports.org/changeset/62509 Author: blair at macports.org Date: 2010-01-09 09:34:19 -0800 (Sat, 09 Jan 2010) Log Message: ----------- New upstream release of Google Protocol Buffers 2.3.0. Modified Paths: -------------- trunk/dports/devel/protobuf-cpp/Portfile trunk/dports/devel/protobuf-java/Portfile trunk/dports/devel/protobuf-python/Portfile trunk/dports/devel/protobuf-python25/Portfile trunk/dports/devel/protobuf-python26/Portfile Modified: trunk/dports/devel/protobuf-cpp/Portfile =================================================================== --- trunk/dports/devel/protobuf-cpp/Portfile 2010-01-09 16:54:44 UTC (rev 62508) +++ trunk/dports/devel/protobuf-cpp/Portfile 2010-01-09 17:34:19 UTC (rev 62509) @@ -3,8 +3,7 @@ PortSystem 1.0 name protobuf-cpp -version 2.2.0a -revision 1 +version 2.3.0 categories devel maintainers blair description Encode data in an efficient yet extensible format. @@ -31,9 +30,9 @@ distname protobuf-${version} use_bzip2 yes -checksums md5 bdff591c50f8e33871f57f781bd8f8d8 \ - sha1 755cd8e381478bfed8158d9cb52e4a5a2618767b \ - rmd160 b029fb9336c3f7e457c1c148c613e202ce252ee1 +checksums md5 f2964f636b3c67d1e9d8b90819fa8ddb \ + sha1 db0fbdc58be22a676335a37787178a4dfddf93c6 \ + rmd160 92b9c374ce3ccbb0b0d22d08e9f9d3a5a68d1ac8 platforms darwin Modified: trunk/dports/devel/protobuf-java/Portfile =================================================================== --- trunk/dports/devel/protobuf-java/Portfile 2010-01-09 16:54:44 UTC (rev 62508) +++ trunk/dports/devel/protobuf-java/Portfile 2010-01-09 17:34:19 UTC (rev 62509) @@ -3,7 +3,7 @@ PortSystem 1.0 name protobuf-java -version 2.2.0a +version 2.3.0 categories devel maintainers blair description Encode data in an efficient yet extensible format. @@ -31,9 +31,9 @@ distname protobuf-${version} dist_subdir protobuf-cpp use_bzip2 yes -checksums md5 bdff591c50f8e33871f57f781bd8f8d8 \ - sha1 755cd8e381478bfed8158d9cb52e4a5a2618767b \ - rmd160 b029fb9336c3f7e457c1c148c613e202ce252ee1 +checksums md5 f2964f636b3c67d1e9d8b90819fa8ddb \ + sha1 db0fbdc58be22a676335a37787178a4dfddf93c6 \ + rmd160 92b9c374ce3ccbb0b0d22d08e9f9d3a5a68d1ac8 platforms darwin Modified: trunk/dports/devel/protobuf-python/Portfile =================================================================== --- trunk/dports/devel/protobuf-python/Portfile 2010-01-09 16:54:44 UTC (rev 62508) +++ trunk/dports/devel/protobuf-python/Portfile 2010-01-09 17:34:19 UTC (rev 62509) @@ -4,7 +4,7 @@ PortGroup python24 1.0 name protobuf-python -version 2.2.0a +version 2.3.0 categories devel maintainers blair description Encode data in an efficient yet extensible format. @@ -32,9 +32,9 @@ distname protobuf-${version} dist_subdir protobuf-cpp use_bzip2 yes -checksums md5 bdff591c50f8e33871f57f781bd8f8d8 \ - sha1 755cd8e381478bfed8158d9cb52e4a5a2618767b \ - rmd160 b029fb9336c3f7e457c1c148c613e202ce252ee1 +checksums md5 f2964f636b3c67d1e9d8b90819fa8ddb \ + sha1 db0fbdc58be22a676335a37787178a4dfddf93c6 \ + rmd160 92b9c374ce3ccbb0b0d22d08e9f9d3a5a68d1ac8 platforms darwin Modified: trunk/dports/devel/protobuf-python25/Portfile =================================================================== --- trunk/dports/devel/protobuf-python25/Portfile 2010-01-09 16:54:44 UTC (rev 62508) +++ trunk/dports/devel/protobuf-python25/Portfile 2010-01-09 17:34:19 UTC (rev 62509) @@ -4,7 +4,7 @@ PortGroup python25 1.0 name protobuf-python25 -version 2.2.0a +version 2.3.0 categories devel maintainers blair description Encode data in an efficient yet extensible format. @@ -32,9 +32,9 @@ distname protobuf-${version} dist_subdir protobuf-cpp use_bzip2 yes -checksums md5 bdff591c50f8e33871f57f781bd8f8d8 \ - sha1 755cd8e381478bfed8158d9cb52e4a5a2618767b \ - rmd160 b029fb9336c3f7e457c1c148c613e202ce252ee1 +checksums md5 f2964f636b3c67d1e9d8b90819fa8ddb \ + sha1 db0fbdc58be22a676335a37787178a4dfddf93c6 \ + rmd160 92b9c374ce3ccbb0b0d22d08e9f9d3a5a68d1ac8 platforms darwin Modified: trunk/dports/devel/protobuf-python26/Portfile =================================================================== --- trunk/dports/devel/protobuf-python26/Portfile 2010-01-09 16:54:44 UTC (rev 62508) +++ trunk/dports/devel/protobuf-python26/Portfile 2010-01-09 17:34:19 UTC (rev 62509) @@ -4,7 +4,7 @@ PortGroup python26 1.0 name protobuf-python26 -version 2.2.0a +version 2.3.0 categories devel maintainers blair description Encode data in an efficient yet extensible format. @@ -32,9 +32,9 @@ distname protobuf-${version} dist_subdir protobuf-cpp use_bzip2 yes -checksums md5 bdff591c50f8e33871f57f781bd8f8d8 \ - sha1 755cd8e381478bfed8158d9cb52e4a5a2618767b \ - rmd160 b029fb9336c3f7e457c1c148c613e202ce252ee1 +checksums md5 f2964f636b3c67d1e9d8b90819fa8ddb \ + sha1 db0fbdc58be22a676335a37787178a4dfddf93c6 \ + rmd160 92b9c374ce3ccbb0b0d22d08e9f9d3a5a68d1ac8 platforms darwin -------------- next part -------------- An HTML attachment was scrubbed... URL: From sharky at macports.org Sat Jan 9 09:48:54 2010 From: sharky at macports.org (sharky at macports.org) Date: Sat, 9 Jan 2010 09:48:54 -0800 (PST) Subject: [62510] trunk/dports/aqua/qt4-mac/Portfile Message-ID: <20100109174855.227F53B5100B@beta.macosforge.org> Revision: 62510 http://trac.macports.org/changeset/62510 Author: sharky at macports.org Date: 2010-01-09 09:48:51 -0800 (Sat, 09 Jan 2010) Log Message: ----------- qt4-mac: set empty configure.ld_archflags (#20199, #20992) Modified Paths: -------------- trunk/dports/aqua/qt4-mac/Portfile Modified: trunk/dports/aqua/qt4-mac/Portfile =================================================================== --- trunk/dports/aqua/qt4-mac/Portfile 2010-01-09 17:34:19 UTC (rev 62509) +++ trunk/dports/aqua/qt4-mac/Portfile 2010-01-09 17:48:51 UTC (rev 62510) @@ -56,6 +56,9 @@ configure.cc_archflags configure.cxx_archflags +if {[info exists configure.ld_archflags]} { + configure.ld_archflags +} set dirname qt4-mac set qt_dir ${prefix}/libexec/${dirname} -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Sat Jan 9 09:54:39 2010 From: portindex at macports.org (portindex at macports.org) Date: Sat, 9 Jan 2010 09:54:39 -0800 (PST) Subject: [62511] trunk/dports Message-ID: <20100109175441.B3BE73B511F9@beta.macosforge.org> Revision: 62511 http://trac.macports.org/changeset/62511 Author: portindex at macports.org Date: 2010-01-09 09:54:37 -0800 (Sat, 09 Jan 2010) Log Message: ----------- Total number of ports parsed: 6481 Ports successfully parsed: 6481 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex trunk/dports/PortIndex.quick Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-09 17:48:51 UTC (rev 62510) +++ trunk/dports/PortIndex 2010-01-09 17:54:37 UTC (rev 62511) @@ -1984,16 +1984,16 @@ portdir devel/premake description {Premake is a build script generator.} homepage http://premake.sourceforge.net/ epoch 0 platforms darwin name premake maintainers wyuenho long_description {Premake is a build script generator. Describe your project using the full-featured Lua scripting language and use premake to create input files for various IDEs and GnuMake} depends_extract bin:unzip:unzip categories devel version 3.5 revision 0 protobuf-c 588 variants universal depends_build {port:autoconf port:automake port:libtool} portdir devel/protobuf-c description {Pure C code generator and runtime libraries for Protocol Buffers} homepage http://code.google.com/p/protobuf-c/ epoch 0 platforms darwin name protobuf-c depends_lib port:protobuf-cpp long_description {This package provides a code generator and runtime libraries to use Protocol Buffers from pure C (not C++). Library ABI and API compatibility changes are expected until version 1.0 is released.} maintainers {landonf openmaintainer} categories devel version 0.10 revision 0 -protobuf-cpp 1038 -variants universal portdir devel/protobuf-cpp description {Encode data in an efficient yet extensible format.} homepage http://code.google.com/p/protobuf/ epoch 0 platforms darwin name protobuf-cpp depends_lib port:zlib long_description {Google Protocol Buffers are a flexible, efficient, automated mechanism for serializing structured data -- think XML, but smaller, faster, and simpler. You define how you want your data to be structured once, then you can use special generated source code to easily write and read your structured data to and from a variety of data streams and using a variety of languages. You can even update your data structure without breaking deployed programs that are compiled against the old format. You specify how you want the information you're serializing to be structured by defining protocol buffer message types in .proto files. Each protocol buffer message is a small logical record of information, containing a series of name-value pairs.} maintainers blair categories devel version 2.2.0a revision 1 -protobuf-java 1059 -depends_build port:apache-ant portdir devel/protobuf-java description {Encode data in an efficient yet extensible format.} homepage http://code.google.com/p/protobuf/ epoch 0 platforms darwin name protobuf-java depends_lib port:protobuf-cpp maintainers blair long_description {Google Protocol Buffers are a flexible, efficient, automated mechanism for serializing structured data -- think XML, but smaller, faster, and simpler. You define how you want your data to be structured once, then you can use special generated source code to easily write and read your structured data to and from a variety of data streams and using a variety of languages. You can even update your data structure without breaking deployed programs that are compiled against the old format. You specify how you want the information you're serializing to be structured by defining protocol buffer message types in .proto files. Each protocol buffer message is a small logical record of information, containing a series of name-value pairs.} categories devel version 2.2.0a revision 0 -protobuf-python 1054 -portdir devel/protobuf-python description {Encode data in an efficient yet extensible format.} homepage http://code.google.com/p/protobuf/ epoch 0 platforms darwin depends_lib {port:protobuf-cpp port:py-setuptools} name protobuf-python maintainers blair long_description {Google Protocol Buffers are a flexible, efficient, automated mechanism for serializing structured data -- think XML, but smaller, faster, and simpler. You define how you want your data to be structured once, then you can use special generated source code to easily write and read your structured data to and from a variety of data streams and using a variety of languages. You can even update your data structure without breaking deployed programs that are compiled against the old format. You specify how you want the information you're serializing to be structured by defining protocol buffer message types in .proto files. Each protocol buffer message is a small logical record of information, containing a series of name-value pairs.} version 2.2.0a categories devel revision 0 -protobuf-python25 1060 -portdir devel/protobuf-python25 description {Encode data in an efficient yet extensible format.} homepage http://code.google.com/p/protobuf/ epoch 0 platforms darwin depends_lib {port:protobuf-cpp port:py25-setuptools} name protobuf-python25 maintainers blair long_description {Google Protocol Buffers are a flexible, efficient, automated mechanism for serializing structured data -- think XML, but smaller, faster, and simpler. You define how you want your data to be structured once, then you can use special generated source code to easily write and read your structured data to and from a variety of data streams and using a variety of languages. You can even update your data structure without breaking deployed programs that are compiled against the old format. You specify how you want the information you're serializing to be structured by defining protocol buffer message types in .proto files. Each protocol buffer message is a small logical record of information, containing a series of name-value pairs.} version 2.2.0a categories devel revision 0 -protobuf-python26 1060 -portdir devel/protobuf-python26 description {Encode data in an efficient yet extensible format.} homepage http://code.google.com/p/protobuf/ epoch 0 platforms darwin depends_lib {port:protobuf-cpp port:py26-setuptools} name protobuf-python26 maintainers blair long_description {Google Protocol Buffers are a flexible, efficient, automated mechanism for serializing structured data -- think XML, but smaller, faster, and simpler. You define how you want your data to be structured once, then you can use special generated source code to easily write and read your structured data to and from a variety of data streams and using a variety of languages. You can even update your data structure without breaking deployed programs that are compiled against the old format. You specify how you want the information you're serializing to be structured by defining protocol buffer message types in .proto files. Each protocol buffer message is a small logical record of information, containing a series of name-value pairs.} version 2.2.0a categories devel revision 0 +protobuf-cpp 1037 +variants universal portdir devel/protobuf-cpp description {Encode data in an efficient yet extensible format.} homepage http://code.google.com/p/protobuf/ epoch 0 platforms darwin name protobuf-cpp depends_lib port:zlib long_description {Google Protocol Buffers are a flexible, efficient, automated mechanism for serializing structured data -- think XML, but smaller, faster, and simpler. You define how you want your data to be structured once, then you can use special generated source code to easily write and read your structured data to and from a variety of data streams and using a variety of languages. You can even update your data structure without breaking deployed programs that are compiled against the old format. You specify how you want the information you're serializing to be structured by defining protocol buffer message types in .proto files. Each protocol buffer message is a small logical record of information, containing a series of name-value pairs.} maintainers blair categories devel version 2.3.0 revision 0 +protobuf-java 1058 +depends_build port:apache-ant portdir devel/protobuf-java description {Encode data in an efficient yet extensible format.} homepage http://code.google.com/p/protobuf/ epoch 0 platforms darwin name protobuf-java depends_lib port:protobuf-cpp maintainers blair long_description {Google Protocol Buffers are a flexible, efficient, automated mechanism for serializing structured data -- think XML, but smaller, faster, and simpler. You define how you want your data to be structured once, then you can use special generated source code to easily write and read your structured data to and from a variety of data streams and using a variety of languages. You can even update your data structure without breaking deployed programs that are compiled against the old format. You specify how you want the information you're serializing to be structured by defining protocol buffer message types in .proto files. Each protocol buffer message is a small logical record of information, containing a series of name-value pairs.} categories devel version 2.3.0 revision 0 +protobuf-python 1053 +portdir devel/protobuf-python description {Encode data in an efficient yet extensible format.} homepage http://code.google.com/p/protobuf/ epoch 0 platforms darwin depends_lib {port:protobuf-cpp port:py-setuptools} name protobuf-python maintainers blair long_description {Google Protocol Buffers are a flexible, efficient, automated mechanism for serializing structured data -- think XML, but smaller, faster, and simpler. You define how you want your data to be structured once, then you can use special generated source code to easily write and read your structured data to and from a variety of data streams and using a variety of languages. You can even update your data structure without breaking deployed programs that are compiled against the old format. You specify how you want the information you're serializing to be structured by defining protocol buffer message types in .proto files. Each protocol buffer message is a small logical record of information, containing a series of name-value pairs.} version 2.3.0 categories devel revision 0 +protobuf-python25 1059 +portdir devel/protobuf-python25 description {Encode data in an efficient yet extensible format.} homepage http://code.google.com/p/protobuf/ epoch 0 platforms darwin depends_lib {port:protobuf-cpp port:py25-setuptools} name protobuf-python25 maintainers blair long_description {Google Protocol Buffers are a flexible, efficient, automated mechanism for serializing structured data -- think XML, but smaller, faster, and simpler. You define how you want your data to be structured once, then you can use special generated source code to easily write and read your structured data to and from a variety of data streams and using a variety of languages. You can even update your data structure without breaking deployed programs that are compiled against the old format. You specify how you want the information you're serializing to be structured by defining protocol buffer message types in .proto files. Each protocol buffer message is a small logical record of information, containing a series of name-value pairs.} version 2.3.0 categories devel revision 0 +protobuf-python26 1059 +portdir devel/protobuf-python26 description {Encode data in an efficient yet extensible format.} homepage http://code.google.com/p/protobuf/ epoch 0 platforms darwin depends_lib {port:protobuf-cpp port:py26-setuptools} name protobuf-python26 maintainers blair long_description {Google Protocol Buffers are a flexible, efficient, automated mechanism for serializing structured data -- think XML, but smaller, faster, and simpler. You define how you want your data to be structured once, then you can use special generated source code to easily write and read your structured data to and from a variety of data streams and using a variety of languages. You can even update your data structure without breaking deployed programs that are compiled against the old format. You specify how you want the information you're serializing to be structured by defining protocol buffer message types in .proto files. Each protocol buffer message is a small logical record of information, containing a series of name-value pairs.} version 2.3.0 categories devel revision 0 pth 615 variants universal portdir devel/pth description {GNU Portable Threads} homepage http://www.gnu.org/software/pth/ epoch 0 platforms darwin name pth long_description {Pth is a very portable POSIX/ANSI-C based library for Unix platforms which provides non-preemptive priority-based scheduling for multiple threads of execution (\"multithreading\") inside server applications. All threads run in the same address space of the server application, but each thread has its own individual program-counter, run-time stack, signal mask and errno variable.} maintainers nomaintainer categories devel version 2.0.7 revision 0 pthsem 773 Modified: trunk/dports/PortIndex.quick =================================================================== (Binary files differ) -------------- next part -------------- An HTML attachment was scrubbed... URL: From nox at macports.org Sat Jan 9 10:05:29 2010 From: nox at macports.org (nox at macports.org) Date: Sat, 9 Jan 2010 10:05:29 -0800 (PST) Subject: [62512] trunk/dports/sysutils/coreutils/Portfile Message-ID: <20100109180530.30E943B514C1@beta.macosforge.org> Revision: 62512 http://trac.macports.org/changeset/62512 Author: nox at macports.org Date: 2010-01-09 10:05:26 -0800 (Sat, 09 Jan 2010) Log Message: ----------- Update coreutils to 8.3 Modified Paths: -------------- trunk/dports/sysutils/coreutils/Portfile Modified: trunk/dports/sysutils/coreutils/Portfile =================================================================== --- trunk/dports/sysutils/coreutils/Portfile 2010-01-09 17:54:37 UTC (rev 62511) +++ trunk/dports/sysutils/coreutils/Portfile 2010-01-09 18:05:26 UTC (rev 62512) @@ -4,7 +4,7 @@ PortSystem 1.0 name coreutils -version 8.2 +version 8.3 categories sysutils platforms darwin maintainers nox openmaintainer @@ -22,9 +22,9 @@ homepage http://www.gnu.org/software/${name}/ master_sites gnu -checksums md5 dfb0d3dbc5f555386339f4f74621cda0 \ - sha1 f25f9240f6da5400f36aebdd1e21e85110ab9f0f \ - rmd160 72ad3df1e0d2ebb982ce993e03410a11234b7acb +checksums md5 3961aee7ac96434a1831580e0b7ad227 \ + sha1 2ab33c39f971716e2fd64770b1e86a9da4226cce \ + rmd160 36811004533df6e5fdc26bfafb21eff36c9ed87e depends_lib \ port:gettext \ @@ -35,8 +35,6 @@ use_parallel_build yes -set docdir ${prefix}/share/doc/${name}-${version} - post-destroot { if {[file exists ${destroot}${prefix}/share/info/dir]} { delete ${destroot}${prefix}/share/info/dir @@ -46,9 +44,10 @@ delete ${destroot}${prefix}/lib/charset.alias } + set docdir ${prefix}/share/doc/${name} xinstall -d ${destroot}${docdir} - xinstall -m 0644 -W ${worksrcpath} AUTHORS COPYING ChangeLog NEWS README THANKS \ - THANKS-to-translators TODO ${destroot}${docdir} + xinstall -m 0644 -W ${worksrcpath} AUTHORS COPYING ChangeLog NEWS README \ + THANKS THANKS-to-translators TODO ${destroot}${docdir} } # Set the RUN_EXPENSIVE_TESTS environmental variable to 'yes' to run more @@ -57,7 +56,8 @@ test.run yes test.target check -variant with_default_names description {Install files without 'g' prefix, use with extreme caution} { +variant with_default_names description \ + {Install files without 'g' prefix, use with extreme caution} { post-destroot { foreach {d} {bin share/man/man1} { foreach {f} [glob -tails -directory ${destroot}${prefix}/${d} g*] { @@ -66,7 +66,3 @@ } } } - -livecheck.type regex -livecheck.url http://ftp.gnu.org/gnu/${name}/?C=M&O=D -livecheck.regex ${name}-(\\d+(?:\\.\\d+)*) -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Sat Jan 9 10:55:22 2010 From: portindex at macports.org (portindex at macports.org) Date: Sat, 9 Jan 2010 10:55:22 -0800 (PST) Subject: [62513] trunk/dports/PortIndex Message-ID: <20100109185525.CFEAC3B5263A@beta.macosforge.org> Revision: 62513 http://trac.macports.org/changeset/62513 Author: portindex at macports.org Date: 2010-01-09 10:55:19 -0800 (Sat, 09 Jan 2010) Log Message: ----------- Total number of ports parsed: 6481 Ports successfully parsed: 6481 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-09 18:05:26 UTC (rev 62512) +++ trunk/dports/PortIndex 2010-01-09 18:55:19 UTC (rev 62513) @@ -10871,7 +10871,7 @@ convmv 985 portdir sysutils/convmv description {Convert filenames from one encoding to another} homepage http://j3e.de/linux/convmv/man/ epoch 0 platforms darwin name convmv depends_lib bin:perl:perl5 maintainers nomaintainer long_description {convmv is meant to help convert a single filename, a directory tree and the contained files or a whole filesystem into a different encoding. It just converts the filenames, not the content of the files. A special feature of convmv is that it also takes care of symlinks, also converts the symlink target pointer in case the symlink target is being converted, too. All this comes in very handy when one wants to switch over from old 8-bit locales to UTF-8 locales. It is also possible to convert directories to UTF-8 which are already partly UTF-8 encoded. convmv is able to detect if certain files are UTF-8 encoded and will skip them by default. To turn this smartness off use the --nosmart switch.} categories {sysutils perl} version 1.10 revision 0 coreutils 750 -variants {with_default_names universal} portdir sysutils/coreutils description {GNU File, Shell, and Text utilities} homepage http://www.gnu.org/software/coreutils/ epoch 0 platforms darwin name coreutils depends_lib {port:gettext port:gmp port:libiconv} long_description {The GNU Core Utilities are the basic file, shell, and text manipulation utilities of the GNU operating system. These are the core utilities which are expected to exist on every operating system. Previously these utilities were offered as three individual sets of GNU utilities, fileutils, shellutils, and textutils. Those three have been combined into a single set of utilities called the coreutils.} maintainers {nox openmaintainer} categories sysutils version 8.2 revision 0 +variants {with_default_names universal} portdir sysutils/coreutils description {GNU File, Shell, and Text utilities} homepage http://www.gnu.org/software/coreutils/ epoch 0 platforms darwin name coreutils depends_lib {port:gettext port:gmp port:libiconv} long_description {The GNU Core Utilities are the basic file, shell, and text manipulation utilities of the GNU operating system. These are the core utilities which are expected to exist on every operating system. Previously these utilities were offered as three individual sets of GNU utilities, fileutils, shellutils, and textutils. Those three have been combined into a single set of utilities called the coreutils.} maintainers {nox openmaintainer} categories sysutils version 8.3 revision 0 count 443 depends_build port:smake portdir sysutils/count description {fast replacement for the standard wc utility} homepage ftp://ftp.berlios.de/pub/count epoch 0 platforms darwin name count maintainers mww long_description {Count is a fast replacement for the standard wc utility. It has the additional features of counting the visible line length and a fast -stat option to quickly determine file sizes.} categories sysutils version 1.20 revision 1 createrepo 527 -------------- next part -------------- An HTML attachment was scrubbed... URL: From nox at macports.org Sat Jan 9 11:33:57 2010 From: nox at macports.org (nox at macports.org) Date: Sat, 9 Jan 2010 11:33:57 -0800 (PST) Subject: [62514] trunk/dports/devel/class-dump/Portfile Message-ID: <20100109193357.E2F233B52FC8@beta.macosforge.org> Revision: 62514 http://trac.macports.org/changeset/62514 Author: nox at macports.org Date: 2010-01-09 11:33:54 -0800 (Sat, 09 Jan 2010) Log Message: ----------- Update class-dump to 3.3.1 and install README (#23141) Modified Paths: -------------- trunk/dports/devel/class-dump/Portfile Modified: trunk/dports/devel/class-dump/Portfile =================================================================== --- trunk/dports/devel/class-dump/Portfile 2010-01-09 18:55:19 UTC (rev 62513) +++ trunk/dports/devel/class-dump/Portfile 2010-01-09 19:33:54 UTC (rev 62514) @@ -4,7 +4,8 @@ PortGroup xcode 1.0 name class-dump -version 3.3 +version 3.3.1 +license GPL-2 categories devel maintainers waqar description Utility for examining the Objective-C segment of Mach-O files. @@ -15,10 +16,11 @@ homepage http://www.codethecode.com/projects/class-dump/ master_sites http://www.codethecode.com/download/ +use_bzip2 yes -checksums md5 e0825fc1628472c1df790706ce70d41a \ - sha1 ddeaeadc55a98f06462090353135197a517d3735 \ - rmd160 fb0c4ccfca486cce9515567fc3c8d3d6b0ac3c59 +checksums md5 52e8d718d5087e9873f2c8880dcbd6f6 \ + sha1 dd807078c81bec6279c7c40c820d23edbb379ea6 \ + rmd160 83f407a72bdd645dfbddb61b674953687da3f321 worksrcdir ${distname}/src @@ -33,6 +35,12 @@ } } +post-destroot { + set docdir ${prefix}/share/doc/${name} + xinstall -d ${destroot}${docdir} + xinstall -m 644 ${worksrcpath}/../README ${destroot}${docdir} +} + livecheck.type regex livecheck.url ${homepage}changes/ livecheck.regex {Version (\d+(?:\.\d+)*) -} -------------- next part -------------- An HTML attachment was scrubbed... URL: From nox at macports.org Sat Jan 9 11:34:08 2010 From: nox at macports.org (nox at macports.org) Date: Sat, 9 Jan 2010 11:34:08 -0800 (PST) Subject: [62515] trunk/dports/textproc/dos2unix/Portfile Message-ID: <20100109193408.B29273B52FF6@beta.macosforge.org> Revision: 62515 http://trac.macports.org/changeset/62515 Author: nox at macports.org Date: 2010-01-09 11:34:07 -0800 (Sat, 09 Jan 2010) Log Message: ----------- Update dos2unix to 4.1 (#23142) Also install documentation, enable universal support and NLS. Modified Paths: -------------- trunk/dports/textproc/dos2unix/Portfile Modified: trunk/dports/textproc/dos2unix/Portfile =================================================================== --- trunk/dports/textproc/dos2unix/Portfile 2010-01-09 19:33:54 UTC (rev 62514) +++ trunk/dports/textproc/dos2unix/Portfile 2010-01-09 19:34:07 UTC (rev 62515) @@ -3,21 +3,39 @@ PortSystem 1.0 name dos2unix -version 3.1 -revision 1 +version 4.1 +license FreeBSD categories textproc platforms darwin maintainers waqar description Convert text between dos, unix, and mac formats long_description ${description} -master_sites http://fresh.t-systems-sfr.com/linux/src/ -homepage ${master_sites} -checksums md5 25ff56bab202de63ea6f6c211c416e96 +master_sites http://www.sfr-fresh.com/linux/misc/ +homepage http://www.xs4all.nl/~waterlan/dos2unix.html + +checksums md5 11a52e01342e588584a92588291e7dae \ + sha1 db9b0434521c2348faab6d948f1f7938adba500a \ + rmd160 21ce3916ec698587d1b11ea4c3d8ce74f17f7f2a + +depends_lib port:gettext + use_configure no -build { - system "cd ${worksrcpath} && ${configure.cc} ${configure.cflags} dos2unix.c -o dos2unix" } -destroot { - system "install -m 755 -cs ${worksrcpath}/dos2unix ${destroot}${prefix}/bin" - system "install -m 644 ${worksrcpath}/dos2unix.1 ${destroot}${prefix}/share/man/man1" - system "ln -sf dos2unix ${destroot}${prefix}/bin/mac2unix" } +build.args prefix=${prefix} + +set CFLAGS_OS "${configure.cflags} ${configure.cppflags}" +set LDFLAGS_EXTRA "${configure.ldflags} -lintl" + +pre-build { + build.args-append \ + CFLAGS_OS="${CFLAGS_OS}" \ + LDFLAGS_EXTRA="${LDFLAGS_EXTRA}" +} + +destroot.args prefix=${prefix} \ + DOCDIR=${destroot}${prefix}/share/doc/${name} + +variant universal { + append CFLAGS_OS " ${configure.universal_cflags}" + append LDFLAGS_EXTRA " ${configure.universal_ldflags}" +} -------------- next part -------------- An HTML attachment was scrubbed... URL: From nox at macports.org Sat Jan 9 11:34:22 2010 From: nox at macports.org (nox at macports.org) Date: Sat, 9 Jan 2010 11:34:22 -0800 (PST) Subject: [62516] trunk/dports/archivers/gzip Message-ID: <20100109193422.B91CE3B5302A@beta.macosforge.org> Revision: 62516 http://trac.macports.org/changeset/62516 Author: nox at macports.org Date: 2010-01-09 11:34:21 -0800 (Sat, 09 Jan 2010) Log Message: ----------- Update gzip to 1.3.13 (#23153) Also install documentation and enable parallel building; the rsyncable patch is also always applied (a additional flag shouldn't be a variant). Modified Paths: -------------- trunk/dports/archivers/gzip/Portfile Added Paths: ----------- trunk/dports/archivers/gzip/files/patch-getopt.diff Modified: trunk/dports/archivers/gzip/Portfile =================================================================== --- trunk/dports/archivers/gzip/Portfile 2010-01-09 19:34:07 UTC (rev 62515) +++ trunk/dports/archivers/gzip/Portfile 2010-01-09 19:34:21 UTC (rev 62516) @@ -3,7 +3,7 @@ PortSystem 1.0 name gzip -version 1.3.12 +version 1.3.13 categories archivers platforms darwin freebsd maintainers mww @@ -15,18 +15,25 @@ homepage http://www.gzip.org/ master_sites gnu -checksums sha1 264e82876f201d9576626fbb1e0e9fe458efe9b9 \ - rmd160 857172d207d87abe5fb52f6e7dd0474a421b0d79 -configure.args --mandir=\\\${prefix}/share/man \ - --infodir=\\\${prefix}/share/info \ - DEFS=NO_ASM +checksums md5 c54a31b93e865f6a4410b2dc64662706 \ + sha1 7b8cc01af1ba90cb4b5854b6c0510999823174cf \ + rmd160 8d797e57ab64e1c29d17869f511292f816143d9d -test.run yes -test.target check +patchfiles \ + patch-gzip-rsyncable.diff \ + patch-getopt.diff -destroot.destdir prefix=${destroot}${prefix} +configure.args DEFS=NO_ASM -variant rsyncable description {support the --rsyncable flag} { - patchfiles-append patch-gzip-rsyncable.diff +use_parallel_build yes + +post-destroot { + set docdir ${prefix}/share/doc/${name} + xinstall -d ${destroot}${docdir} + xinstall -m 644 -W ${worksrcpath} AUTHORS COPYING ChangeLog NEWS README \ + THANKS TODO ${destroot}${docdir} } + +test.run yes +test.target check Added: trunk/dports/archivers/gzip/files/patch-getopt.diff =================================================================== --- trunk/dports/archivers/gzip/files/patch-getopt.diff (rev 0) +++ trunk/dports/archivers/gzip/files/patch-getopt.diff 2010-01-09 19:34:21 UTC (rev 62516) @@ -0,0 +1,32 @@ +See http://old.nabble.com/Re%3A-getopt-compilation-failure-on-Darwin-%28gzip-1.3.13%29-p25779891.html + +--- lib/getopt.in.h ++++ lib/getopt.in.h +@@ -22,9 +22,13 @@ + @PRAGMA_SYSTEM_HEADER@ + #endif + +-/* The include_next requires a split double-inclusion guard. */ ++/* The include_next requires a split double-inclusion guard. We must ++ also inform the replacement unistd.h to not recursively use ++ ; our definitions will be present soon enough. */ + #if @HAVE_GETOPT_H@ ++# define _GL_SYSTEM_GETOPT + # @INCLUDE_NEXT@ @NEXT_GETOPT_H@ ++# undef _GL_SYSTEM_GETOPT + #endif + + #ifndef _GL_GETOPT_H +diff --git lib/unistd.in.h lib/unistd.in.h +index 38e2e13..b6ea889 100644 +--- lib/unistd.in.h ++++ lib/unistd.in.h +@@ -49,7 +49,7 @@ + #endif + + /* Get getopt(), optarg, optind, opterr, optopt. */ +-#if @GNULIB_UNISTD_H_GETOPT@ ++#if @GNULIB_UNISTD_H_GETOPT@ && !defined _GL_SYSTEM_GETOPT + # include + #endif + \ No newline at end of file -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Sat Jan 9 11:54:31 2010 From: portindex at macports.org (portindex at macports.org) Date: Sat, 9 Jan 2010 11:54:31 -0800 (PST) Subject: [62517] trunk/dports Message-ID: <20100109195433.610B13B53863@beta.macosforge.org> Revision: 62517 http://trac.macports.org/changeset/62517 Author: portindex at macports.org Date: 2010-01-09 11:54:28 -0800 (Sat, 09 Jan 2010) Log Message: ----------- Total number of ports parsed: 6481 Ports successfully parsed: 6481 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex trunk/dports/PortIndex.quick Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-09 19:34:21 UTC (rev 62516) +++ trunk/dports/PortIndex 2010-01-09 19:54:28 UTC (rev 62517) @@ -206,8 +206,8 @@ variants universal portdir archivers/fastjar description {fast implementation of Sun's jar utility in C} homepage http://fastjar.sourceforge.net/ epoch 0 platforms darwin name fastjar depends_lib port:zlib long_description {Fastjar is an implementation of Sun's jar utility that comes with the JDK, written entirely in C, and runs in a fraction of the time while being 100% feature compatible.} maintainers nomaintainer categories {archivers java} version 0.94 revision 0 gnutar 498 variants universal portdir archivers/gnutar description {tar version of the GNU project} homepage http://www.gnu.org/software/tar/ epoch 0 platforms darwin name gnutar depends_lib {port:gettext port:libiconv} long_description {the gnutar program creates, adds files to, or extracts files from an archive file in gnutar format, called a tarfile. A tarfile is often a magnetic tape, but can be a floppy diskette or any regular disk file.} maintainers mww categories archivers version 1.22 revision 1 -gzip 450 -variants {rsyncable universal} portdir archivers/gzip description {gnu replacement utility for unix compress} homepage http://www.gzip.org/ epoch 0 platforms {darwin freebsd} name gzip long_description {gzip (GNU zip) is a compression utility designed to be a replacement for compress. Its main advantages over compress are much better compression and freedom from patented algorithms.} maintainers mww categories archivers version 1.3.12 revision 0 +gzip 438 +variants universal portdir archivers/gzip description {gnu replacement utility for unix compress} homepage http://www.gzip.org/ epoch 0 platforms {darwin freebsd} name gzip long_description {gzip (GNU zip) is a compression utility designed to be a replacement for compress. Its main advantages over compress are much better compression and freedom from patented algorithms.} maintainers mww categories archivers version 1.3.13 revision 0 gzrecover 445 variants universal portdir archivers/gzrecover description {attempts to extract bad gzip archives} homepage http://www.urbanophile.com/arenn/hacking/gzrt/ epoch 0 platforms darwin name gzrecover depends_lib port:zlib long_description {Gzrecover attempts to skip over bad data in a gzip archive. It will try to to skip over bad data and extract whatever files might be there.} maintainers nomaintainer categories archivers version 0.5 revision 0 ha 300 @@ -1124,8 +1124,8 @@ variants {debug demos ruby universal} depends_build port:cmake portdir devel/chipmunk description {Fast and lightweight 2D rigid body physics library in C} homepage http://wiki.slembcke.net/main/published/Chipmunk epoch 0 platforms darwin name chipmunk maintainers {fs.ei.tum.de:jonas openmaintainer} long_description {{Fast and lightweight 2D rigid body physics library in C}} categories devel version 4.1.0 revision 0 cl-ppcre 430 variants {asdf_binary_locations sbcl} portdir devel/cl-ppcre description {Portable Perl-compatible regular expressions for Common Lisp} homepage http://weitz.de/cl-ppcre/ epoch 0 platforms darwin name cl-ppcre long_description {CL-PPCRE is a fast, portable, thread-safe regular expression library for Common Lisp compatible with Perl under a BSD license.} maintainers pobox.com:rlonstein categories devel version 1.3.2 revision 0 -class-dump 475 -variants universal portdir devel/class-dump description {Utility for examining the Objective-C segment of Mach-O files.} homepage http://www.codethecode.com/projects/class-dump/ epoch 0 platforms macosx name class-dump long_description {It generates declarations for the classes, categories and protocols. This is the same information provided by using 'otool -ov', but presented as normal Objective-C declarations.} maintainers waqar version 3.3 categories devel revision 0 +class-dump 477 +variants universal portdir devel/class-dump description {Utility for examining the Objective-C segment of Mach-O files.} homepage http://www.codethecode.com/projects/class-dump/ epoch 0 platforms macosx name class-dump long_description {It generates declarations for the classes, categories and protocols. This is the same information provided by using 'otool -ov', but presented as normal Objective-C declarations.} maintainers waqar version 3.3.1 categories devel revision 0 clog 365 portdir devel/clog description {cLog is a cross-platform C logging library.} homepage http://www.webgroupmedia.com/software/ epoch 0 platforms darwin name clog maintainers nomaintainer long_description {cLog is a cross-platform C logging library. It is designed to log to files and can also log to a callback function.} version 20030825 categories devel revision 0 clucene 460 @@ -11436,8 +11436,8 @@ variants universal portdir textproc/docbook2X description {Converts DocBook documents into the traditional Unix man page format and the GNU Texinfo format.} homepage http://docbook2x.sourceforge.net/ epoch 0 platforms darwin name docbook2X depends_lib {path:bin/perl:perl5 port:p5-xml-namespacesupport port:p5-xml-sax port:p5-xml-parser port:p5-xml-sax-expat port:libiconv port:libxml2} long_description {{Converts DocBook documents into the traditional Unix man page format and the GNU Texinfo format.}} maintainers markd categories textproc version 0.8.8 revision 1 doclifter 361 portdir textproc/doclifter description {troff macro to DocBook translater.} homepage http://catb.org/~esr/doclifter/ epoch 0 platforms darwin name doclifter depends_lib port:python26 maintainers markd long_description {A troff macro to DocBook translater. For example, it may be used to convert man pages to DocBook.} categories textproc version 2.3 revision 1 -dos2unix 308 -portdir textproc/dos2unix description {Convert text between dos, unix, and mac formats} homepage http://fresh.t-systems-sfr.com/linux/src/ epoch 0 platforms darwin name dos2unix maintainers waqar long_description {{Convert text between dos, unix, and mac formats}} version 3.1 categories textproc revision 1 +dos2unix 355 +variants universal portdir textproc/dos2unix description {Convert text between dos, unix, and mac formats} homepage http://www.xs4all.nl/~waterlan/dos2unix.html epoch 0 platforms darwin name dos2unix depends_lib port:gettext long_description {{Convert text between dos, unix, and mac formats}} maintainers waqar categories textproc version 4.1 revision 0 dosmacux 461 variants universal portdir textproc/dosmacux description {convert text file line endings between DOS, Mac and UNIX standards} homepage http://www.math.utah.edu/pub/dosmacux/ epoch 0 platforms darwin name dosmacux long_description {dosmacux provides six utilities for converting text file end-of-line characters from one operating system convention to another, while retaining file time stamps.} maintainers ryandesign categories textproc version 1.5 revision 0 doxygen 1203 Modified: trunk/dports/PortIndex.quick =================================================================== (Binary files differ) -------------- next part -------------- An HTML attachment was scrubbed... URL: From nox at macports.org Sat Jan 9 12:17:56 2010 From: nox at macports.org (nox at macports.org) Date: Sat, 9 Jan 2010 12:17:56 -0800 (PST) Subject: [62518] trunk/dports/php/php5-mongo/Portfile Message-ID: <20100109201757.2A5DD3B54235@beta.macosforge.org> Revision: 62518 http://trac.macports.org/changeset/62518 Author: nox at macports.org Date: 2010-01-09 12:17:53 -0800 (Sat, 09 Jan 2010) Log Message: ----------- Update php5-mongo to 1.0.3 Modified Paths: -------------- trunk/dports/php/php5-mongo/Portfile Modified: trunk/dports/php/php5-mongo/Portfile =================================================================== --- trunk/dports/php/php5-mongo/Portfile 2010-01-09 19:54:28 UTC (rev 62517) +++ trunk/dports/php/php5-mongo/Portfile 2010-01-09 20:17:53 UTC (rev 62518) @@ -3,8 +3,9 @@ PortSystem 1.0 PortGroup php5extension 1.0 -php5extension.setup mongo 1.0.2 pecl +php5extension.setup mongo 1.0.3 pecl categories php databases devel +license Apache-2.0 platforms darwin maintainers nox openmaintainer description Mongo Database Driver @@ -13,9 +14,9 @@ This package provides an interface for communicating with the Mongo \ database in PHP. -checksums md5 24fb824f9ef11174d10578be8951dc6f \ - sha1 b52d96b97693241a5524b273ee70e14536df80bf \ - rmd160 73e5c396bd68b596edc90a5a489e12f000d59a63 +checksums md5 e117ebea37613ac5bde5f7df22c02432 \ + sha1 d0ac89431582e511ddb0b9c52441658fb397bf01 \ + rmd160 0c92e9d4834145683c90abbc9d4826d1c2ba878e depends_lib-append port:mongodb -------------- next part -------------- An HTML attachment was scrubbed... URL: From jmr at macports.org Sat Jan 9 12:44:30 2010 From: jmr at macports.org (jmr at macports.org) Date: Sat, 9 Jan 2010 12:44:30 -0800 (PST) Subject: [62519] trunk/dports/lang/slang2/Portfile Message-ID: <20100109204431.C88473B54D58@beta.macosforge.org> Revision: 62519 http://trac.macports.org/changeset/62519 Author: jmr at macports.org Date: 2010-01-09 12:44:28 -0800 (Sat, 09 Jan 2010) Log Message: ----------- slang2: ld archflags fix (#23198) Modified Paths: -------------- trunk/dports/lang/slang2/Portfile Modified: trunk/dports/lang/slang2/Portfile =================================================================== --- trunk/dports/lang/slang2/Portfile 2010-01-09 20:17:53 UTC (rev 62518) +++ trunk/dports/lang/slang2/Portfile 2010-01-09 20:44:28 UTC (rev 62519) @@ -37,6 +37,10 @@ port:pcre \ port:zlib +if {![info exists configure.ld_archflags] && ![variant_isset universal]} { + configure.ldflags-append ${configure.cc_archflags} +} + test.run yes test.target check -------------- next part -------------- An HTML attachment was scrubbed... URL: From portindex at macports.org Sat Jan 9 12:54:26 2010 From: portindex at macports.org (portindex at macports.org) Date: Sat, 9 Jan 2010 12:54:26 -0800 (PST) Subject: [62520] trunk/dports/PortIndex Message-ID: <20100109205428.82E483B5501E@beta.macosforge.org> Revision: 62520 http://trac.macports.org/changeset/62520 Author: portindex at macports.org Date: 2010-01-09 12:54:22 -0800 (Sat, 09 Jan 2010) Log Message: ----------- Total number of ports parsed: 6481 Ports successfully parsed: 6481 Ports failed: 0 Modified Paths: -------------- trunk/dports/PortIndex Modified: trunk/dports/PortIndex =================================================================== --- trunk/dports/PortIndex 2010-01-09 20:44:28 UTC (rev 62519) +++ trunk/dports/PortIndex 2010-01-09 20:54:22 UTC (rev 62520) @@ -7713,7 +7713,7 @@ php5-midgard2 376 variants universal portdir php/php5-midgard2 description {A content management system} homepage http://www.midgard-project.org/ epoch 0 platforms darwin name php5-midgard2 depends_lib {port:midgard2-core path:bin/php:php5} long_description {Midgard is a content management system platform using Apache, PHP and MySQL.} maintainers jwa categories php version 9.09.1 revision 0 php5-mongo 402 -variants debug portdir php/php5-mongo description {Mongo Database Driver} homepage http://pecl.php.net/package/mongo/ epoch 0 platforms darwin name php5-mongo depends_lib {path:bin/phpize:php5 port:mongodb} maintainers {nox openmaintainer} long_description {This package provides an interface for communicating with the Mongo databas